/external/libunwind/tests/ |
D | check-namespace.sh.in | 46 match () { function 91 match _UL${plat}_create_addr_space 92 match _UL${plat}_destroy_addr_space 93 match _UL${plat}_get_fpreg 94 match _UL${plat}_get_proc_info 95 match _UL${plat}_get_proc_info_by_ip 96 match _UL${plat}_get_proc_name 97 match _UL${plat}_get_reg 98 match _UL${plat}_get_save_loc 99 match _UL${plat}_init_local [all …]
|
/external/chromium_org/v8/test/webkit/ |
D | regexp-zero-length-alternatives-expected.txt | 24 Test regular expression processing with alternatives that match consuming no characters 29 PASS emptyStr.match(re1) is [""] 30 PASS s1.match(re1) is [""] 31 PASS s2.match(re1) is ["aaaa"] 32 PASS s3.match(re1) is ["aa"] 33 PASS emptyStr.match(re2) is [""] 34 PASS s1.match(re2) is [""] 35 PASS s2.match(re2) is ["aaaa"] 36 PASS s3.match(re2) is ["aa"] 37 PASS emptyStr.match(re3) is [""] [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
D | sse5-err.errwarn | 1 -:1: error: one of source operand 1 or 3 must match dest operand 2 -:2: error: one of source operand 1 or 3 must match dest operand 3 -:3: error: one of source operand 1 or 3 must match dest operand 4 -:5: error: one of source operand 1 or 3 must match dest operand 5 -:6: error: one of source operand 1 or 3 must match dest operand 6 -:7: error: one of source operand 1 or 3 must match dest operand 7 -:9: error: one of source operand 1 or 3 must match dest operand 8 -:10: error: one of source operand 1 or 3 must match dest operand 9 -:11: error: one of source operand 1 or 3 must match dest operand 10 -:13: error: one of source operand 1 or 3 must match dest operand [all …]
|
/external/chromium_org/components/omnibox/ |
D | base_search_provider.cc | 97 bool BaseSearchProvider::ShouldPrefetch(const AutocompleteMatch& match) { in ShouldPrefetch() argument 98 return match.GetAdditionalInfo(kShouldPrefetchKey) == kTrue; in ShouldPrefetch() 122 void BaseSearchProvider::DeleteMatch(const AutocompleteMatch& match) { in DeleteMatch() argument 123 DCHECK(match.deletable); in DeleteMatch() 124 if (!match.GetAdditionalInfo(BaseSearchProvider::kDeletionUrlKey).empty()) { in DeleteMatch() 126 match.GetAdditionalInfo(BaseSearchProvider::kDeletionUrlKey), in DeleteMatch() 133 match.GetTemplateURL(template_url_service_, false); in DeleteMatch() 138 match.contents); in DeleteMatch() 143 DeleteMatchFromMatches(match); in DeleteMatch() 175 AutocompleteMatch* match) { in SetDeletionURL() argument [all …]
|
D | autocomplete_match.cc | 66 AutocompleteMatch::AutocompleteMatch(const AutocompleteMatch& match) in AutocompleteMatch() argument 67 : provider(match.provider), in AutocompleteMatch() 68 relevance(match.relevance), in AutocompleteMatch() 69 typed_count(match.typed_count), in AutocompleteMatch() 70 deletable(match.deletable), in AutocompleteMatch() 71 fill_into_edit(match.fill_into_edit), in AutocompleteMatch() 72 inline_autocompletion(match.inline_autocompletion), in AutocompleteMatch() 73 allowed_to_be_default_match(match.allowed_to_be_default_match), in AutocompleteMatch() 74 destination_url(match.destination_url), in AutocompleteMatch() 75 stripped_destination_url(match.stripped_destination_url), in AutocompleteMatch() [all …]
|
/external/pcre/dist/testdata/ |
D | testoutput8 | 25 No match 27 No match 29 No match 95 No match 97 No match 99 No match 107 No match 109 No match 115 No match 117 No match [all …]
|
D | testoutput5 | 112 No match 114 No match 116 No match 118 No match 141 No match 163 No match 165 No match 175 May match empty string 253 No match 264 No match [all …]
|
D | testoutput1 | 11 No match 15 No match 93 No match 95 No match 97 No match 99 No match 101 No match 103 No match 105 No match 115 No match [all …]
|
D | testoutput12 | 16 May match empty string 25 May match empty string 52 May match empty string 68 No match (JIT) 74 Partial match: ab (JIT) 76 Partial match: ab (JIT) 78 No match (JIT) 84 Partial match: ab (JIT) 86 Partial match: ab (JIT) 88 No match (JIT) [all …]
|
D | testoutput10 | 11 No match 13 No match 25 No match 37 No match 45 No match 55 No match 81 No match 89 No match 91 No match 105 No match [all …]
|
D | testoutputEBC | 35 No match 37 No match 51 No match 53 No match 69 No match 71 No match 87 No match 89 No match 97 No match 99 No match [all …]
|
D | testoutput6 | 12 No match 14 No match 22 No match 30 No match 38 No match 46 No match 52 No match 54 No match 62 No match 70 No match [all …]
|
/external/chromium_org/tools/binary_size/ |
D | binary_size_utils.py | 40 match = sym_re.match(line) 41 if match: 42 size, sym_type, sym = match.groups()[0:3] 46 path = match.group(4) 49 match = addr_re.match(line) 50 if match: 53 match = noaddr_re.match(line) 54 if match: 55 sym_type, sym = match.groups() 58 match = addr_only_re.match(line) [all …]
|
/external/chromium_org/tools/findit/ |
D | findit_for_crash.py | 52 match = match_set.Match(revision_info, component_name) 55 match.ParseMessage(message, matches.codereview_api_url) 58 if match.is_revert: 62 if match.revert_of: 63 matches.cls_to_ignore.add(match.revert_of) 67 matches.matches[revision_number] = match 70 match = matches.matches[revision_number] 100 match.crashed_line_numbers.append(line_number_intersection) 103 match.changed_files.append(file_name) 106 if min_distance < match.min_distance: [all …]
|
/external/chromium_org/v8/tools/ |
D | check-name-clashes.py | 30 def __init__(self, match): argument 31 self.name = match.group(1) 35 def __init__(self, match): argument 36 self.name = match.group(1) 37 self.args = [s.strip() for s in match.group(2).split(",")] 40 self.AddLine(match.group(3)) 86 match = MACRO.match(line) 87 if match: 88 found_macro = Macro(match) 95 match = FIRST_WORD.match(line) [all …]
|
/external/clang/unittests/AST/ |
D | SourceLocationTest.cpp | 34 EXPECT_FALSE(Verifier.match("int i", varDecl())); in TEST() 40 EXPECT_FALSE(Verifier.match("int i;", recordDecl())); in TEST() 46 EXPECT_FALSE(Verifier.match("int i;", varDecl())); in TEST() 52 EXPECT_FALSE(Verifier.match("int i;", varDecl())); in TEST() 58 EXPECT_FALSE(Verifier.match("int i;", varDecl())); in TEST() 71 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt())); in TEST() 77 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt())); in TEST() 83 EXPECT_TRUE(Verifier.match("void f(i) {}", varDecl(), Lang_C)); in TEST() 89 EXPECT_TRUE(Verifier.match("void f(i) {}", varDecl(), Lang_C)); in TEST() 95 EXPECT_TRUE(Verifier.match("void f() { new int[10]; }", newExpr())); in TEST() [all …]
|
/external/llvm/unittests/IR/ |
D | PatternMatch.cpp | 61 EXPECT_TRUE(m_OneUse(m_Value(V)).match(One)); in TEST_F() 64 EXPECT_FALSE(m_OneUse(m_Value()).match(Two)); in TEST_F() 65 EXPECT_FALSE(m_OneUse(m_Value()).match(Leaf)); in TEST_F() 76 .match(IRB.CreateSelect(IRB.CreateFCmpOLT(L, R), L, R))); in TEST_F() 82 .match(IRB.CreateSelect(IRB.CreateFCmpOLE(L, R), L, R))); in TEST_F() 88 .match(IRB.CreateSelect(IRB.CreateFCmpOGE(L, R), L, R))); in TEST_F() 92 .match(IRB.CreateSelect(IRB.CreateFCmpOGT(L, R), L, R))); in TEST_F() 96 .match(IRB.CreateSelect(IRB.CreateFCmpOGE(L, R), R, L))); in TEST_F() 102 .match(IRB.CreateSelect(IRB.CreateFCmpOGT(L, R), R, L))); in TEST_F() 115 .match(IRB.CreateSelect(IRB.CreateFCmpOGT(L, R), L, R))); in TEST_F() [all …]
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
D | ucsdetst.c | 127 const UCharsetMatch *match; in TestUTF8() local 139 match = ucsdet_detect(csd, &status); in TestUTF8() 141 if (match == NULL) { in TestUTF8() 146 dLength = ucsdet_getUChars(match, detected, sLength, &status); in TestUTF8() 173 const UCharsetMatch *match; in TestUTF16() local 178 match = ucsdet_detect(csd, &status); in TestUTF16() 180 if (match == NULL) { in TestUTF16() 185 name = ucsdet_getName(match, &status); in TestUTF16() 186 conf = ucsdet_getConfidence(match, &status); in TestUTF16() 198 match = ucsdet_detect(csd, &status); in TestUTF16() [all …]
|
/external/icu/icu4c/source/test/cintltst/ |
D | ucsdetst.c | 127 const UCharsetMatch *match; in TestUTF8() local 139 match = ucsdet_detect(csd, &status); in TestUTF8() 141 if (match == NULL) { in TestUTF8() 146 dLength = ucsdet_getUChars(match, detected, sLength, &status); in TestUTF8() 173 const UCharsetMatch *match; in TestUTF16() local 178 match = ucsdet_detect(csd, &status); in TestUTF16() 180 if (match == NULL) { in TestUTF16() 185 name = ucsdet_getName(match, &status); in TestUTF16() 186 conf = ucsdet_getConfidence(match, &status); in TestUTF16() 198 match = ucsdet_detect(csd, &status); in TestUTF16() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | HTMLPreloadScanner.cpp | 49 static bool match(const StringImpl* impl, const QualifiedName& qName) in match() function 54 static bool match(const AtomicString& name, const QualifiedName& qName) in match() function 60 static bool match(const String& name, const QualifiedName& qName) in match() function 85 if (match(tagImpl, imgTag)) in initiatorFor() 87 if (match(tagImpl, inputTag)) in initiatorFor() 89 if (match(tagImpl, linkTag)) in initiatorFor() 91 if (match(tagImpl, scriptTag)) in initiatorFor() 118 if (match(m_tagImpl, imgTag) in StartTagScanner() 119 || match(m_tagImpl, sourceTag)) { in StartTagScanner() 124 if ( !match(m_tagImpl, inputTag) in StartTagScanner() [all …]
|
/external/chromium_org/third_party/angle/src/libEGL/ |
D | Config.cpp | 264 bool match = true; in getConfigs() local 271 …case EGL_BUFFER_SIZE: match = config->mBufferSize >= attribute[1]; … in getConfigs() 272 …case EGL_ALPHA_SIZE: match = config->mAlphaSize >= attribute[1]; … in getConfigs() 273 …case EGL_BLUE_SIZE: match = config->mBlueSize >= attribute[1]; … in getConfigs() 274 …case EGL_GREEN_SIZE: match = config->mGreenSize >= attribute[1]; … in getConfigs() 275 …case EGL_RED_SIZE: match = config->mRedSize >= attribute[1]; … in getConfigs() 276 …case EGL_DEPTH_SIZE: match = config->mDepthSize >= attribute[1]; … in getConfigs() 277 …case EGL_STENCIL_SIZE: match = config->mStencilSize >= attribute[1]; … in getConfigs() 278 …case EGL_CONFIG_CAVEAT: match = config->mConfigCaveat == (EGLenum) attribute[1]; … in getConfigs() 279 …case EGL_CONFIG_ID: match = config->mConfigID == attribute[1]; … in getConfigs() [all …]
|
/external/tcpdump/tests/ |
D | of10_s4810-vvvv.out | 110 match in_port 1 114 match in_port 1 118 match in_port 1 122 match in_port 1 127 match in_port 1 131 match in_port 1 135 match in_port 1 140 match in_port 1 141 match dl_src 00:00:00:00:00:01 145 match in_port 1 [all …]
|
/external/doclava/src/com/google/doclava/parser/ |
D | JavaLexer.java | 248 match('0'); in mIntegerNumber() 287 match('0'); in mIntegerNumber() 399 match("0x"); in mHexPrefix() 407 match("0X"); in mHexPrefix() 508 match('.'); in mNonIntegerNumber() 558 match('.'); in mNonIntegerNumber() 746 match('.'); in mNonIntegerNumber() 1055 match('\''); in mCHARLITERAL() 1118 match('\''); in mCHARLITERAL() 1141 match('\"'); in mSTRINGLITERAL() [all …]
|
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/ |
D | X509CertSelectorTest.java | 458 selector.match(cert_1) && selector.match(cert_2)); in testSetCertificate() 461 selector.match(cert_1)); in testSetCertificate() 463 selector.match(cert_2)); in testSetCertificate() 466 selector.match(cert_2)); in testSetCertificate() 502 selector.match(cert_1) && selector.match(cert_2)); in testSetSerialNumber() 505 selector.match(cert_1)); in testSetSerialNumber() 507 selector.match(cert_2)); in testSetSerialNumber() 510 selector.match(cert_2)); in testSetSerialNumber() 546 selector.match(cert_1) && selector.match(cert_2)); in testSetIssuer1() 549 selector.match(cert_1)); in testSetIssuer1() [all …]
|
/external/chromium_org/chrome/browser/autocomplete/ |
D | shortcuts_provider.cc | 44 bool operator()(const AutocompleteMatch& match) const { in operator ()() 45 return match.destination_url == url_; in operator ()() 95 void ShortcutsProvider::DeleteMatch(const AutocompleteMatch& match) { in DeleteMatch() argument 97 GURL url(match.destination_url); in DeleteMatch() 190 AutocompleteMatch match; in ShortcutToACMatch() local 191 match.provider = this; in ShortcutToACMatch() 192 match.relevance = relevance; in ShortcutToACMatch() 193 match.deletable = true; in ShortcutToACMatch() 194 match.fill_into_edit = shortcut.match_core.fill_into_edit; in ShortcutToACMatch() 195 match.destination_url = shortcut.match_core.destination_url; in ShortcutToACMatch() [all …]
|