/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
rjsmin.py | 65 import re as _re namespace 142 return _re.sub(r'([\000-\040\047])', # for better portability 152 match = _re.compile(what).match 160 match = _re.compile(id_literal_(keep)).match 176 space_sub = _re.compile(( 270 return _re.sub(
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
string.py | 83 import re as _re namespace 118 'delim' : _re.escape(cls.delimiter), 121 cls.pattern = _re.compile(pattern, _re.IGNORECASE | _re.VERBOSE)
|
argparse.py | 88 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) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
string.py | 83 import re as _re namespace 118 'delim' : _re.escape(cls.delimiter), 121 cls.pattern = _re.compile(pattern, _re.IGNORECASE | _re.VERBOSE)
|
argparse.py | 88 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) [all...] |