/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.members/ |
default.pass.cpp | 25 assert(sm.matched == false); 31 assert(sm.matched == false);
|
length.pass.cpp | 29 sm.matched = true; 40 sm.matched = true;
|
compare_sub_match.pass.cpp | 30 sm.matched = true; 34 sm2.matched = true; 46 sm.matched = true; 50 sm2.matched = true;
|
compare_string_type.pass.cpp | 31 sm.matched = true; 45 sm.matched = true;
|
compare_value_type_ptr.pass.cpp | 30 sm.matched = true; 43 sm.matched = true;
|
operator_string.pass.cpp | 30 sm.matched = true; 43 sm.matched = true;
|
str.pass.cpp | 30 sm.matched = true; 43 sm.matched = true;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.acc/ |
index.pass.cpp | 28 assert(m[0].matched == true); 32 assert(m[1].matched == true); 36 assert(m[2].matched == true); 40 assert(m[3].matched == false); 44 assert(m[4].matched == false);
|
prefix.pass.cpp | 28 assert(m.prefix().matched == true);
|
suffix.pass.cpp | 28 assert(m.suffix().matched == true);
|
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/util/ |
SearchUtilTest.java | 33 SearchUtil.MatchedLine matched = SearchUtil.findMatchingLine(actual, "poten"); local 34 assertEquals("With potentially many lines.", matched.line); 35 assertEquals(5, matched.startIndex); 38 matched = SearchUtil.findMatchingLine(actual, "hello"); 39 assertEquals("hello", matched.line); 40 assertEquals(0, matched.startIndex); 43 matched = SearchUtil.findMatchingLine(actual, "this"); 44 assertEquals("this is a long test string.", matched.line); 45 assertEquals(0, matched.startIndex); 48 matched = SearchUtil.findMatchingLine(actual, "punc") [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/ |
genversion.c | 39 int major, minor, subminor, patchlevel, matched; local 46 matched = sscanf(PACKAGE_VERSION, "%d.%d.%d.%d", &major, &minor, &subminor, 49 if (matched == 3) 51 else if (matched != 4) {
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
xcodeproj.py | 41 matched = self._development_region_regex.search(line) 42 if not matched: 44 if matched.group('region') != 'English':
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/ |
diff_parser.py | 59 conversion_patterns = (("^diff --git \w/(.+) \w/(?P<FilePath>.+)", lambda matched: "Index: " + matched.group('FilePath') + "\n"), 60 ("^new file.*", lambda matched: "\n"), 61 ("^index (([0-9a-f]{7}\.\.[0-9a-f]{7})|([0-9a-f]{40}\.\.[0-9a-f]{40})) [0-9]{6}", lambda matched: "===================================================================\n"), 62 ("^--- \w/(?P<FilePath>.+)", lambda matched: "--- " + matched.group('FilePath') + "\n"), 63 ("^\+\+\+ \w/(?P<FilePath>.+)", lambda matched: "+++ " + matched.group('FilePath') + "\n")) 66 matched = match(pattern, line) 67 if matched [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/ |
grep.pass.cpp | 32 assert(!m.prefix().matched); 35 assert(!m.suffix().matched); 48 assert(!m.prefix().matched); 51 assert(m.suffix().matched);
|
egrep.pass.cpp | 32 assert(!m.prefix().matched); 35 assert(!m.suffix().matched); 48 assert(!m.prefix().matched); 51 assert(m.suffix().matched); 64 assert(!m.prefix().matched); 67 assert(!m.suffix().matched); 80 assert(!m.prefix().matched); 83 assert(!m.suffix().matched);
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_suppressions.cc | 108 DPrintf("ThreadSanitizer: matched suppression '%s'\n", s->templ); 129 DPrintf("ThreadSanitizer: matched suppression '%s'\n", s->templ); 139 InternalMmapVector<Suppression *> matched(1); 140 g_ctx->GetMatched(&matched); 141 if (!matched.size()) 144 for (uptr i = 0; i < matched.size(); i++) 145 hit_count += matched[i]->hit_count; 146 Printf("ThreadSanitizer: Matched %d suppressions (pid=%d):\n", hit_count, 148 for (uptr i = 0; i < matched.size(); i++) { 149 Printf("%d %s:%s\n", matched[i]->hit_count [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.match/ |
egrep.pass.cpp | 32 assert(!m.prefix().matched); 35 assert(!m.suffix().matched); 55 assert(!m.prefix().matched); 58 assert(!m.suffix().matched); 71 assert(!m.prefix().matched); 74 assert(!m.suffix().matched);
|
awk.pass.cpp | 33 assert(!m.prefix().matched); 36 assert(!m.suffix().matched); 48 assert(!m.prefix().matched); 51 assert(!m.suffix().matched); 89 assert(!m.prefix().matched); 92 assert(!m.suffix().matched); 104 assert(!m.prefix().matched); 107 assert(!m.suffix().matched); 129 assert(!m.prefix().matched); 132 assert(!m.suffix().matched); [all...] |
grep.pass.cpp | 32 assert(!m.prefix().matched); 35 assert(!m.suffix().matched);
|
extended.pass.cpp | 32 assert(!m.prefix().matched); 35 assert(!m.suffix().matched); 47 assert(!m.prefix().matched); 50 assert(!m.suffix().matched); 88 assert(!m.prefix().matched); 91 assert(!m.suffix().matched); 103 assert(!m.prefix().matched); 106 assert(!m.suffix().matched); 128 assert(!m.prefix().matched); 131 assert(!m.suffix().matched); [all...] |
/external/chromium_org/chrome/test/pyautolib/ |
omnibox_info.py | 106 matched = True 109 matched = False 110 if matched:
|
/external/chromium_org/tools/find_runtime_symbols/ |
reduce_debugline.py | 39 matched = _FILENAME_PATTERN.match(line) 40 if matched: 41 filename = matched.group(2)
|
/external/chromium_org/v8/tools/testrunner/server/ |
signatures.py | 59 matched = (code == 0) 60 if not matched: 63 return matched
|
/external/skia/expectations/gm/ |
loader.js | 31 var matched = imageNameRegex.exec(imageName); 40 test: matched[1], config: matched[2],
|