/external/libcxx/test/std/re/re.alg/re.alg.search/ |
D | ecma.pass.cpp | 37 assert(!m.prefix().matched); in main() 40 assert(!m.suffix().matched); in main() 52 assert(!m.prefix().matched); in main() 55 assert(!m.suffix().matched); in main() 74 assert(m.prefix().matched); in main() 77 assert(!m.suffix().matched); in main() 96 assert(m.prefix().matched); in main() 99 assert(m.suffix().matched); in main() 111 assert(!m.prefix().matched); in main() 114 assert(!m.suffix().matched); in main() [all …]
|
D | basic.pass.cpp | 43 assert(!m.prefix().matched); in main() 46 assert(!m.suffix().matched); in main() 58 assert(!m.prefix().matched); in main() 61 assert(!m.suffix().matched); in main() 80 assert(m.prefix().matched); in main() 83 assert(!m.suffix().matched); in main() 102 assert(m.prefix().matched); in main() 105 assert(m.suffix().matched); in main() 117 assert(!m.prefix().matched); in main() 120 assert(!m.suffix().matched); in main() [all …]
|
D | awk.pass.cpp | 37 assert(!m.prefix().matched); in main() 40 assert(!m.suffix().matched); in main() 52 assert(!m.prefix().matched); in main() 55 assert(!m.suffix().matched); in main() 74 assert(m.prefix().matched); in main() 77 assert(!m.suffix().matched); in main() 96 assert(m.prefix().matched); in main() 99 assert(m.suffix().matched); in main() 111 assert(!m.prefix().matched); in main() 114 assert(!m.suffix().matched); in main() [all …]
|
D | extended.pass.cpp | 37 assert(!m.prefix().matched); in main() 40 assert(!m.suffix().matched); in main() 52 assert(!m.prefix().matched); in main() 55 assert(!m.suffix().matched); in main() 74 assert(m.prefix().matched); in main() 77 assert(!m.suffix().matched); in main() 96 assert(m.prefix().matched); in main() 99 assert(m.suffix().matched); in main() 111 assert(!m.prefix().matched); in main() 114 assert(!m.suffix().matched); in main() [all …]
|
D | egrep.pass.cpp | 32 assert(!m.prefix().matched); in main() 35 assert(!m.suffix().matched); in main() 48 assert(!m.prefix().matched); in main() 51 assert(m.suffix().matched); in main() 64 assert(!m.prefix().matched); in main() 67 assert(!m.suffix().matched); in main() 80 assert(!m.prefix().matched); in main() 83 assert(!m.suffix().matched); in main()
|
D | grep.pass.cpp | 32 assert(!m.prefix().matched); in main() 35 assert(!m.suffix().matched); in main() 48 assert(!m.prefix().matched); in main() 51 assert(m.suffix().matched); in main()
|
/external/libcxx/test/std/re/re.alg/re.alg.match/ |
D | ecma.pass.cpp | 37 assert(!m.prefix().matched); in main() 40 assert(!m.suffix().matched); in main() 52 assert(!m.prefix().matched); in main() 55 assert(!m.suffix().matched); in main() 93 assert(!m.prefix().matched); in main() 96 assert(!m.suffix().matched); in main() 108 assert(!m.prefix().matched); in main() 111 assert(!m.suffix().matched); in main() 132 assert(!m.prefix().matched); in main() 135 assert(!m.suffix().matched); in main() [all …]
|
D | extended.pass.cpp | 37 assert(!m.prefix().matched); in main() 40 assert(!m.suffix().matched); in main() 52 assert(!m.prefix().matched); in main() 55 assert(!m.suffix().matched); in main() 93 assert(!m.prefix().matched); in main() 96 assert(!m.suffix().matched); in main() 108 assert(!m.prefix().matched); in main() 111 assert(!m.suffix().matched); in main() 133 assert(!m.prefix().matched); in main() 136 assert(!m.suffix().matched); in main() [all …]
|
D | basic.pass.cpp | 43 assert(!m.prefix().matched); in main() 46 assert(!m.suffix().matched); in main() 58 assert(!m.prefix().matched); in main() 61 assert(!m.suffix().matched); in main() 99 assert(!m.prefix().matched); in main() 102 assert(!m.suffix().matched); in main() 114 assert(!m.prefix().matched); in main() 117 assert(!m.suffix().matched); in main() 139 assert(!m.prefix().matched); in main() 142 assert(!m.suffix().matched); in main() [all …]
|
D | egrep.pass.cpp | 32 assert(!m.prefix().matched); in main() 35 assert(!m.suffix().matched); in main() 55 assert(!m.prefix().matched); in main() 58 assert(!m.suffix().matched); in main() 71 assert(!m.prefix().matched); in main() 74 assert(!m.suffix().matched); in main()
|
/external/lldb/examples/python/ |
D | jump.py | 20 matched = False 22 if (not matched): 25 matched = True 34 if (not matched): 37 matched = True 46 if (not matched): 49 matched = True 58 if (not matched): 61 matched = True 67 if (not matched): [all …]
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_suppressions.cc | 142 InternalMmapVector<Suppression *> matched(1); in PrintMatchedSuppressions() local 144 suppression_ctx->GetMatched(&matched); in PrintMatchedSuppressions() 145 if (!matched.size()) in PrintMatchedSuppressions() 148 for (uptr i = 0; i < matched.size(); i++) in PrintMatchedSuppressions() 149 hit_count += matched[i]->hit_count; in PrintMatchedSuppressions() 152 for (uptr i = 0; i < matched.size(); i++) { in PrintMatchedSuppressions() 153 Printf("%d %s:%s\n", matched[i]->hit_count, matched[i]->type, in PrintMatchedSuppressions() 154 matched[i]->templ); in PrintMatchedSuppressions()
|
/external/regex-re2/re2/testing/ |
D | dfa_test.cc | 208 bool matched, failed = false; in TEST() local 209 matched = prog->SearchDFA(match, NULL, in TEST() 213 CHECK(matched); in TEST() 214 matched = prog->SearchDFA(no_match, NULL, in TEST() 218 CHECK(!matched); in TEST() 243 bool matched, failed = false; in Run() local 244 matched = prog_->SearchDFA(match_, NULL, in Run() 248 CHECK(matched); in Run() 249 matched = prog_->SearchDFA(no_match_, NULL, in Run() 253 CHECK(!matched); in Run() [all …]
|
D | tester.cc | 81 bool matched; // found a match member 305 result->matched = in RunSearch() 316 result->matched = in RunSearch() 327 result->matched = prog_->SearchDFA(text, context, anchor, kind_, NULL, in RunSearch() 336 result->matched = in RunSearch() 341 if (result->matched) { in RunSearch() 348 result->matched = false; in RunSearch() 362 result->matched = prog_->SearchOnePass(text, context, anchor, kind_, in RunSearch() 372 result->matched = prog_->SearchBitState(text, context, anchor, kind_, in RunSearch() 393 result->matched = re2_->Match(context, in RunSearch() [all …]
|
/external/libcxx/test/std/re/re.results/re.results.acc/ |
D | index.pass.cpp | 30 assert(m[0].matched == true); in test() 34 assert(m[1].matched == true); in test() 38 assert(m[2].matched == true); in test() 42 assert(m[3].matched == false); in test() 46 assert(m[4].matched == false); in test()
|
/external/llvm/test/FileCheck/ |
D | check-dag-substring-prefix.txt | 3 this is the string to be matched 4 this should also be matched 6 ; BAA-DAG: this is the string to be {{matched}} 7 ; BAA-DAG: this should also be {{matched}}
|
/external/sqlite/android/ |
D | OldPhoneNumberUtils.cpp | 198 int matched; in phone_number_compare_loose() local 216 matched = 0; in phone_number_compare_loose() 242 ia--; ib--; matched++; in phone_number_compare_loose() 246 if (matched < MIN_MATCH) { in phone_number_compare_loose() 252 if (effectiveALen == effectiveBLen && effectiveALen == matched) { in phone_number_compare_loose() 260 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) { in phone_number_compare_loose()
|
/external/libcxx/test/std/re/re.submatch/re.submatch.members/ |
D | compare_sub_match.pass.cpp | 30 sm.matched = true; in main() 34 sm2.matched = true; in main() 46 sm.matched = true; in main() 50 sm2.matched = true; in main()
|
/external/lldb/test/ |
D | lldbtest.py | 1633 matched = thread_line_pattern.match(line) 1634 if matched: 1635 self.runCmd('thread select %s' % matched.group(1)) 1706 matched = bool(match_object) 1709 print >> sbuf, "Matched" if matched else "Not matched" 1710 if matched: 1713 self.assertTrue(matched if matching else not matched, 1770 matched = output.startswith(startstr) if startstr else (True if matching else False) 1775 print >> sbuf, "Matched" if matched else "Not matched" 1778 keepgoing = matched if matching else not matched [all …]
|
/external/icu/icu4c/source/common/ |
D | uloc_keytype.cpp | 502 UBool matched = FALSE; in ulocimp_toBcpType() local 504 matched = isSpecialTypeCodepoints(type); in ulocimp_toBcpType() 506 if (!matched && keyData->specialTypes & SPECIALTYPE_REORDER_CODE) { in ulocimp_toBcpType() 507 matched = isSpecialTypeReorderCode(type); in ulocimp_toBcpType() 509 if (matched) { in ulocimp_toBcpType() 544 UBool matched = FALSE; in ulocimp_toLegacyType() local 546 matched = isSpecialTypeCodepoints(type); in ulocimp_toLegacyType() 548 if (!matched && keyData->specialTypes & SPECIALTYPE_REORDER_CODE) { in ulocimp_toLegacyType() 549 matched = isSpecialTypeReorderCode(type); in ulocimp_toLegacyType() 551 if (matched) { in ulocimp_toLegacyType()
|
/external/v8/tools/testrunner/server/ |
D | signatures.py | 59 matched = (code == 0) 60 if not matched: 63 return matched
|
/external/libvpx/libvpx/tools/ |
D | cpplint.py | 469 matched = _RE_SUPPRESSION.search(raw_line) 470 if matched: 471 category = matched.group(1) 1091 matched = Match(r'^(.*)\b(?:R|u8R|uR|UR|LR)"([^\s\\()]*)\((.*)$', line) 1092 if matched: 1093 delimiter = ')' + matched.group(2) + '"' 1095 end = matched.group(3).find(delimiter) 1098 line = (matched.group(1) + '""' + 1099 matched.group(3)[end + len(delimiter):]) 1103 line = matched.group(1) + '""' [all …]
|
/external/regex-re2/re2/ |
D | onepass.cc | 251 bool matched = false; in SearchOnePass() local 302 matched = true; in SearchOnePass() 330 matched = true; in SearchOnePass() 335 if (!matched) in SearchOnePass() 424 bool matched = false; in IsOnePass() local 463 if (matched) in IsOnePass() 537 if (matched) { in IsOnePass() 545 matched = true; in IsOnePass()
|
/external/iptables/extensions/ |
D | libxt_set.man | 35 If the packet is matched an element in the set, match only if the 39 If the packet is matched an element in the set, match only if the 43 If the packet is matched an element in the set, match only if the 47 If the packet is matched an element in the set, match only if the 51 If the packet is matched an element in the set, match only if the 55 If the packet is matched an element in the set, match only if the
|
/external/jarjar/res/com/tonicsystems/jarjar/ |
D | help.txt | 55 matched by more than one rule, only the first one will apply. 63 substrings matched by the wildcards. A numbered reference is available 66 matched class name. 68 The "zap" rule causes any matched class to be removed from the resulting 71 The "keep" rule marks all matched classes as "roots". If any keep
|