HomeSort by relevance Sort by last modified time
    Searched refs:_re (Results 1 - 7 of 7) sorted by null

  /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(
  /external/chromium_org/tools/heapcheck/
suppressions.py 72 self._re = re.compile(re_line, re.MULTILINE)
84 if self._re.match('\n'.join(report) + '\n'):
  /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...]
  /external/opencv/cxcore/src/
_cxcore.h 105 CvComplex32f( float _re, float _im=0 ) : re(_re), im(_im) {}
117 CvComplex64f( double _re, double _im=0 ) : re(_re), im(_im) {}

Completed in 353 milliseconds