Home
last modified time | relevance | path

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

12345678910>>...132

/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/recipes/
Dperf.py113 match = []
116 match.append('~blurroundrect')
117 match.append('~patch_grid') # skia:2847
118 match.append('~desk_carsvg')
120 match.append('~desk_unicodetable')
122 match.append('~keymobi_shop_mobileweb_ebay_com.skp') # skia:5178
124 match.append('~blurroundrect')
125 match.append('~patch_grid') # skia:2847
126 match.append('~desk_carsvg')
127 match.append('~keymobi')
[all …]
/external/python/cpython2/Lib/test/
Dtest_re.py39 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'))
122 self.assertRaises(ValueError, re.match, pattern, 'A', re.I)
261 self.assertEqual(re.match('a', 'a').groups(), ())
262 self.assertEqual(re.match('(a)', 'a').groups(), ('a',))
263 self.assertEqual(re.match(r'(a)', 'a').group(0), 'a')
264 self.assertEqual(re.match(r'(a)', 'a').group(1), 'a')
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
Dlexer.py52 def match(self, regexp, flags=None): member in Lexer
76 match = reg.match(self.text, self.match_position)
77 if match:
78 (start, end) = match.span()
94 return match
101 match = self.match(r'#.*\n')
102 if match:
104 match = self.match(r'(\"\"\"|\'\'\'|\"|\')((?<!\\)\\\1|.)*?\1',
106 if match:
108 match = self.match(r'(%s)' % text_re)
[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 …]
/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/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/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/python/cpython2/Lib/
Dsgmllib.py125 match = interesting.search(rawdata, i)
126 if match: j = match.start()
133 if starttagopen.match(rawdata, i):
183 match = charref.match(rawdata, i)
184 if match:
185 name = match.group(1)
187 i = match.end(0)
190 match = entityref.match(rawdata, i)
191 if match:
192 name = match.group(1)
[all …]
DHTMLParser.py148 match = self.interesting.search(rawdata, i) # < or &
149 if match:
150 j = match.start()
160 if starttagopen.match(rawdata, i): # < + letter
188 match = charref.match(rawdata, i)
189 if match:
190 name = match.group()[2:-1]
192 k = match.end()
203 match = entityref.match(rawdata, i)
204 if match:
[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/swiftshader/src/OpenGL/libEGL/
DConfig.cpp363 bool match = true; in getConfigs() local
373 …case EGL_BUFFER_SIZE: match = config->mBufferSize >= attribute[1]; … in getConfigs()
374 …case EGL_ALPHA_SIZE: match = config->mAlphaSize >= attribute[1]; … in getConfigs()
375 …case EGL_BLUE_SIZE: match = config->mBlueSize >= attribute[1]; … in getConfigs()
376 …case EGL_GREEN_SIZE: match = config->mGreenSize >= attribute[1]; … in getConfigs()
377 …case EGL_RED_SIZE: match = config->mRedSize >= attribute[1]; … in getConfigs()
378 …case EGL_DEPTH_SIZE: match = config->mDepthSize >= attribute[1]; … in getConfigs()
379 …case EGL_STENCIL_SIZE: match = config->mStencilSize >= attribute[1]; … in getConfigs()
380 …case EGL_CONFIG_CAVEAT: match = config->mConfigCaveat == (EGLenum)attribute[1]; … in getConfigs()
381 …case EGL_CONFIG_ID: match = config->mConfigID == attribute[1]; … in getConfigs()
[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/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 …]

12345678910>>...132