Home
last modified time | relevance | path

Searched refs:match (Results 1 – 25 of 3039) sorted by relevance

12345678910>>...122

/external/libunwind/tests/
Dcheck-namespace.sh.in46 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/llvm/utils/
Dextract_symbols.py39 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 …]
Dschedcover.py64 match = re_sched_default.match(line)
65 if match: add(match.group(1), None, match.group(2))
66 match = re_sched_no_default.match(line)
67 if match: add(match.group(1), None)
68 match = re_sched_spec.match(line)
69 if match: add(match.group(2), match.group(1), match.group(3))
70 match = re_sched_no_default.match(line)
71 if match: add(match.group(1), None)
/external/skia/infra/bots/recipe_modules/perf/
Dapi.py91 match = []
94 match.append('~blurroundrect')
95 match.append('~patch_grid') # skia:2847
96 match.append('~desk_carsvg')
98 match.append('~desk_unicodetable')
100 match.append('~keymobi_shop_mobileweb_ebay_com.skp') # skia:5178
102 match.append('~blurroundrect')
103 match.append('~patch_grid') # skia:2847
104 match.append('~desk_carsvg')
105 match.append('~keymobi')
[all …]
/external/pcre/dist2/testdata/
Dtestoutput626 \= 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 …]
Dtestoutput114 \= Expect no match
16 No match
18 No match
95 \= Expect no match
97 No match
99 No match
101 No match
103 No match
105 No match
107 No match
[all …]
Dtestoutput416 \= Expect no match
18 No match
30 \= Expect no match
32 No match
34 No match
106 \= Expect no match
108 No match
110 No match
128 \= Expect no match
130 No match
[all …]
Dtestoutput514 \= Expect no match
16 No match
19 \= Expect no match
21 No match
23 No match
25 No match
27 No match
29 No match
32 \= Expect no match
34 No match
[all …]
Dtestoutput725 \= Expect no match
27 No match
36 \= Expect no match
38 No match
43 \= Expect no match
45 No match
47 No match
49 No match
58 \= Expect no match
60 No match
[all …]
Dtestinput112 \= Expect no match
56 \= Expect no match
67 \= Expect no match
81 \= Expect no match
94 \= Expect no match
105 \= Expect no match
113 \= Expect no match
127 \= Expect no match
137 \= Expect no match
145 \= Expect no match
[all …]
DtestoutputEBC35 No match
37 No match
55 No match
57 No match
59 No match
75 No match
77 No match
93 No match
95 No match
103 No match
[all …]
/external/autotest/tko/
Dquery_lib.py24 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/clang/unittests/AST/
DSourceLocationTest.cpp34 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/unittests/IR/
DPatternMatch.cpp61 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/icu/icu4c/source/test/cintltst/
Ducsdetst.c128 const UCharsetMatch *match; in TestUTF8() local
140 match = ucsdet_detect(csd, &status); in TestUTF8()
142 if (match == NULL) { in TestUTF8()
147 dLength = ucsdet_getUChars(match, detected, sLength, &status); in TestUTF8()
174 const UCharsetMatch *match; in TestUTF16() local
179 match = ucsdet_detect(csd, &status); in TestUTF16()
181 if (match == NULL) { in TestUTF16()
186 name = ucsdet_getName(match, &status); in TestUTF16()
187 conf = ucsdet_getConfidence(match, &status); in TestUTF16()
199 match = ucsdet_detect(csd, &status); in TestUTF16()
[all …]
/external/skia/infra/bots/recipe_modules/core/resources/
Dbinary_size_utils.py42 match = sym_re.match(line)
43 if match:
44 size, sym_type, sym = match.groups()[0:3]
48 path = match.group(4)
51 match = addr_re.match(line)
52 if match:
55 match = noaddr_re.match(line)
56 if match:
57 sym_type, sym = match.groups()
60 match = addr_only_re.match(line)
[all …]
/external/skia/tools/skpbench/
D_benchresult.py38 def match(cls, text): member in BenchResult
39 match = cls.PATTERN.search(text)
40 return cls(match) if match else None
42 def __init__(self, match): argument
43 self.accum = float(match.group('accum'))
44 self.median = float(match.group('median'))
45 self.max = float(match.group('max'))
46 self.min = float(match.group('min'))
47 self.stddev = float(match.group('stddev')[:-1]) # Drop '%' sign.
48 self.samples = int(match.group('samples'))
[all …]
/external/autotest/client/site_tests/hardware_GobiGPS/
Dhardware_GobiGPS.py57 match = re.search(
62 if match and match.group(2) == 'A' and not got_fix:
64 logging.debug('Time = %s', match.group(1))
65 logging.debug('Status = %s', match.group(2))
66 logging.debug('Latitude = %s %s', match.group(3),
67 match.group(4))
68 logging.debug('Longitude = %s %s', match.group(5),
69 match.group(6))
70 logging.debug('Speed = %s', match.group(7))
71 logging.debug('Track Angle = %s', match.group(8))
[all …]
/external/tcpdump/tests/
Dof10_s4810-vvvv.out110 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/
DJavaLexer.java248 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/swiftshader/src/OpenGL/libEGL/
DConfig.cpp355 bool match = true; in getConfigs() local
364 …case EGL_BUFFER_SIZE: match = config->mBufferSize >= attribute[1]; … in getConfigs()
365 …case EGL_ALPHA_SIZE: match = config->mAlphaSize >= attribute[1]; … in getConfigs()
366 …case EGL_BLUE_SIZE: match = config->mBlueSize >= attribute[1]; … in getConfigs()
367 …case EGL_GREEN_SIZE: match = config->mGreenSize >= attribute[1]; … in getConfigs()
368 …case EGL_RED_SIZE: match = config->mRedSize >= attribute[1]; … in getConfigs()
369 …case EGL_DEPTH_SIZE: match = config->mDepthSize >= attribute[1]; … in getConfigs()
370 …case EGL_STENCIL_SIZE: match = config->mStencilSize >= attribute[1]; … in getConfigs()
371 …case EGL_CONFIG_CAVEAT: match = config->mConfigCaveat == (EGLenum)attribute[1]; … in getConfigs()
372 …case EGL_CONFIG_ID: match = config->mConfigID == attribute[1]; … in getConfigs()
[all …]
/external/elfutils/libdw/
Ddwarf_getsrc_file.c54 Dwarf_Line **match = *nsrcs == 0 ? NULL : *srcsp; in dwarf_getsrc_file() local
118 if (match[inner]->files == line->files in dwarf_getsrc_file()
119 && match[inner]->file == line->file) in dwarf_getsrc_file()
122 && (match[inner]->line != line->line in dwarf_getsrc_file()
123 || match[inner]->line != lineno in dwarf_getsrc_file()
125 && (match[inner]->column != line->column in dwarf_getsrc_file()
126 || match[inner]->column != column)))) in dwarf_getsrc_file()
130 if (match[inner]->line >= line->line in dwarf_getsrc_file()
131 && (match[inner]->line != line->line in dwarf_getsrc_file()
132 || match[inner]->column >= line->column)) in dwarf_getsrc_file()
[all …]
/external/iptables/extensions/
Dlibxt_policy.c111 if (e->match.reqid) in policy_parse()
114 e->match.reqid = 1; in policy_parse()
119 if (e->match.spi) in policy_parse()
122 e->match.spi = 1; in policy_parse()
127 if (e->match.saddr) in policy_parse()
131 e->match.saddr = 1; in policy_parse()
137 if (e->match.daddr) in policy_parse()
140 e->match.daddr = 1; in policy_parse()
146 if (e->match.proto) in policy_parse()
154 e->match.proto = 1; in policy_parse()
[all …]
/external/smali/smali/src/main/java/org/jf/smali/
DsmaliTreeWalker.java425 match(input,I_CLASS_DEF,FOLLOW_I_CLASS_DEF_in_smali_file52); in smali_file()
426 match(input, Token.DOWN, null); in smali_file()
443 match(input, Token.UP, null); in smali_file()
566 …CLASS_DESCRIPTOR9=(CommonTree)match(input,CLASS_DESCRIPTOR,FOLLOW_CLASS_DESCRIPTOR_in_class_spec11… in class_spec()
603 match(input,I_SUPER,FOLLOW_I_SUPER_in_super_spec130); in super_spec()
604 match(input, Token.DOWN, null); in super_spec()
605 …CLASS_DESCRIPTOR11=(CommonTree)match(input,CLASS_DESCRIPTOR,FOLLOW_CLASS_DESCRIPTOR_in_super_spec1… in super_spec()
606 match(input, Token.UP, null); in super_spec()
639 match(input,I_IMPLEMENTS,FOLLOW_I_IMPLEMENTS_in_implements_spec152); in implements_spec()
640 match(input, Token.DOWN, null); in implements_spec()
[all …]
/external/llvm/unittests/Support/
DRegexTest.cpp23 EXPECT_TRUE(r1.match("916")); in TEST_F()
24 EXPECT_TRUE(r1.match("9")); in TEST_F()
25 EXPECT_FALSE(r1.match("9a")); in TEST_F()
29 EXPECT_TRUE(r2.match("aa216b", &Matches)); in TEST_F()
34 EXPECT_TRUE(r3.match("9a:513b", &Matches)); in TEST_F()
40 EXPECT_TRUE(r3.match("9:513b", &Matches)); in TEST_F()
49 EXPECT_FALSE(r4.match("abb")); in TEST_F()
50 EXPECT_TRUE(r4.match(String, &Matches)); in TEST_F()
58 EXPECT_FALSE(r5.match(String)); in TEST_F()
59 EXPECT_FALSE(r5.match("X9")); in TEST_F()
[all …]

12345678910>>...122