HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 1276 - 1300 of 3066) sorted by null

<<51525354555657585960>>

  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
cygwinccompiler.py 443 import re namespace
451 result = re.search('(\d+\.\d+(\.\d+)*)',out_string)
465 result = re.search('(\d+\.\d+(\.\d+)*)',out_string)
477 result = re.search(' (\d+\.\d+(\.\d+)*)',out_string)
fancy_getopt.py 15 import re namespace
24 longopt_re = re.compile(r'^%s$' % longopt_pat)
27 neg_alias_re = re.compile("^(%s)=!(%s)$" % (longopt_pat, longopt_pat))
72 # don't actually populate these structures until we're ready to
424 chunks = re.split(r'( +|-+)', text)
455 # (and we know from the re.split above that if a chunk has
filelist.py 9 import os, re namespace
297 # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which
300 # any OS. So change all non-escaped dots in the RE to match any
304 # we're using a regex to manipulate a regex, so we need
308 pattern_re = re.sub(r'((?<!\\)(\\\\)*)\.', escaped, pattern_re)
322 return re.compile(pattern)
343 return re.compile(pattern_re)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
cygwinccompiler.py 443 import re namespace
451 result = re.search('(\d+\.\d+(\.\d+)*)',out_string)
465 result = re.search('(\d+\.\d+(\.\d+)*)',out_string)
477 result = re.search(' (\d+\.\d+(\.\d+)*)',out_string)
fancy_getopt.py 15 import re namespace
24 longopt_re = re.compile(r'^%s$' % longopt_pat)
27 neg_alias_re = re.compile("^(%s)=!(%s)$" % (longopt_pat, longopt_pat))
72 # don't actually populate these structures until we're ready to
424 chunks = re.split(r'( +|-+)', text)
455 # (and we know from the re.split above that if a chunk has
filelist.py 9 import os, re namespace
297 # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which
300 # any OS. So change all non-escaped dots in the RE to match any
304 # we're using a regex to manipulate a regex, so we need
308 pattern_re = re.sub(r'((?<!\\)(\\\\)*)\.', escaped, pattern_re)
322 return re.compile(pattern)
343 return re.compile(pattern_re)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 9 import re namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
cygwinccompiler.py 443 import re namespace
451 result = re.search('(\d+\.\d+(\.\d+)*)',out_string)
465 result = re.search('(\d+\.\d+(\.\d+)*)',out_string)
477 result = re.search(' (\d+\.\d+(\.\d+)*)',out_string)
fancy_getopt.py 15 import re namespace
24 longopt_re = re.compile(r'^%s$' % longopt_pat)
27 neg_alias_re = re.compile("^(%s)=!(%s)$" % (longopt_pat, longopt_pat))
72 # don't actually populate these structures until we're ready to
424 chunks = re.split(r'( +|-+)', text)
455 # (and we know from the re.split above that if a chunk has
filelist.py 9 import os, re namespace
297 # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which
300 # any OS. So change all non-escaped dots in the RE to match any
304 # we're using a regex to manipulate a regex, so we need
308 pattern_re = re.sub(r'((?<!\\)(\\\\)*)\.', escaped, pattern_re)
322 return re.compile(pattern)
343 return re.compile(pattern_re)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 9 import re namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
userquery.py 20 import re namespace
  /system/core/adb/
test_device.py 25 import re namespace
146 self.assertTrue(re.search(r'tcp:5566.+tcp:6655', msg))
152 self.assertFalse(re.search(r'tcp:5566.+tcp:6677', msg))
153 self.assertTrue(re.search(r'tcp:5566.+tcp:6655', msg))
158 self.assertFalse(re.search(r'tcp:5566.+tcp:6655', msg))
159 self.assertTrue(re.search(r'tcp:5566.+tcp:6677', msg))
181 self.assertTrue(re.search(r'tcp:5566.+tcp:6655', msg))
184 self.assertTrue(re.search(r'tcp:5566.+tcp:6655', msg))
185 self.assertTrue(re.search(r'tcp:7788.+tcp:8877', msg))
188 self.assertFalse(re.search(r'tcp:5566.+tcp:6655', msg)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
req.s 26 # Now attempt to re-alias foo. There used to be a bug whereby the
  /external/icu/icu4c/source/test/intltest/
regextst.cpp 803 UnicodeString re("abc");
805 pat2 = RegexPattern::compile(re, flags, pe, status);
935 UnicodeString re("01(23(45)67)(.*)");
936 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status);
1867 UText re = UTEXT_INITIALIZER; local
2010 UText re=UTEXT_INITIALIZER; local
2155 UText re=UTEXT_INITIALIZER; local
2216 UText re=UTEXT_INITIALIZER; local
2452 UText re=UTEXT_INITIALIZER; local
5021 URegularExpression *re; local
5352 URegularExpression *re = uregex_openC("..(?<one>m)(.)(.)", 0, NULL, &status); local
5789 URegularExpression *re = uregex_openC("(A)|(B)", 0, NULL, &status); local
    [all...]
  /bionic/tools/bionicbb/
presubmit.py 21 import re namespace
191 re.finditer(r'^bionicbb:\s*(.+)$', body, flags=re.MULTILINE)]
  /cts/tools/utils/cts/
tools.py 19 import re namespace
173 exp = re.compile(pattern)
188 exp = re.compile(pattern)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Lexer.cs 135 } catch (RecognitionException re) {
136 ReportError(re);
337 public virtual void Recover(RecognitionException re) {
339 //re.printStackTrace();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 167 catch ( RecognitionException re )
169 ReportError( re );
426 public virtual void Recover( RecognitionException re )
429 //re.printStackTrace();
  /external/autotest/client/common_lib/cros/network/
ping_runner.py 7 import re namespace
102 m = re.search(regex, value)
127 m = re.search('(round-trip|rtt) min[^=]*= '
  /external/autotest/client/cros/audio/
audio_helper.py 10 import re namespace
40 _JACK_VALUE_ON_RE = re.compile('.*values=on')
41 _HP_JACK_CONTROL_RE = re.compile('numid=(\d+).*Headphone\sJack')
42 _MIC_JACK_CONTROL_RE = re.compile('numid=(\d+).*Mic\sJack')
44 _SOX_RMS_AMPLITUDE_RE = re.compile('RMS\s+amplitude:\s+(.+)')
45 _SOX_ROUGH_FREQ_RE = re.compile('Rough\s+frequency:\s+(.+)')
119 match = re.search(_MEASURED_LATENCY_RE, line, re.I)
123 match = re.search(_REPORTED_LATENCY_RE, line, re.I
    [all...]
  /external/autotest/client/cros/
backchannel.py 7 import re namespace
153 match = re.search('Port: (.+)', result.stdout)
239 match = re.search('Port: (.+)', ethtool_output)
  /external/autotest/client/cros/netprotos/
cros_p2p.py 6 import re namespace
184 m = re.match(r'^id_(.*)=([0-9]+)$', txt)
203 m = re.match(r'num_connections=(\d+)$', txt)
  /external/autotest/client/site_tests/graphics_GLMark2/
graphics_GLMark2.py 10 import re namespace
118 test_re = re.compile(GLMARK2_TEST_RE)
133 match = re.findall(GLMARK2_SCORE_RE, line)
  /external/autotest/client/site_tests/security_ASLR/
security_ASLR.py 21 import re namespace
168 """Returns whether we're running on ASan."""
264 is_useful = re.search('x', perms) is not None or is_memory
300 found_match = re.match(regex, result)

Completed in 819 milliseconds

<<51525354555657585960>>