Home
last modified time | relevance | path

Searched refs:regexp (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dmailerdaemon.py101 for regexp in emparse_list_list:
102 if type(regexp) is type(()):
103 res = regexp[0].search(data, 0, from_index)
110 res = regexp[1].match(data, res.end(0), from_index)
116 res = regexp.search(data, 0, from_index)
130 for regexp in emparse_list_reason:
131 if type(regexp) is type(''):
134 exp = re.compile(re.escape(email).join(regexp.split('<>')), re.MULTILINE)
140 res = regexp.search(data)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/world/
Dworld119 def reverse(regexp):
121 cre = re.compile(regexp, re.IGNORECASE)
129 return regexp
132 print regexp, "matches code `%s', %s" % (code, all[code])
134 print regexp, 'matches %d countries:' % len(matches)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dcsv.py222 regexp = re.compile(restr, re.DOTALL | re.MULTILINE)
223 matches = regexp.findall(data)
234 n = regexp.groupindex['quote'] - 1
239 n = regexp.groupindex['delim'] - 1
246 n = regexp.groupindex['space'] - 1
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dcsv.py218 regexp = re.compile(restr, re.DOTALL | re.MULTILINE)
219 matches = regexp.findall(data)
230 n = regexp.groupindex['quote'] - 1
235 n = regexp.groupindex['delim'] - 1
242 n = regexp.groupindex['space'] - 1
/device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/Xen/
DREADME12 find OvmfPkg/Include/IndustryStandard/Xen -type f -name '*.h' -exec sed --regexp-extended --file=fi…
/device/linaro/bootloader/edk2/BaseTools/Scripts/
DConvertMasmToNasm.py103 def MatchAndSetMo(self, regexp, string): argument
104 self.mo = regexp.match(string)
107 def SearchAndSetMo(self, regexp, string): argument
108 self.mo = regexp.search(string)