Searched refs:matched (Results 1 - 25 of 165) sorted by relevance

1234567

/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dfind_match_length.h32 int matched = 0; local
36 BROTLI_UNALIGNED_LOAD64(s1 + matched))) {
38 matched += 8;
41 BROTLI_UNALIGNED_LOAD64(s2) ^ BROTLI_UNALIGNED_LOAD64(s1 + matched);
43 matched += matching_bits >> 3;
44 return matched;
49 if (PREDICT_TRUE(s1[matched] == *s2)) {
51 ++matched;
53 return matched;
56 return matched;
[all...]
/external/chromium_org/tools/gyp/test/analyzer/
H A Dgyptest-analyzer.py72 def EnsureContains(targets=set(), matched=False, build_targets=set()):
94 if matched and result['status'] != found:
97 elif not matched and result['status'] != not_found:
168 EnsureContains(matched=True, build_targets={'exe'})
173 EnsureContains(matched=False)
178 EnsureContains(matched=True, build_targets={'exe'})
193 EnsureContains(matched=True, build_targets={'exe', 'exe3'})
198 EnsureContains(matched=True, build_targets={'exe'})
203 EnsureContains(matched=False)
208 EnsureContains(matched
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
H A Dinet_aton.c16 int matched = sscanf(cp, "%u.%u.%u.%u%n", &p1, &p2, &p3, &p4, local
19 if (strlen(cp) == consumed && matched == 4) {
27 matched = sscanf(cp, "%u.%u.%u%n", &p1, &p2, &p3, &consumed);
28 if (strlen(cp) == consumed && matched == 3) {
36 matched = sscanf(cp, "%u.%u%n", &p1, &p2, &consumed);
37 if (strlen(cp) == consumed && matched == 2) {
45 matched = sscanf(cp, "%u%n", &p1, &consumed);
46 if (strlen(cp) == consumed && matched == 1) {
/external/libcxx/test/re/re.submatch/re.submatch.members/
H A Ddefault.pass.cpp25 assert(sm.matched == false);
31 assert(sm.matched == false);
H A Dlength.pass.cpp29 sm.matched = true;
40 sm.matched = true;
H A Dcompare_sub_match.pass.cpp30 sm.matched = true;
34 sm2.matched = true;
46 sm.matched = true;
50 sm2.matched = true;
/external/libcxx/test/re/re.results/re.results.acc/
H A Dindex.pass.cpp28 assert(m[0].matched == true);
32 assert(m[1].matched == true);
36 assert(m[2].matched == true);
40 assert(m[3].matched == false);
44 assert(m[4].matched == false);
H A Dprefix.pass.cpp28 assert(m.prefix().matched == true);
H A Dsuffix.pass.cpp28 assert(m.suffix().matched == true);
/external/vixl/tools/
H A Dgenerate_simulator_traces.py66 matched = 0 variable
71 if line.strip() == marker[matched]:
72 matched = matched + 1 variable
73 if matched == len(marker):
77 matched = 0 variable
80 if matched != len(marker):
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
H A Dgenversion.c39 int major, minor, subminor, patchlevel, matched; local
46 matched = sscanf(PACKAGE_VERSION, "%d.%d.%d.%d", &major, &minor, &subminor,
49 if (matched == 3)
51 else if (matched != 4) {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
H A Ddiff_parser.py59 conversion_patterns = (("^diff --git \w/(.+) \w/(?P<FilePath>.+)", lambda matched: "Index: " + matched.group('FilePath') + "\n"),
60 ("^new file.*", lambda matched: "\n"),
61 ("^index (([0-9a-f]{7}\.\.[0-9a-f]{7})|([0-9a-f]{40}\.\.[0-9a-f]{40})) [0-9]{6}", lambda matched: "===================================================================\n"),
62 ("^--- \w/(?P<FilePath>.+)", lambda matched: "--- " + matched.group('FilePath') + "\n"),
63 ("^\+\+\+ \w/(?P<FilePath>.+)", lambda matched: "+++ " + matched.group('FilePath') + "\n"))
66 matched = match(pattern, line)
67 if matched
[all...]
/external/libcxx/test/re/re.def/defns.regex.matched/
H A DAndroid.mk17 test_makefile := external/libcxx/test/re/re.def/defns.regex.matched/Android.mk
19 test_name := re/re.def/defns.regex.matched/nothing_to_do
/external/chromium-trace/trace-viewer/src/tracing/
H A Dfilter_test.js85 var matched = tracing.filterSliceArray(filter, slices);
86 assertEquals(3, matched.length);
87 assertEquals('ba', matched[0].title);
88 assertEquals('ab', matched[1].title);
89 assertEquals('axa', matched[2].title);
100 var matched = tracing.filterCounterArray(filter, counters);
101 assertEquals(3, matched.length);
102 assertEquals('ba', matched[0].name);
103 assertEquals('ab', matched[1].name);
104 assertEquals('axa', matched[
[all...]
H A Dfilter.js13 var matched = [];
16 matched.push(slices[i]);
18 return matched;
25 var matched = [];
28 matched.push(counters[i]);
30 return matched;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Dxcodeproj.py41 matched = self._development_region_regex.search(line)
42 if not matched:
44 if matched.group('region') != 'English':
/external/chromium_org/third_party/skia/expectations/gm/
H A Dloader.js31 var matched = imageNameRegex.exec(imageName);
40 test: matched[1], config: matched[2],
/external/lldb/examples/python/
H A Djump.py20 matched = False
22 if (not matched):
25 matched = True
34 if (not matched):
37 matched = True
46 if (not matched):
49 matched = True
58 if (not matched):
61 matched = True
67 if (not matched)
[all...]
/external/skia/expectations/gm/
H A Dloader.js31 var matched = imageNameRegex.exec(imageName);
40 test: matched[1], config: matched[2],
/external/libcxx/test/re/re.alg/re.alg.search/
H A Dgrep.pass.cpp32 assert(!m.prefix().matched);
35 assert(!m.suffix().matched);
48 assert(!m.prefix().matched);
51 assert(m.suffix().matched);
H A Degrep.pass.cpp32 assert(!m.prefix().matched);
35 assert(!m.suffix().matched);
48 assert(!m.prefix().matched);
51 assert(m.suffix().matched);
64 assert(!m.prefix().matched);
67 assert(!m.suffix().matched);
80 assert(!m.prefix().matched);
83 assert(!m.suffix().matched);
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTScanner.cpp59 bool matched;
61 matched = WTF::equal(m_data.characters8, characters, charactersCount);
63 matched = WTF::equal(m_data.characters16, characters, charactersCount);
64 if (matched)
66 return matched;
78 bool matched;
80 matched = WTF::equal(toMatch.impl(), m_data.characters8, matchLength);
82 matched = WTF::equal(toMatch.impl(), m_data.characters16, matchLength);
83 if (matched)
85 return matched;
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cc136 DPrintf("ThreadSanitizer: matched suppression '%s'\n", s->templ);
157 DPrintf("ThreadSanitizer: matched suppression '%s'\n", s->templ);
167 InternalMmapVector<Suppression *> matched(1);
168 g_ctx->GetMatched(&matched);
169 if (!matched.size())
172 for (uptr i = 0; i < matched.size(); i++)
173 hit_count += matched[i]->hit_count;
176 for (uptr i = 0; i < matched.size(); i++) {
177 Printf("%d %s:%s\n", matched[i]->hit_count,
178 SuppressionTypeString(matched[
[all...]
/external/libcxx/test/re/re.alg/re.alg.match/
H A Degrep.pass.cpp32 assert(!m.prefix().matched);
35 assert(!m.suffix().matched);
55 assert(!m.prefix().matched);
58 assert(!m.suffix().matched);
71 assert(!m.prefix().matched);
74 assert(!m.suffix().matched);
H A Dgrep.pass.cpp32 assert(!m.prefix().matched);
35 assert(!m.suffix().matched);

Completed in 662 milliseconds

1234567