Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/
Drcssmin.py84 import re as _re namespace
161 nl_unesc_sub = _re.compile(nl_escaped).sub
163 uri_space_sub = _re.compile((
168 space_sub_simple = _re.compile((
171 space_sub_banged = _re.compile((
175 post_esc_sub = _re.compile(r'[\r\n\f\t]+').sub
177 main_sub = _re.compile((
Drun_tests.py30 import re as _re namespace
66 if _re.search(r'(?<!\\)(?:\\\\)*\\[0-9a-zA-Z]{1,6}$', output):
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/
Drjsmin.py73 import re as _re namespace
156 return _re.sub(
168 match = _re.compile(what).match
176 match = _re.compile(id_literal_(keep)).match
193 space_sub_simple = _re.compile((
246 space_sub_banged = _re.compile((
273 keep = _re.compile((
463 keep = _re.compile((
496 return _re.sub(rex, subber, '\n%s\n' % script).strip()
/external/v8/src/inspector/build/
Drjsmin.py64 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/tensorflow/tensorflow/python/util/
Dall_util.py21 import re as _re namespace
27 _reference_pattern = _re.compile(r'^@@(\w+)$', flags=_re.MULTILINE)
/external/python/cpython2/Demo/classes/
DComplex.py99 _re = 0
102 _re = re.re
105 _re = re
107 _re = _re - im.im
113 self.__dict__['re'] = _re
/external/python/cpython3/Lib/
Dstring.py52 import re as _re namespace
71 'delim' : _re.escape(cls.delimiter),
75 cls.pattern = _re.compile(pattern, cls.flags | _re.VERBOSE)
88 flags = _re.IGNORECASE
Dargparse.py87 import re as _re namespace
187 self._whitespace_matcher = _re.compile(r'\s+', _re.ASCII)
188 self._long_break_matcher = _re.compile(r'\n\n\n+')
337 opt_parts = _re.findall(part_regexp, opt_usage)
338 pos_parts = _re.findall(part_regexp, pos_usage)
479 text = _re.sub(r'(%s) ' % open, r'\1', text)
480 text = _re.sub(r' (%s)' % close, r'\1', text)
481 text = _re.sub(r'%s *%s' % (open, close), r'', text)
482 text = _re.sub(r'\(([^|]*)\)', r'\1', text)
1284 self._negative_number_matcher = _re.compile(r'^-\d+$|^-\d*\.\d+$')
[all …]
/external/python/cpython3/Tools/pynche/
DColorDB.py54 mo = self._re.match(line)
136 _re = re.compile( variable in RGBColorDB
141 _re = re.compile(r'(?P<name>\S+)\s+(?P<hexrgb>#[0-9a-fA-F]{6})') variable in HTML40DB
147 _re = re.compile(r'(?P<name>(.+))\s+(?P<hexrgb>#[0-9a-fA-F]{6})') variable in LightlinkDB
153 _re = re.compile('(?P<hexrgb>#[0-9a-fA-F]{6})') variable in WebsafeDB
/external/python/cpython2/Tools/pynche/
DColorDB.py55 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/
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+')
334 opt_parts = _re.findall(part_regexp, opt_usage)
335 pos_parts = _re.findall(part_regexp, pos_usage)
475 text = _re.sub(r'(%s) ' % open, r'\1', text)
476 text = _re.sub(r' (%s)' % close, r'\1', text)
477 text = _re.sub(r'%s *%s' % (open, close), r'', text)
478 text = _re.sub(r'\(([^|]*)\)', r'\1', text)
1229 self._negative_number_matcher = _re.compile(r'^-\d+$|^-\d*\.\d+$')
[all …]
/external/python/cpython3/Lib/html/
D__init__.py5 import re as _re namespace
118 _charref = _re.compile(r'&(#[0-9]+;?'
/external/u-boot/tools/buildman/
Dboard.py16 self._re = re.compile(expr)
27 if self._re.match(prop):
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/bench/
Dwrite.py45 import re as _re namespace
102 namesub = _re.compile(r'(?:-\d+(?:\.\d+)*)?\.js$').sub
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/bench/
Dwrite.py45 import re as _re namespace
101 namesub = _re.compile(r'(?:-\d+(?:\.\d+)*)?\.css$').sub
/external/tensorflow/tensorflow/contrib/meta_graph_transform/
Dmeta_graph_transform.py26 import re as _re namespace
664 s_names = _re.findall(r'((?:[\/]?[a-zA-Z0-9\_]*)*)', _compat.as_str_any(s))
/external/python/cpython3/Doc/library/
Dre.rst53 .. _re-syntax:
990 .. _re-objects:
1326 .. _re-examples:
/external/python/cpython2/Doc/library/
Dre.rst43 .. _re-syntax:
739 .. _re-objects:
/external/honggfuzz/examples/apache-httpd/corpus_http1/
De602a38ffc3d907e0225b05647fccbf2.00069ea2.honggfuzz.cov735 …l����l���r\�����@ ���o��'J��;X6J��w�Q/ǑJ6�1�+1_:[��p��3�Q���Hmd��4,rR3����؃�卭�뫜_re ��wd��
/external/honggfuzz/examples/apache-httpd/corpus_http2/
De602a38ffc3d907e0225b05647fccbf2.00069ea2.honggfuzz.cov735 …l����l���r\�����@ ���o��'J��;X6J��w�Q/ǑJ6�1�+1_:[��p��3�Q���Hmd��4,rR3����؃�卭�뫜_re ��wd��