Home
last modified time | relevance | path

Searched refs:cre (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/world/
Dworld121 cre = re.compile(regexp, re.IGNORECASE)
123 mo = cre.search(country)
147 cre = re.compile('(.*?)[ \t]+([A-Z]{2})[ \t]+[A-Z]{3}[ \t]+[0-9]{3}')
158 mo = cre.match(line)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
Dgenerator.py359 cre = re.compile('^--' + re.escape(b) + '(--)?$', re.MULTILINE)
360 if not cre.search(text):
Dheader.py443 cre = re.compile(r'%s\s*' % ch)
453 for part in cre.split(line):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dimaplib.py1026 def _match(self, cre, s): argument
1031 self.mo = cre.match(s)
1034 self._mesg("\tmatched r'%s' => %r" % (cre.pattern, self.mo.groups()))
Dpdb.py32 cre = re.compile(r'def\s+%s\s*[(]' % re.escape(funcname))
44 if cre.match(line):