Searched refs:match (Results 201 - 225 of 2417) sorted by relevance

1234567891011>>

/external/skia/tests/
H A DSkPEGTest.cpp54 const auto match = EOS::Match(gTests[i].fInput); local
55 REPORTER_ASSERT(r, match == gTests[i].fMatch);
56 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput : nullptr));
74 const auto match = LIT<'X'>::Match(gTests[i].fInput); local
75 REPORTER_ASSERT(r, match == gTests[i].fMatch);
76 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr));
109 const auto match = Alpha::Match(gTests[i].fInput); local
110 REPORTER_ASSERT(r, match
135 const auto match = Digit::Match(gTests[i].fInput); local
[all...]
/external/skqp/tests/
H A DSkPEGTest.cpp54 const auto match = EOS::Match(gTests[i].fInput); local
55 REPORTER_ASSERT(r, match == gTests[i].fMatch);
56 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput : nullptr));
74 const auto match = LIT<'X'>::Match(gTests[i].fInput); local
75 REPORTER_ASSERT(r, match == gTests[i].fMatch);
76 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr));
109 const auto match = Alpha::Match(gTests[i].fInput); local
110 REPORTER_ASSERT(r, match
135 const auto match = Digit::Match(gTests[i].fInput); local
[all...]
/external/tensorflow/tensorflow/python/debug/cli/
H A Devaluator.py69 device_prefix_match = re.match(_DEVICE_NAME_PREFIX_PATTERN, debug_tensor_name)
133 for match in reversed(list(dump_tensors_iter)):
134 tensor_name = match.group(0)[1:-1].strip()
148 rewritten_expression[:match.start(0)] +
150 rewritten_expression[match.end(0):])
/external/python/cpython2/Tools/bgen/bgen/
H A Dscantools.py82 <dt>incomplete match for function declaration</dt>
84 <p>The beginning of this looked promising, but it did not match a function declaration.
501 match = self.comment1.match(line)
502 if match:
504 match.start('rest'), match.end('rest'), 'notcomment')])
505 line = match.group('rest')
508 match = self.comment2.match(lin
[all...]
/external/libvpx/libvpx/examples/
H A Dvp9cx_set_ref.c78 int match = 1; local
80 match &= (img1->fmt == img2->fmt);
81 match &= (img1->d_w == img2->d_w);
82 match &= (img1->d_h == img2->d_h);
85 match &= (memcmp(img1->planes[VPX_PLANE_Y] + i * img1->stride[VPX_PLANE_Y],
90 match &= (memcmp(img1->planes[VPX_PLANE_U] + i * img1->stride[VPX_PLANE_U],
95 match &= (memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V],
99 return match;
113 int match = 1; local
116 for (i = 0, match
[all...]
/external/valgrind/tests/
H A Ds390x_features.c20 // cpu model, if specified, does not match the machine
205 unsigned long long match; local
212 match = (facilities & FAC_BIT(1)) && (facilities & FAC_BIT(2));
214 match = facilities & FAC_BIT(0);
216 match = facilities & FAC_BIT(7);
218 match = (facilities & FAC_BIT(18)) && (facilities & FAC_BIT(19));
220 match = facilities & FAC_BIT(21);
222 match = facilities & FAC_BIT(25);
224 match = facilities & FAC_BIT(34);
226 match
[all...]
/external/doclava/src/com/google/doclava/parser/
H A DJavaLexer.java248 match('0');
287 match('0');
399 match("0x");
407 match("0X");
508 match('.');
558 match('.');
746 match('.');
1055 match('\'');
1118 match('\'');
1141 match('\"');
[all...]
/external/iproute2/examples/diffserv/
H A DEdge32-ca-u3258 match ip tos 0x88 0xfc \
62 match ip tos 0x88 0xfc \
71 match ip tos 0x88 0xfc \
75 match ip tos 0x88 0xfc \
83 match ip tos 0x88 0xfc \
87 match ip tos 0x88 0xfc \
98 match ip tos 0x90 0xfc \
102 match ip tos 0x90 0xfc \
110 match ip tos 0x90 0xfc \
114 match i
[all...]
/external/autotest/client/common_lib/cros/network/
H A Dinterface.py364 match = re.search(signal_pattern, cleaned)
365 if match is not None:
366 return int(match.group(1))
394 match = re.search('mtu\s+(\d+)', address_info)
395 if not match:
397 return int(match.group(1))
443 if my_frequency_pattern.match(cleaned):
446 match = noise_pattern.match(cleaned)
447 if match i
[all...]
/external/chromium-trace/catapult/devil/devil/utils/
H A Dfind_usb_devices.py268 match = _LSUSB_BUS_DEVICE_RE.match(line)
269 if match:
270 info_map[(int(match.group(1)), int(match.group(2)))] = (
271 {'desc':match.group(3)})
280 match = _T_LINE_REGEX.match(line)
281 if match:
282 bus_num = int(match
[all...]
/external/libmojo/third_party/catapult/devil/devil/utils/
H A Dfind_usb_devices.py259 match = _LSUSB_BUS_DEVICE_RE.match(line)
260 if match:
261 info_map[(int(match.group(1)), int(match.group(2)))] = (
262 {'desc':match.group(3)})
271 match = _T_LINE_REGEX.match(line)
272 if match:
273 bus_num = int(match
[all...]
/external/autotest/client/site_tests/graphics_GLMark2/
H A Dgraphics_GLMark2.py114 match = test_re.match(line)
115 if match:
116 test = '%s.%s' % (match.group('scene'),
117 match.group('options'))
119 frame_time = match.group('frametime')
129 match = re.findall(GLMARK2_SCORE_RE, line)
130 if match:
131 score = int(match[0])
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest_xml_output_unittest.py176 match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str)
178 re.match,
181 year=int(match.group(1)), month=int(match.group(2)),
182 day=int(match.group(3)), hour=int(match.group(4)),
183 minute=int(match.group(5)), second=int(match.group(6)))
236 "'%s' exited with code %s, which doesn't match "
[all...]
/external/googletest/googletest/test/
H A Dgtest_xml_output_unittest.py189 match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str)
191 re.match,
194 year=int(match.group(1)), month=int(match.group(2)),
195 day=int(match.group(3)), hour=int(match.group(4)),
196 minute=int(match.group(5)), second=int(match.group(6)))
250 "'%s' exited with code %s, which doesn't match "
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUnescapeTransliterator.java158 // match one of the specs. Exit the outer loop if a
159 // partial match is detected and isIncremental is true.
172 boolean match = true;
178 // a partial match, so we return if in
184 match = false;
190 match = false;
195 if (match) {
200 // Check for partial match in incremental mode.
218 match = (digitCount >= minDigits);
220 if (match) {
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DUnescapeTransliterator.java157 // match one of the specs. Exit the outer loop if a
158 // partial match is detected and isIncremental is true.
171 boolean match = true;
177 // a partial match, so we return if in
183 match = false;
189 match = false;
194 if (match) {
199 // Check for partial match in incremental mode.
217 match = (digitCount >= minDigits);
219 if (match) {
[all...]
/external/libvpx/libvpx/tools/
H A Dcpplint.py390 # match those on a word boundary.
511 return _regexp_compile_cache[pattern].match(s)
1047 line = line.replace(r'\\', 'XX') # after this, \\" does not match to \"
1078 # Found the end of the string, match leading space for this
1209 if not _RE_PATTERN_INCLUDE.match(elided):
1458 '#ifndef and #define don\'t match, suggested CPP variable is: %s' %
1639 if _RE_PATTERN_INVALID_INCREMENT.match(line):
1918 _MATCH_ASM.match(line)):
2029 if _MATCH_ASM.match(line):
2209 match
[all...]
/external/v8/testing/gtest/test/
H A Dgtest_xml_output_unittest.py186 match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str)
188 re.match,
191 year=int(match.group(1)), month=int(match.group(2)),
192 day=int(match.group(3)), hour=int(match.group(4)),
193 minute=int(match.group(5)), second=int(match.group(6)))
246 "'%s' exited with code %s, which doesn't match "
[all...]
/external/valgrind/none/tests/s390x/
H A Ddfptest.c21 int match; \
27 : "=d" (match) : "f" (f), "a" (num) : "cc"); \
28 match; \
33 int match; \
39 : "=d" (match) : "f" (f), "a" (num) : "cc"); \
40 match; \
45 int match; \
51 : "=d" (match) : "f" (f), "a" (num) : "cc"); \
52 match; \
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest_xml_output_unittest.py186 match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str)
188 re.match,
191 year=int(match.group(1)), month=int(match.group(2)),
192 day=int(match.group(3)), hour=int(match.group(4)),
193 minute=int(match.group(5)), second=int(match.group(6)))
246 "'%s' exited with code %s, which doesn't match "
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCLexer.java55 match(';');
75 match('(');
95 match(',');
115 match(')');
135 match('{');
155 match('}');
175 match("for");
196 match("int");
217 match("char");
238 match("voi
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCLexer.java55 match(';');
75 match('(');
95 match(',');
115 match(')');
135 match('{');
155 match('}');
175 match("for");
196 match("int");
217 match("char");
238 match("voi
[all...]
/external/lisa/libs/utils/android/workloads/
H A Djankbench.py206 match = JANKBENCH_BENCHMARK_START_RE.search(message)
207 if match:
212 match = JANKBENCH_BENCHMARK_DONE_RE.search(message)
213 if match:
219 match = JANKBENCH_ITERATION_COUNT_RE.search(message)
220 if match:
222 int(match.group('iteration'))+1)
224 match = JANKBENCH_ITERATION_METRICS_RE.search(message)
225 if match:
227 float(match
[all...]
/external/pdfium/
H A DPRESUBMIT.py115 if c_system_include_pattern.match(line):
122 elif cpp_system_include_pattern.match(line):
130 elif custom_include_pattern.match(line):
186 if system_include_pattern.match(line):
191 match = custom_include_pattern.match(line)
192 if match:
193 match_dict = match.groupdict()
208 if uncheckable_includes_pattern.match(line):
210 if if_pattern.match(lin
[all...]
/external/autotest/server/hosts/
H A Dtestbed.py149 match = re.match(r'^(.*)-\d+$', board)
150 if match:
151 board = match.group(1)
206 match = re.match(_IMAGE_NAME_PATTERN, image)
208 if not match or (match.group(2) and match.group(3)):
213 if match
[all...]

Completed in 869 milliseconds

1234567891011>>