Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/
DComplex.py99 _re = 0
102 _re = re.re
105 _re = re
107 _re = _re - im.im
113 self.__dict__['re'] = _re
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dstring.py83 import re as _re namespace
118 'delim' : _re.escape(cls.delimiter),
121 cls.pattern = _re.compile(pattern, _re.IGNORECASE | _re.VERBOSE)
Dargparse.py88 import re as _re namespace
180 self._whitespace_matcher = _re.compile(r'\s+')
181 self._long_break_matcher = _re.compile(r'\n\n\n+')
328 opt_parts = _re.findall(part_regexp, opt_usage)
329 pos_parts = _re.findall(part_regexp, pos_usage)
469 text = _re.sub(r'(%s) ' % open, r'\1', text)
470 text = _re.sub(r' (%s)' % close, r'\1', text)
471 text = _re.sub(r'%s *%s' % (open, close), r'', text)
472 text = _re.sub(r'\(([^|]*)\)', r'\1', text)
1212 self._negative_number_matcher = _re.compile(r'^-\d+$|^-\d*\.\d+$')
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dstring.py83 import re as _re namespace
118 'delim' : _re.escape(cls.delimiter),
121 cls.pattern = _re.compile(pattern, _re.IGNORECASE | _re.VERBOSE)
Dargparse.py88 import re as _re namespace
182 self._whitespace_matcher = _re.compile(r'\s+')
183 self._long_break_matcher = _re.compile(r'\n\n\n+')
330 opt_parts = _re.findall(part_regexp, opt_usage)
331 pos_parts = _re.findall(part_regexp, pos_usage)
471 text = _re.sub(r'(%s) ' % open, r'\1', text)
472 text = _re.sub(r' (%s)' % close, r'\1', text)
473 text = _re.sub(r'%s *%s' % (open, close), r'', text)
474 text = _re.sub(r'\(([^|]*)\)', r'\1', text)
1225 self._negative_number_matcher = _re.compile(r'^-\d+$|^-\d*\.\d+$')
[all …]