/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/ |
tokenizertotree.py | 6 import re namespace 14 unnamespaceExpected = re.compile(r"^(\|\s*)<html ([^>]+)>", re.M).sub
|
/external/compiler-rt/lib/sanitizer_common/scripts/ |
gen_dynamic_list.py | 19 import re namespace 79 match = re.match('__interceptor_(.*)', func) 89 if re.match('__sanitizer_(.*)', func):
|
/external/deqp/scripts/src_util/ |
pre_commit.py | 27 import re namespace 83 guard_re = re.compile('^[ \t]*#\s*ifndef\s+_.*?_H(PP)?\n' 86 re.MULTILINE)
|
/external/gtest/test/ |
gtest_list_tests_unittest.py | 43 import re namespace 56 EXPECTED_OUTPUT_NO_FILTER_RE = re.compile(r"""FooDeathTest\. 100 EXPECTED_OUTPUT_FILTER_FOO_RE = re.compile(r"""FooDeathTest\.
|
/external/guice/extensions/persist/test/com/google/inject/persist/jpa/ |
ManualLocalTransactionsConfidenceTest.java | 62 } catch (RuntimeException re) { 63 e = re; 66 re.printStackTrace(System.out);
|
/external/opencv3/3rdparty/jinja2/markupsafe/ |
__init__.py | 11 import re namespace 19 _striptags_re = re.compile(r'(<!--.*?-->|<[^>]*>)') 20 _entity_re = re.compile(r'&([^;]+);')
|
/external/skia/tools/ |
generate_includes_cpp.py | 13 import re namespace 18 if re.search(ignore_path, full_path, re.I):
|
/external/v8/test/mjsunit/regress/ |
regress-45469.js | 30 var re = /x/g; variable 33 assertEquals(i % 3, re.lastIndex, "preindex" + i); 34 var res = re.exec("xx"); 38 re = /x/g; 41 assertEquals(i % 3, re.lastIndex, "testpreindex" + i); 42 var res = re.test("xx");
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
gtest_list_tests_unittest.py | 43 import re namespace 56 EXPECTED_OUTPUT_NO_FILTER_RE = re.compile(r"""FooDeathTest\. 100 EXPECTED_OUTPUT_FILTER_FOO_RE = re.compile(r"""FooDeathTest\.
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_list_tests_unittest.py | 43 import re namespace 56 EXPECTED_OUTPUT_NO_FILTER_RE = re.compile(r"""FooDeathTest\. 100 EXPECTED_OUTPUT_FILTER_FOO_RE = re.compile(r"""FooDeathTest\.
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/ |
install_egg_info.py | 9 import os, sys, re namespace 60 return re.sub('[^A-Za-z0-9.]+', '-', name) 70 return re.sub('[^A-Za-z0-9.]+', '-', version)
|
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/ |
install_egg_info.py | 9 import os, sys, re namespace 60 return re.sub('[^A-Za-z0-9.]+', '-', name) 70 return re.sub('[^A-Za-z0-9.]+', '-', version)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
install_egg_info.py | 9 import os, sys, re namespace 60 return re.sub('[^A-Za-z0-9.]+', '-', name) 70 return re.sub('[^A-Za-z0-9.]+', '-', version)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
install_egg_info.py | 9 import os, sys, re namespace 60 return re.sub('[^A-Za-z0-9.]+', '-', name) 70 return re.sub('[^A-Za-z0-9.]+', '-', version)
|
/system/ca-certificates/google/ |
extract_from_pem.py | 19 import re namespace 57 return ':'.join(re.findall(r'..', x509.get_fingerprint('sha1').zfill(40))) 75 pem_certs = re.findall(pattern, pem_file.read())
|
/prebuilts/go/darwin-x86/src/regexp/testdata/ |
testregex.c | 121 compf(const regex_t* re, const char* xstr, size_t xlen, regdisc_t* disc) 129 execf(const regex_t* re, void* data, const char* xstr, size_t xlen, const char* sstr, size_t slen, char** snxt, regdisc_t* disc) 654 report(char* comment, char* fun, char* re, char* s, int len, char* msg, int flags, unsigned long test) 659 if (re) 662 quote(re, -1, test|TEST_DELIMIT); 717 bad(char* comment, char* re, char* s, int len, unsigned long test) 720 report(comment, NiL, re, s, len, NiL, 0, test); 882 matchcheck(regmatch_t* match, int nmatch, int nsub, char* ans, char* re, char* s, int len, int flags, unsigned long test) 904 report("callout failed", NiL, re, s, len, NiL, flags, test); 914 bad("improper answer\n", re, s, -1, test) 1240 char* re; local [all...] |
/prebuilts/go/linux-x86/src/regexp/testdata/ |
testregex.c | 121 compf(const regex_t* re, const char* xstr, size_t xlen, regdisc_t* disc) 129 execf(const regex_t* re, void* data, const char* xstr, size_t xlen, const char* sstr, size_t slen, char** snxt, regdisc_t* disc) 654 report(char* comment, char* fun, char* re, char* s, int len, char* msg, int flags, unsigned long test) 659 if (re) 662 quote(re, -1, test|TEST_DELIMIT); 717 bad(char* comment, char* re, char* s, int len, unsigned long test) 720 report(comment, NiL, re, s, len, NiL, 0, test); 882 matchcheck(regmatch_t* match, int nmatch, int nsub, char* ans, char* re, char* s, int len, int flags, unsigned long test) 904 report("callout failed", NiL, re, s, len, NiL, flags, test); 914 bad("improper answer\n", re, s, -1, test) 1240 char* re; local [all...] |
/build/core/ |
checktree | 3 import sys, os, re namespace 14 excludes_compiled = map(re.compile, excludes) 59 regex_compiled = re.compile(regex) 60 filt_compiled = re.compile(filt)
|
/build/tools/ |
adbs | 19 import re namespace
|
/development/tools/findunused/ |
find_unused_resources.rb | 75 def findAllOccurrences(re, string) 79 matchData = re.match(s) 83 matchData = re.match(s) 95 @@javaIdPatterns.each { |re| 96 findAllOccurrences(re, line).each { |id| 121 @@stringXmlPatterns.each { |re| 122 findAllOccurrences(re, line).each {|id| 134 @@stringXmlPatterns.each { |re| 135 findAllOccurrences(re, line).each {|id|
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/ |
SymbolTableParser.m | 247 @catch (ANTLRRecognitionException *re) { 248 [self reportError:re]; 249 [self recover:input Exception:re]; 319 @catch (ANTLRRecognitionException *re) { 320 [self reportError:re]; 321 [self recover:input Exception:re]; 367 @catch (ANTLRRecognitionException *re) { 368 [self reportError:re]; 369 [self recover:input Exception:re]; 473 @catch (ANTLRRecognitionException *re) { [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/ |
SymbolTableParser.m | 275 @catch (ANTLRRecognitionException *re) { 276 [self reportError:re]; 277 [self recover:input Exception:re]; 341 @catch (ANTLRRecognitionException *re) { 342 [self reportError:re]; 343 [self recover:input Exception:re]; 378 @catch (ANTLRRecognitionException *re) { 379 [self reportError:re]; 380 [self recover:input Exception:re]; 473 @catch (ANTLRRecognitionException *re) { [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/ |
TreeRewriteParser.m | 288 @catch (ANTLRRecognitionException *re) { 289 [self reportError:re]; 290 [self recover:input Exception:re]; 291 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.startToken To:[input LT:-1] Exception:re]; 338 @catch (ANTLRRecognitionException *re) { 339 [self reportError:re]; 340 [self recover:input Exception:re]; 341 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.startToken To:[input LT:-1] Exception:re];
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t033backtracking.py | 13 def recover(self, input, re):
|
t038lexerRuleLabel.py | 13 def recover(self, input, re):
|