Searched refs:_re (Results 1 – 6 of 6) sorted by relevance
/external/v8/src/inspector/build/ |
D | rjsmin.py | 64 import re as _re namespace 139 return _re.sub(r'([\000-\040\047])', # for better portability 147 match = _re.compile(what).match 153 match = _re.compile(id_literal_(keep)).match 167 space_sub = _re.compile(( 266 return _re.sub(
|
/external/python/cpython2/Demo/classes/ |
D | Complex.py | 99 _re = 0 102 _re = re.re 105 _re = re 107 _re = _re - im.im 113 self.__dict__['re'] = _re
|
/external/python/cpython2/Tools/pynche/ |
D | ColorDB.py | 55 mo = self._re.match(line) 140 _re = re.compile( variable in RGBColorDB 145 _re = re.compile('(?P<name>\S+)\s+(?P<hexrgb>#[0-9a-fA-F]{6})') variable in HTML40DB 151 _re = re.compile('(?P<name>(.+))\s+(?P<hexrgb>#[0-9a-fA-F]{6})') variable in LightlinkDB 157 _re = re.compile('(?P<hexrgb>#[0-9a-fA-F]{6})') variable in WebsafeDB
|
/external/python/cpython2/Lib/ |
D | string.py | 83 import re as _re namespace 118 'delim' : _re.escape(cls.delimiter), 121 cls.pattern = _re.compile(pattern, _re.IGNORECASE | _re.VERBOSE)
|
D | argparse.py | 88 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 …]
|
/external/python/cpython2/Doc/library/ |
D | re.rst | 37 .. _re-syntax: 712 .. _re-objects:
|