/external/skia/infra/bots/gen_tasks_logic/ |
D | nano_flags.go | 173 match := []string{} 176 match = append(match, "~blurroundrect") 177 match = append(match, "~patch_grid") // skia:2847 178 match = append(match, "~desk_carsvg") 181 match = append(match, "~keymobi_shop_mobileweb_ebay_com.skp") // skia:5178 184 match = append(match, "~blurroundrect") 185 match = append(match, "~patch_grid") // skia:2847 186 match = append(match, "~desk_carsvg") 187 match = append(match, "~keymobi") 188 match = append(match, "~path_hairline") [all …]
|
D | dm_flags.go | 847 match := []string{} 849 match = append(match, "~Threaded") 854 match = append(match, "~multipicturedraw_") 858 match = append(match, "~WritePixels") // skia:4711 859 match = append(match, "~PremulAlphaRoundTrip_Gpu") // skia:7501 860 match = append(match, "~ReimportImageTextureWithMipLevels") // skia:8090 861 match = append(match, "~MorphologyFilterRadiusWithMirrorCTM_Gpu") // skia:10383 865 match = append(match, "~SpecialImage") // skia:6338 866 match = append(match, "~skbug6653") // skia:6653 870 match = append(match, "~Once", "~Shared") // Not sure what's up with these tests. [all …]
|
/external/llvm-project/llvm/unittests/Support/ |
D | GlobPatternTest.cpp | 20 EXPECT_TRUE(Pat1->match("")); in TEST_F() 21 EXPECT_FALSE(Pat1->match("a")); in TEST_F() 27 EXPECT_TRUE(Pat1->match("abcdef")); in TEST_F() 28 EXPECT_TRUE(Pat1->match("abxcxdef")); in TEST_F() 29 EXPECT_FALSE(Pat1->match("")); in TEST_F() 30 EXPECT_FALSE(Pat1->match("xabcdef")); in TEST_F() 31 EXPECT_FALSE(Pat1->match("abcdefx")); in TEST_F() 37 EXPECT_TRUE(Pat1->match("axxc")); in TEST_F() 38 EXPECT_FALSE(Pat1->match("axxx")); in TEST_F() 39 EXPECT_FALSE(Pat1->match("")); in TEST_F() [all …]
|
/external/rust/crates/libz-sys/src/zlib-ng/ |
D | deflate_medium.c | 16 struct match { struct 23 static int emit_match(deflate_state *s, struct match match) { in emit_match() argument 27 if (match.match_length < MIN_MATCH) { in emit_match() 28 while (match.match_length) { in emit_match() 29 bflush += zng_tr_tally_lit(s, s->window[match.strstart]); in emit_match() 31 match.strstart++; in emit_match() 32 match.match_length--; in emit_match() 37 check_match(s, match.strstart, match.match_start, match.match_length); in emit_match() 39 …bflush += zng_tr_tally_dist(s, match.strstart - match.match_start, match.match_length - MIN_MATCH); in emit_match() 41 s->lookahead -= match.match_length; in emit_match() [all …]
|
/external/skqp/infra/bots/recipes/ |
D | perf.py | 161 match = [] 164 match.append('~blurroundrect') 165 match.append('~patch_grid') # skia:2847 166 match.append('~desk_carsvg') 168 match.append('~keymobi_shop_mobileweb_ebay_com.skp') # skia:5178 170 match.append('~blurroundrect') 171 match.append('~patch_grid') # skia:2847 172 match.append('~desk_carsvg') 173 match.append('~keymobi') 174 match.append('~path_hairline') [all …]
|
/external/linux-kselftest/tools/testing/selftests/net/ |
D | fib_rule_tests.sh | 102 local match="$1" 105 $IP -6 rule add $match table $RTABLE 109 fib_rule6_del_by_pref "$match" 110 log_test $? 0 "rule6 del by pref: $match" 118 match="oif $DEV" 119 fib_rule6_test_match_n_redirect "$match" "$match" "oif redirect to table" 121 match="from $SRC_IP6 iif $DEV" 122 fib_rule6_test_match_n_redirect "$match" "$match" "iif redirect to table" 124 match="tos 0x10" 125 fib_rule6_test_match_n_redirect "$match" "$match" "tos redirect to table" [all …]
|
/external/llvm-project/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() 78 .match(Zero)); in TEST_F() 81 .match(One)); in TEST_F() 84 .match(NegOne)); in TEST_F() 88 .match(Zero)); in TEST_F() 91 .match(One)); in TEST_F() 94 .match(NegOne)); in TEST_F() 98 .match(Zero)); in TEST_F() [all …]
|
/external/llvm-project/clang/test/OpenMP/ |
D | declare_variant_messages.cpp | 20 #pragma omp declare variant(foofoo <int>) match // expected-error {{expected '(' after 'match'}} 21 #pragma omp declare variant(foofoo <int>) match( // expected-error {{expected ')'}} expected-warnin… 22 #pragma omp declare variant(foofoo <int>) match() // expected-warning {{expected identifier or stri… 23 #pragma omp declare variant(foofoo <int>) match(implementation) // expected-warning {{expected '=' … 24 #pragma omp declare variant(foofoo <int>) match(implementation =) // expected-warning {{expected '{… 25 #pragma omp declare variant(foofoo <int>) match(implementation = yyy) // expected-warning {{expecte… 26 #pragma omp declare variant(foofoo <int>) match(implementation = yyy }) // expected-warning {{expec… 27 #pragma omp declare variant(foofoo <int>) match(implementation = {) // expected-warning {{expected … 28 #pragma omp declare variant(foofoo <int>) match(implementation = {}) // expected-warning {{expected… 29 #pragma omp declare variant(foofoo <int>) match(implementation = {vvv, vvv}) // expected-warning {{… [all …]
|
D | declare_variant_messages.c | 17 #pragma omp declare variant(foo) match // expected-error {{expected '(' after 'match'}} 18 #pragma omp declare variant(foo) match( // expected-error {{expected ')'}} expected-warning {{expec… 19 #pragma omp declare variant(foo) match() // expected-warning {{expected identifier or string litera… 20 #pragma omp declare variant(foo) match(xxx) // expected-warning {{'xxx' is not a valid context set … 21 #pragma omp declare variant(foo) match(xxx=) // expected-warning {{'xxx' is not a valid context set… 22 #pragma omp declare variant(foo) match(xxx=yyy) // expected-warning {{'xxx' is not a valid context … 23 #pragma omp declare variant(foo) match(xxx=yyy}) // expected-error {{expected ')'}} expected-warnin… 24 #pragma omp declare variant(foo) match(xxx={) // expected-error {{expected ')'}} expected-warning {… 25 #pragma omp declare variant(foo) match(xxx={}) // expected-warning {{'xxx' is not a valid context s… 26 #pragma omp declare variant(foo) match(xxx={vvv, vvv}) // expected-warning {{'xxx' is not a valid c… [all …]
|
D | declare_variant_ast_print.cpp | 24 #pragma omp declare variant(foofoo <int>) match(xxx = {}) 25 #pragma omp declare variant(foofoo <int>) match(xxx = {vvv}) 26 #pragma omp declare variant(foofoo <int>) match(implementation = {vendor(score(0): "llvm"), xxx}, d… 27 #pragma omp declare variant(foofoo <int>) match(implementation = {vendor("unknown")}) 28 #pragma omp declare variant(foofoo <int>) match(implementation = {vendor(score(5): ibm)}, device = … 37 #pragma omp declare variant(foofoo <T>) match(xxx = {}) 38 #pragma omp declare variant(foofoo <T>) match(xxx = {vvv}) 39 #pragma omp declare variant(foofoo <T>) match(user = {score(1 * 1 + 1) : condition(100 > 10 + 2)}) 40 #pragma omp declare variant(foofoo <T>) match(user = {score(0) : condition(0)}) 41 #pragma omp declare variant(foofoo <T>) match(user = {condition(true)}) [all …]
|
/external/llvm-project/llvm/utils/ |
D | extract_symbols.py | 39 match = re.match("^.+SECT.+External\s+\|\s+(\S+).*$", line) 40 if match: 41 yield match.group(1) 56 match = re.match("^(\S+)\s+[BDGRSTVW]\s+\S+\s+\S+$", line) 57 if match: 58 yield match.group(1) 71 match = re.search('Name: (\S+)', line) 72 if match: 73 name = match.group(1) 74 match = re.search('Section: (\S+)', line) [all …]
|
D | schedcover.py | 71 match = re_sched_default.match(line) 72 if match: add(match.group(1), "default", match.group(2)) 73 match = re_sched_no_default.match(line) 74 if match: add(match.group(1), "default") 75 match = re_sched_spec.match(line) 76 if match: add(match.group(2), match.group(1), match.group(3)) 77 match = re_sched_no_spec.match(line) 78 if match: add(match.group(1), match.group(2)) 79 match = re_sched_itin.match(line) 80 if match: add(match.group(1), "itinerary", match.group(2))
|
/external/llvm/utils/ |
D | extract_symbols.py | 39 match = re.match("^.+SECT.+External\s+\|\s+(\S+).*$", line) 40 if match: 41 yield match.group(1) 51 match = re.match("^\S+\s+[BDGRSTVW]\s+(\S+)$", line) 52 if match: 53 yield match.group(1) 66 match = re.search('Name: (\S+)', line) 67 if match: 68 name = match.group(1) 69 match = re.search('Section: (\S+)', line) [all …]
|
/external/tensorflow/tensorflow/core/platform/ |
D | scanner_test.cc | 39 StringPiece remaining, match; in TEST_F() local 44 .GetResult(&remaining, &match)); in TEST_F() 45 EXPECT_EQ(" horse", match); in TEST_F() 52 .GetResult(&remaining, &match)); in TEST_F() 54 EXPECT_EQ("", match); in TEST_F() 60 .GetResult(&remaining, &match)); in TEST_F() 62 EXPECT_EQ("", match); in TEST_F() 66 StringPiece remaining, match; in TEST_F() local 71 .GetResult(&remaining, &match)); in TEST_F() 72 EXPECT_EQ(" a ", match); in TEST_F() [all …]
|
/external/ltp/lib/ |
D | tst_kconfig.c | 87 struct match { struct 93 int match; argument 117 static inline int match(struct match *match, const char *conf, in match() argument 120 if (match->match) in match() 128 if (strncmp(cfg, conf, match->len)) in match() 131 const char *val = &cfg[match->len]; in match() 133 switch (cfg[match->len]) { in match() 138 result->match = 'n'; in match() 139 goto match; in match() 147 result->match = 'y'; in match() [all …]
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | log-parser.py | 96 match = re.search(compute_match, line) 97 if match is not None: 104 match = re.search(gmem_start_match, line) 105 if match is not None: 112 gmem.cleared = match.group(1) 113 gmem.gmem_reason = match.group(2) 114 gmem.num_draws = match.group(3) 115 gmem.samples = match.group(4) 118 match = re.search(gmem_match, line) 119 if match is not None: [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_re.py | 39 self.assertEqual(re.match('a*', 'xxx').span(0), (0, 0)) 40 self.assertEqual(re.match('a*', 'xxx').span(), (0, 0)) 41 self.assertEqual(re.match('x*', 'xxxa').span(0), (0, 3)) 42 self.assertEqual(re.match('x*', 'xxxa').span(), (0, 3)) 43 self.assertIsNone(re.match('a+', 'xxx')) 124 self.assertRaises(ValueError, re.match, pattern, 'A', re.I) 284 self.assertEqual(re.match('a', 'a').groups(), ()) 285 self.assertEqual(re.match('(a)', 'a').groups(), ('a',)) 286 self.assertEqual(re.match(r'(a)', 'a').group(0), 'a') 287 self.assertEqual(re.match(r'(a)', 'a').group(1), 'a') [all …]
|
/external/autotest/tko/ |
D | query_lib.py | 24 match = re.match(r'^(.+)[|](.+)$', condition) 25 if match: 26 (a_sql, a_values) = me(match.group(1), valid_field_dict) 27 (b_sql, b_values) = me(match.group(2), valid_field_dict) 32 match = re.match(r'^(.+)[&](.+)$', condition) 33 if match: 34 (a_sql, a_values) = me(match.group(1), valid_field_dict) 35 (b_sql, b_values) = me(match.group(2), valid_field_dict) 45 match = re.match(regex, condition) 46 if match: [all …]
|
/external/pcre/dist2/testdata/ |
D | testoutput6 | 26 \= Expect no match 28 No match 30 No match 81 \= Expect no match 83 No match 85 No match 92 \= Expect no match 94 No match 99 \= Expect no match 101 No match [all …]
|
/external/llvm-project/clang/unittests/AST/ |
D | SourceLocationTest.cpp | 36 EXPECT_FALSE(Verifier.match("int i", varDecl())); in TEST() 42 EXPECT_FALSE(Verifier.match("int i;", recordDecl())); in TEST() 48 EXPECT_FALSE(Verifier.match("int i;", varDecl())); in TEST() 54 EXPECT_FALSE(Verifier.match("int i;", varDecl())); in TEST() 60 EXPECT_FALSE(Verifier.match("int i;", varDecl())); in TEST() 112 EXPECT_TRUE(Verifier.match("void f() { while(true/*some comment*/) {} }", in TEST() 126 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt())); in TEST() 132 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt())); in TEST() 138 EXPECT_TRUE(Verifier.match("void f(i) {}", varDecl(), Lang_C99)); in TEST() 144 EXPECT_TRUE(Verifier.match("void f(i) {}", varDecl(), Lang_C99)); in TEST() [all …]
|
/external/fmtlib/support/ |
D | C++.sublime-syntax | 86 - match: \boperator\b 90 - match: \b({{modifiers}})\b 94 - match: \bthis\b 97 - match: '\b(f|m)[[:upper:]]\w*\b' 100 - match: '\bm_[[:alnum:]_]+\b' 104 - match: \bnullptr\b 108 - match: \busing\b 110 - match: \bbreak\b 112 - match: \bcontinue\b 114 - match: \bgoto\b [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]; }", cxxNewExpr())); in TEST() [all …]
|
/external/llvm-project/clang/unittests/Analysis/ |
D | ExprMutationAnalyzerTest.cpp | 111 match(withEnclosingCompound(declRefTo("x")), AST->getASTContext()); in TEST() 128 match(withEnclosingCompound(declRefTo("x")), AST->getASTContext()); in TEST_P() 137 match(withEnclosingCompound(declRefTo("x")), AST->getASTContext()); in TEST_P() 147 match(withEnclosingCompound(declRefTo("x")), AST->getASTContext()); in TEST_P() 158 match(withEnclosingCompound(declRefTo("x")), AST->getASTContext()); in TEST_P() 168 match(withEnclosingCompound(declRefTo("x")), AST->getASTContext()); in TEST_P() 180 match(withEnclosingCompound(declRefTo("x")), AST->getASTContext()); in TEST_P() 191 match(withEnclosingCompound(declRefTo("x")), AST->getASTContext()); in TEST_P() 201 match(withEnclosingCompound(declRefTo("x")), AST->getASTContext()); in TEST_P() 219 match(withEnclosingCompound(declRefTo("x")), AST->getASTContext()); in TEST() [all …]
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | SWITCH.java | 29 private int[] match; field in SWITCH 50 …public SWITCH(final int[] match, final InstructionHandle[] targets, final InstructionHandle target… in SWITCH() argument 51 this.match = match.clone(); in SWITCH() 53 if ((match_length = match.length) < 2) { in SWITCH() 54 instruction = new TABLESWITCH(match, targets, target); in SWITCH() 59 instruction = new TABLESWITCH(this.match, this.targets, target); in SWITCH() 61 instruction = new LOOKUPSWITCH(this.match, this.targets, target); in SWITCH() 67 …public SWITCH(final int[] match, final InstructionHandle[] targets, final InstructionHandle target… in SWITCH() argument 68 this(match, targets, target, 1); in SWITCH() 77 m_vec[0] = match[0]; in fillup() [all …]
|
/external/libkmsxx/scripts/ |
D | dmt.py | 19 match = re.search(regex, line) 20 if match != None: 21 m[key] = int(match.group(1), base) 27 match = re.search(regex, line) 28 if match != None: 29 m[key] = float(match.group(1)) 62 match = re.search("Timing Name\s+=\s+([^;]+)", line) variable 63 if match != None: 64 m["name"] = str.strip(match.group(1)) 79 match = re.search("Scan Type\s+=\s+(\w+);", line) variable [all …]
|