/prebuilts/gdb/linux-x86/lib/python2.7/ |
urllib.py | 31 import re namespace 685 import re namespace 686 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff) 707 import re namespace 708 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff) 1068 import re namespace 1082 import re namespace 1099 import re namespace 1111 import re namespace 1124 import re namespace 1139 import re namespace 1158 import re namespace 1170 import re namespace 1188 import re namespace 1402 import re namespace 1498 import re namespace 1530 import re namespace [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_MozillaCookieJar.py | 3 import re, time namespace 51 if not re.search(self.magic_re, magic):
|
rlcompleter.py | 127 import re namespace 128 m = re.match(r"(\w+(\.\w+)*)\.(\w*)", text)
|
urllib.py | 31 import re namespace 685 import re namespace 686 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff) 707 import re namespace 708 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff) 1068 import re namespace 1082 import re namespace 1099 import re namespace 1111 import re namespace 1124 import re namespace 1139 import re namespace 1158 import re namespace 1170 import re namespace 1188 import re namespace 1402 import re namespace 1498 import re namespace 1530 import re namespace [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
build_scripts.py | 7 import os, re namespace 15 first_line_re = re.compile('^#!.*python[0-9.]*([ \t].*)?$')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
feedparser.py | 24 import re namespace 29 NLCRE = re.compile('\r\n|\r|\n') 30 NLCRE_bol = re.compile('(\r\n|\r|\n)') 31 NLCRE_eol = re.compile('(\r\n|\r|\n)\Z') 32 NLCRE_crack = re.compile('(\r\n|\r|\n)') 35 headerRE = re.compile(r'^(From |[\041-\071\073-\176]{1,}:|[\t ])') 87 # We're at the false EOF. But push the last line back first. 103 # The *ahem* interesting behaviour of re.split when supplied grouping 105 # data after the final RE. In the case of a NL/CR terminated string, 114 # re-attaching the newlines [all...] |
header.py | 13 import re namespace 34 ecre = re.compile(r''' 43 ''', re.VERBOSE | re.IGNORECASE | re.MULTILINE) 48 fcre = re.compile(r'[\041-\176]+:$') 52 _embeded_header = re.compile(r'\n[^ \t]+:') 308 # BAW: I'm not sure what the right test here is. What we're trying to 448 cre = re.compile(r'%s\s*' % ch) 462 # We don't want to split after the field name, if we're on th [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_future.py | 5 import re namespace 7 rx = re.compile('\((\S+).py, line (\d+)')
|
test_gdb.py | 7 import re namespace 22 gdb_version_number = re.search("^GNU gdb [^\d]*(\d+)\.(\d)", gdb_version) 75 m = re.match(r'.*\[(.*)\].*', stdout) 189 m = re.match('.*#0\s+PyObject_Print\s+\(\s*op\=\s*(.*?),\s+fp=.*\).*', 190 gdb_output, re.DOTALL) 201 m = re.match(pattern, actual, re.DOTALL) 349 m = re.match(r'<Foo\(an_int=42\) at remote 0x[0-9a-f]+>', gdb_repr) 361 m = re.match(r'<Foo\(an_int=42\) at remote 0x[0-9a-f]+>', gdb_repr) 374 m = re.match(r'<Foo\(an_int=42\) at remote 0x[0-9a-f]+>', gdb_repr [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_MozillaCookieJar.py | 3 import re, time namespace 51 if not re.search(self.magic_re, magic):
|
rlcompleter.py | 127 import re namespace 128 m = re.match(r"(\w+(\.\w+)*)\.(\w*)", text)
|
urllib.py | 31 import re namespace 685 import re namespace 686 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff) 707 import re namespace 708 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff) 1068 import re namespace 1082 import re namespace 1099 import re namespace 1111 import re namespace 1124 import re namespace 1139 import re namespace 1158 import re namespace 1170 import re namespace 1188 import re namespace 1402 import re namespace 1498 import re namespace 1530 import re namespace [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
build_scripts.py | 7 import os, re namespace 15 first_line_re = re.compile('^#!.*python[0-9.]*([ \t].*)?$')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
feedparser.py | 24 import re namespace 29 NLCRE = re.compile('\r\n|\r|\n') 30 NLCRE_bol = re.compile('(\r\n|\r|\n)') 31 NLCRE_eol = re.compile('(\r\n|\r|\n)\Z') 32 NLCRE_crack = re.compile('(\r\n|\r|\n)') 35 headerRE = re.compile(r'^(From |[\041-\071\073-\176]{1,}:|[\t ])') 87 # We're at the false EOF. But push the last line back first. 103 # The *ahem* interesting behaviour of re.split when supplied grouping 105 # data after the final RE. In the case of a NL/CR terminated string, 114 # re-attaching the newlines [all...] |
header.py | 13 import re namespace 34 ecre = re.compile(r''' 43 ''', re.VERBOSE | re.IGNORECASE | re.MULTILINE) 48 fcre = re.compile(r'[\041-\176]+:$') 52 _embeded_header = re.compile(r'\n[^ \t]+:') 308 # BAW: I'm not sure what the right test here is. What we're trying to 448 cre = re.compile(r'%s\s*' % ch) 462 # We don't want to split after the field name, if we're on th [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/ |
rbacrulequery.py | 20 import re namespace 78 self._target = re.compile(value)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_future.py | 5 import re namespace 7 rx = re.compile('\((\S+).py, line (\d+)')
|
test_gdb.py | 7 import re namespace 22 gdb_version_number = re.search("^GNU gdb [^\d]*(\d+)\.(\d)", gdb_version) 75 m = re.match(r'.*\[(.*)\].*', stdout) 189 m = re.match('.*#0\s+PyObject_Print\s+\(\s*op\=\s*(.*?),\s+fp=.*\).*', 190 gdb_output, re.DOTALL) 201 m = re.match(pattern, actual, re.DOTALL) 349 m = re.match(r'<Foo\(an_int=42\) at remote 0x[0-9a-f]+>', gdb_repr) 361 m = re.match(r'<Foo\(an_int=42\) at remote 0x[0-9a-f]+>', gdb_repr) 374 m = re.match(r'<Foo\(an_int=42\) at remote 0x[0-9a-f]+>', gdb_repr [all...] |
/prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4/4.5/ |
antlr4-4.5.jar | |
/prebuilts/tools/common/offline-m2/com/tunnelvisionlabs/antlr4/4.5/ |
antlr4-4.5.jar | |
/external/regex-re2/re2/testing/ |
tester.cc | 215 // Create re string that will be used for RE and RE2. 216 string re = regexp_str.as_string(); local 220 re = "(?m)" + re; 222 re = "(?U)" + re; 224 re = "(?s)" + re; 233 re2_ = new RE2(re, options) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_gdb.py | 7 import re namespace 22 gdb_version_number = re.search("^GNU gdb [^\d]*(\d+)\.(\d)", gdb_version) 75 m = re.match(r'.*\[(.*)\].*', stdout) 189 m = re.match('.*#0\s+PyObject_Print\s+\(\s*op\=\s*(.*?),\s+fp=.*\).*', 190 gdb_output, re.DOTALL) 201 m = re.match(pattern, actual, re.DOTALL) 349 m = re.match(r'<Foo\(an_int=42\) at remote 0x[0-9a-f]+>', gdb_repr) 361 m = re.match(r'<Foo\(an_int=42\) at remote 0x[0-9a-f]+>', gdb_repr) 374 m = re.match(r'<Foo\(an_int=42\) at remote 0x[0-9a-f]+>', gdb_repr [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_gdb.py | 7 import re namespace 22 gdb_version_number = re.search("^GNU gdb [^\d]*(\d+)\.(\d)", gdb_version) 75 m = re.match(r'.*\[(.*)\].*', stdout) 189 m = re.match('.*#0\s+PyObject_Print\s+\(\s*op\=\s*(.*?),\s+fp=.*\).*', 190 gdb_output, re.DOTALL) 201 m = re.match(pattern, actual, re.DOTALL) 349 m = re.match(r'<Foo\(an_int=42\) at remote 0x[0-9a-f]+>', gdb_repr) 361 m = re.match(r'<Foo\(an_int=42\) at remote 0x[0-9a-f]+>', gdb_repr) 374 m = re.match(r'<Foo\(an_int=42\) at remote 0x[0-9a-f]+>', gdb_repr [all...] |
/external/regex-re2/re2/ |
re2.cc | 298 bool RE2::FullMatchN(const StringPiece& text, const RE2& re, 300 return re.DoMatch(text, ANCHOR_BOTH, NULL, args, n); 303 bool RE2::PartialMatchN(const StringPiece& text, const RE2& re, 305 return re.DoMatch(text, UNANCHORED, NULL, args, n); 308 bool RE2::ConsumeN(StringPiece* input, const RE2& re, 311 if (re.DoMatch(*input, ANCHOR_START, &consumed, args, n)) { 319 bool RE2::FindAndConsumeN(StringPiece* input, const RE2& re, 322 if (re.DoMatch(*input, UNANCHORED, &consumed, args, n)) { 350 const RE2& re, 356 if (!re.Match(*str, 0, str->size(), UNANCHORED, vec, nvec) [all...] |
/system/tpm/trunks/generator/ |
generator.py | 75 import re namespace 254 match = re.search(r'([^\[]*)(\[.*\])*', name) 257 fixed_name = re.sub(r'([a-z0-9])([A-Z])', r'\1_\2', match.group(1)).lower() 510 _ARRAY_FIELD_RE = re.compile(r'(.*)\[(.*)\]') 511 _ARRAY_FIELD_SIZE_RE = re.compile(r'^(count|size)') 512 _UNION_TYPE_RE = re.compile(r'^TPMU_.*') 943 _OLD_TYPE_RE = re.compile(r'^_OLD_TYPE\s+(\w+)$') 944 _NEW_TYPE_RE = re.compile(r'^_NEW_TYPE\s+(\w+)$') 945 _CONSTANTS_SECTION_RE = re.compile(r'^_CONSTANTS.* (\w+)$') 946 _STRUCTURE_SECTION_RE = re.compile(r'^_STRUCTURE\s+(\w+)$' [all...] |