/external/chromium/testing/gtest/test/ |
gtest_help_test.py | 43 import re namespace 56 INCORRECT_FLAG_VARIANTS = [re.sub('^--', '-', LIST_TESTS_FLAG), 57 re.sub('^--', '/', LIST_TESTS_FLAG), 58 re.sub('_', '-', LIST_TESTS_FLAG)] 65 HELP_REGEX = re.compile( 78 re.DOTALL)
|
/external/chromium_org/testing/gtest/test/ |
gtest_help_test.py | 43 import re namespace 56 INCORRECT_FLAG_VARIANTS = [re.sub('^--', '-', LIST_TESTS_FLAG), 57 re.sub('^--', '/', LIST_TESTS_FLAG), 58 re.sub('_', '-', LIST_TESTS_FLAG)] 65 HELP_REGEX = re.compile( 78 re.DOTALL)
|
/external/gtest/test/ |
gtest_help_test.py | 43 import re namespace 56 INCORRECT_FLAG_VARIANTS = [re.sub('^--', '-', LIST_TESTS_FLAG), 57 re.sub('^--', '/', LIST_TESTS_FLAG), 58 re.sub('_', '-', LIST_TESTS_FLAG)] 65 HELP_REGEX = re.compile( 78 re.DOTALL)
|
/external/libvpx/libvpx/third_party/googletest/src/test/ |
gtest_help_test.py | 43 import re namespace 56 INCORRECT_FLAG_VARIANTS = [re.sub('^--', '-', LIST_TESTS_FLAG), 57 re.sub('^--', '/', LIST_TESTS_FLAG), 58 re.sub('_', '-', LIST_TESTS_FLAG)] 65 HELP_REGEX = re.compile( 78 re.DOTALL)
|
/libcore/luni/src/main/java/java/util/regex/ |
Splitter.java | 39 public static String[] fastSplit(String re, String input, int limit) { 41 int len = re.length(); 45 char ch = re.charAt(0); 47 // We're looking for a single non-metacharacter. Easy. 49 // We're looking for a quoted character. 51 ch = re.charAt(1); 104 public static String[] split(Pattern pattern, String re, String input, int limit) { 105 String[] fastResult = fastSplit(re, input, limit);
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_help_test.py | 43 import re namespace 56 INCORRECT_FLAG_VARIANTS = [re.sub('^--', '-', LIST_TESTS_FLAG), 57 re.sub('^--', '/', LIST_TESTS_FLAG), 58 re.sub('_', '-', LIST_TESTS_FLAG)] 65 HELP_REGEX = re.compile( 78 re.DOTALL)
|
/external/chromium_org/third_party/re2/re2/testing/ |
re2_test.cc | 351 RE2 re("((\\w+):([0-9]+))"); // extracts host and port 356 CHECK(!re.Match(s, 0, s.size(), RE2::UNANCHORED, 361 CHECK(re.Match(s, 0, s.size(), RE2::UNANCHORED, 370 CHECK(RE2::PartialMatch("a chrisr:9000 here", re, &all, &host, &port)); 385 RE2 re("([a-zA-Z0-9]|-)+(\\.([a-zA-Z0-9]|-)+)*(\\.)?", RE2::Quiet); 386 RE2::FullMatch(domain, re); 394 RE2 re(quoted, options); 395 EXPECT_TRUE_M(RE2::FullMatch(unquoted, re), 404 RE2 re(quoted, options); 405 EXPECT_FALSE_M(RE2::FullMatch(should_not_match, re), [all...] |
/external/regex-re2/re2/testing/ |
re2_test.cc | 344 RE2 re("((\\w+):([0-9]+))"); // extracts host and port 349 CHECK(!re.Match(s, 0, s.size(), RE2::UNANCHORED, 354 CHECK(re.Match(s, 0, s.size(), RE2::UNANCHORED, 363 CHECK(RE2::PartialMatch("a chrisr:9000 here", re, &all, &host, &port)); 378 RE2 re("([a-zA-Z0-9]|-)+(\\.([a-zA-Z0-9]|-)+)*(\\.)?", RE2::Quiet); 379 RE2::FullMatch(domain, re); 387 RE2 re(quoted, options); 388 EXPECT_TRUE_M(RE2::FullMatch(unquoted, re), 397 RE2 re(quoted, options); 398 EXPECT_FALSE_M(RE2::FullMatch(should_not_match, re), [all...] |
/external/chromium_org/tools/grit/grit/tool/ |
rc2grd.py | 11 import re namespace 37 "(?P<file>.*?([^"]|""))"[ \t]*$''', re.VERBOSE | re.MULTILINE) 43 re.MULTILINE | re.DOTALL) 48 re.MULTILINE | re.DOTALL) 54 re.MULTILINE | re.DOTALL) 61 re.MULTILINE | re.DOTALL [all...] |
/external/chromium_org/tools/valgrind/ |
tsan_analyze.py | 17 import re namespace 44 LOAD_LIB_RE = re.compile('--[0-9]+-- ([^(:]*) \((0x[0-9a-f]+)\)') 45 TSAN_LINE_RE = re.compile('==[0-9]+==\s*[#0-9]+\s*' 111 if re.search("{{{", self.line_): 112 while not re.search('}}}', self.line_): 119 if re.match('-+ suppression -+', self.line_): 124 while not re.match('-+ end suppression -+', self.line_): 168 while re.search(TsanAnalyzer.RACE_VERIFIER_LINE, self.line_): 171 while re.search(TsanAnalyzer.THREAD_CREATION_STR, self.line_): 173 if re.search(TsanAnalyzer.TSAN_RACE_DESCRIPTION, self.line_) [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
SimpleCParser.m | 400 @catch (ANTLRRecognitionException *re) { 401 [self reportError:re]; 402 [self recover:input Exception:re]; 495 @catch (ANTLRRecognitionException *re) { 496 [self reportError:re]; 497 [self recover:input Exception:re]; 545 @catch (ANTLRRecognitionException *re) { 546 [self reportError:re]; 547 [self recover:input Exception:re]; 579 @catch (ANTLRRecognitionException *re) { [all...] |
/cts/suite/audio_quality/test_description/conf/ |
detect_usb_audio.py | 20 import os, re, sys namespace 37 m = re.search("card(\d+)$", sound_dev)
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t034tokenLabelPropertyRef.py | 13 def recover(self, input, re): 22 def recover(self, input, re):
|
t035ruleLabelPropertyRef.py | 13 def recover(self, input, re): 22 def recover(self, input, re):
|
t036multipleReturnValues.py | 13 def recover(self, input, re): 22 def recover(self, input, re):
|
t037rulePropertyRef.py | 13 def recover(self, input, re): 22 def recover(self, input, re):
|
t041parameters.py | 13 def recover(self, input, re): 22 def recover(self, input, re):
|
t043synpred.py | 13 def recover(self, input, re): 22 def recover(self, input, re):
|
/external/chromium/build/ |
compiler_version.py | 14 import re namespace 24 result = re.match(r"(\d+)\.(\d+)", gcc_output)
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
run_all.py | 50 import re namespace 55 _TEST_MODULE_PATTERN = re.compile(r'^(test_.+)\.py$')
|
/external/chromium_org/build/ |
compiler_version.py | 13 import re namespace 27 result = re.match(r"(\d+)\.(\d+)", gcc_output)
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
easy_template.py | 10 import re namespace 19 indent_re = re.compile(r'\s*') 39 re.sub(expr_re, '%s', line), 40 ', '.join(re.findall(expr_re, line))) 55 statement_re = statement_re or re.compile(STATEMENT_RE) 56 expr_re = expr_re or re.compile(EXPR_RE) 99 f.read(), re.compile(STATEMENT_RE), re.compile(EXPR_RE))
|
/external/chromium_org/remoting/tools/ |
verify_resources.py | 29 import re namespace 56 m = re.search('i18n-content=[\'"]([^\'"]*)[\'"]', line) 59 m = re.search('i18n-value-name-[1-9]=[\'"]([^\'"]*)[\'"]', line) 63 m = re.search('/\*i18n-content\*/[\'"]([^\`"]*)[\'"]', line) 67 m = re.search('IDR_([A-Z0-9_]*)', line) 69 m = re.search('/\*i18n-content\*/["]([^\`"]*)["]', line) 73 m = re.search('__MSG_(.*)__', line) 77 m = re.search('\{\%\s+trans\s+\%\}([A-Z0-9_]+)\{\%\s+endtrans\s+\%\}', line)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
builders.py | 29 import re namespace 76 return re.sub(r'[\s().]', '_', builder_name)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
xcodeproj.py | 26 import re namespace 37 self._development_region_regex = re.compile('developmentRegion = (?P<region>.+);')
|