Home
last modified time | relevance | path

Searched refs:matched (Results 1 – 25 of 362) sorted by relevance

12345678910>>...15

/external/chromium_org/tools/gyp/test/analyzer/
Dgyptest-analyzer.py72 def EnsureContains(targets=set(), matched=False, build_targets=set()): argument
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=True, build_targets={'exe'})
[all …]
/external/chromium_org/third_party/brotli/src/brotli/enc/
Dfind_match_length.h32 int matched = 0; in FindMatchLengthWithLimit() local
36 BROTLI_UNALIGNED_LOAD64(s1 + matched))) { in FindMatchLengthWithLimit()
38 matched += 8; in FindMatchLengthWithLimit()
41 BROTLI_UNALIGNED_LOAD64(s2) ^ BROTLI_UNALIGNED_LOAD64(s1 + matched); in FindMatchLengthWithLimit()
43 matched += matching_bits >> 3; in FindMatchLengthWithLimit()
44 return matched; in FindMatchLengthWithLimit()
49 if (PREDICT_TRUE(s1[matched] == *s2)) { in FindMatchLengthWithLimit()
51 ++matched; in FindMatchLengthWithLimit()
53 return matched; in FindMatchLengthWithLimit()
56 return matched; in FindMatchLengthWithLimit()
[all …]
/external/libcxx/test/re/re.alg/re.alg.search/
Decma.pass.cpp32 assert(!m.prefix().matched); in main()
35 assert(!m.suffix().matched); in main()
47 assert(!m.prefix().matched); in main()
50 assert(!m.suffix().matched); in main()
69 assert(m.prefix().matched); in main()
72 assert(!m.suffix().matched); in main()
91 assert(m.prefix().matched); in main()
94 assert(m.suffix().matched); in main()
106 assert(!m.prefix().matched); in main()
109 assert(!m.suffix().matched); in main()
[all …]
Dbasic.pass.cpp38 assert(!m.prefix().matched); in main()
41 assert(!m.suffix().matched); in main()
53 assert(!m.prefix().matched); in main()
56 assert(!m.suffix().matched); in main()
75 assert(m.prefix().matched); in main()
78 assert(!m.suffix().matched); in main()
97 assert(m.prefix().matched); in main()
100 assert(m.suffix().matched); in main()
112 assert(!m.prefix().matched); in main()
115 assert(!m.suffix().matched); in main()
[all …]
Dawk.pass.cpp32 assert(!m.prefix().matched); in main()
35 assert(!m.suffix().matched); in main()
47 assert(!m.prefix().matched); in main()
50 assert(!m.suffix().matched); in main()
69 assert(m.prefix().matched); in main()
72 assert(!m.suffix().matched); in main()
91 assert(m.prefix().matched); in main()
94 assert(m.suffix().matched); in main()
106 assert(!m.prefix().matched); in main()
109 assert(!m.suffix().matched); in main()
[all …]
Dextended.pass.cpp32 assert(!m.prefix().matched); in main()
35 assert(!m.suffix().matched); in main()
47 assert(!m.prefix().matched); in main()
50 assert(!m.suffix().matched); in main()
69 assert(m.prefix().matched); in main()
72 assert(!m.suffix().matched); in main()
91 assert(m.prefix().matched); in main()
94 assert(m.suffix().matched); in main()
106 assert(!m.prefix().matched); in main()
109 assert(!m.suffix().matched); in main()
[all …]
Degrep.pass.cpp32 assert(!m.prefix().matched); in main()
35 assert(!m.suffix().matched); in main()
48 assert(!m.prefix().matched); in main()
51 assert(m.suffix().matched); in main()
64 assert(!m.prefix().matched); in main()
67 assert(!m.suffix().matched); in main()
80 assert(!m.prefix().matched); in main()
83 assert(!m.suffix().matched); in main()
/external/libcxx/test/re/re.alg/re.alg.match/
Decma.pass.cpp32 assert(!m.prefix().matched); in main()
35 assert(!m.suffix().matched); in main()
47 assert(!m.prefix().matched); in main()
50 assert(!m.suffix().matched); in main()
88 assert(!m.prefix().matched); in main()
91 assert(!m.suffix().matched); in main()
103 assert(!m.prefix().matched); in main()
106 assert(!m.suffix().matched); in main()
127 assert(!m.prefix().matched); in main()
130 assert(!m.suffix().matched); in main()
[all …]
Dextended.pass.cpp32 assert(!m.prefix().matched); in main()
35 assert(!m.suffix().matched); in main()
47 assert(!m.prefix().matched); in main()
50 assert(!m.suffix().matched); in main()
88 assert(!m.prefix().matched); in main()
91 assert(!m.suffix().matched); in main()
103 assert(!m.prefix().matched); in main()
106 assert(!m.suffix().matched); in main()
128 assert(!m.prefix().matched); in main()
131 assert(!m.suffix().matched); in main()
[all …]
Dbasic.pass.cpp38 assert(!m.prefix().matched); in main()
41 assert(!m.suffix().matched); in main()
53 assert(!m.prefix().matched); in main()
56 assert(!m.suffix().matched); in main()
94 assert(!m.prefix().matched); in main()
97 assert(!m.suffix().matched); in main()
109 assert(!m.prefix().matched); in main()
112 assert(!m.suffix().matched); in main()
134 assert(!m.prefix().matched); in main()
137 assert(!m.suffix().matched); in main()
[all …]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
Ddiff_parser.py59 …atterns = (("^diff --git \w/(.+) \w/(?P<FilePath>.+)", lambda matched: "Index: " + matched.group('…
60 ("^new file.*", lambda matched: "\n"),
61 …-f]{7}\.\.[0-9a-f]{7})|([0-9a-f]{40}\.\.[0-9a-f]{40})) [0-9]{6}", lambda matched: "===============…
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:
68 return conversion(matched)
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
Dinet_aton.c16 int matched = sscanf(cp, "%u.%u.%u.%u%n", &p1, &p2, &p3, &p4, in inet_aton() local
19 if (strlen(cp) == consumed && matched == 4) { in inet_aton()
27 matched = sscanf(cp, "%u.%u.%u%n", &p1, &p2, &p3, &consumed); in inet_aton()
28 if (strlen(cp) == consumed && matched == 3) { in inet_aton()
36 matched = sscanf(cp, "%u.%u%n", &p1, &p2, &consumed); in inet_aton()
37 if (strlen(cp) == consumed && matched == 2) { in inet_aton()
45 matched = sscanf(cp, "%u%n", &p1, &consumed); in inet_aton()
46 if (strlen(cp) == consumed && matched == 1) { in inet_aton()
/external/lldb/examples/python/
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/chromium-trace/trace-viewer/src/tracing/
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[2].name);
Dfilter.js13 var matched = [];
16 matched.push(slices[i]);
18 return matched;
25 var matched = [];
28 matched.push(counters[i]);
30 return matched;
/external/vixl/tools/
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/WebKit/Source/core/html/track/vtt/
DVTTScanner.cpp59 bool matched; in scan() local
61 matched = WTF::equal(m_data.characters8, characters, charactersCount); in scan()
63 matched = WTF::equal(m_data.characters16, characters, charactersCount); in scan()
64 if (matched) in scan()
66 return matched; in scan()
78 bool matched; in scanRun() local
80 matched = WTF::equal(toMatch.impl(), m_data.characters8, matchLength); in scanRun()
82 matched = WTF::equal(toMatch.impl(), m_data.characters16, matchLength); in scanRun()
83 if (matched) in scanRun()
85 return matched; in scanRun()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
Dcpp.py178 matched = search(pattern, s)
179 if not matched:
181 start_match_index = matched.start(0)
182 end_match_index = matched.end(0)
1284 matched = match(expr_enum_start + r'$', line)
1285 if matched:
1288 matched = match(expr_enum_start + r'(?P<members>.*)' + expr_enum_end + r'$', line)
1289 if matched:
1290 members = matched.group('members').split(',')
1505 matched = search(pattern, line)
[all …]
/external/compiler-rt/lib/tsan/rtl/
Dtsan_suppressions.cc167 InternalMmapVector<Suppression *> matched(1); in PrintMatchedSuppressions() local
168 g_ctx->GetMatched(&matched); in PrintMatchedSuppressions()
169 if (!matched.size()) in PrintMatchedSuppressions()
172 for (uptr i = 0; i < matched.size(); i++) in PrintMatchedSuppressions()
173 hit_count += matched[i]->hit_count; in PrintMatchedSuppressions()
176 for (uptr i = 0; i < matched.size(); i++) { in PrintMatchedSuppressions()
177 Printf("%d %s:%s\n", matched[i]->hit_count, in PrintMatchedSuppressions()
178 SuppressionTypeString(matched[i]->type), matched[i]->templ); in PrintMatchedSuppressions()
/external/libcxx/test/re/re.results/re.results.acc/
Dindex.pass.cpp28 assert(m[0].matched == true); in test()
32 assert(m[1].matched == true); in test()
36 assert(m[2].matched == true); in test()
40 assert(m[3].matched == false); in test()
44 assert(m[4].matched == false); in test()
/external/chromium_org/tools/find_runtime_symbols/
Dstatic_symbols.py176 matched = _READELF_SECTION_HEADER_PATTER.match(line)
177 if matched:
179 int(matched.group(1), 10), # number
180 matched.group(2), # name
181 matched.group(3), # stype
182 int(matched.group(4), 16), # address
183 int(matched.group(5), 16), # offset
184 int(matched.group(6), 16), # size
185 matched.group(7), # es
186 matched.group(8), # flg
[all …]
/external/chromium_org/tools/deep_memory_profiler/lib/
Ddeep_dump.py72 matched = self._PATH_PATTERN.match(path)
73 self._pid = int(matched.group(2))
74 self._count = int(matched.group(3))
317 matched = self._HOOK_PATTERN.match(self._lines[ln])
318 if not matched:
324 if matched.group(7) == 'hooked':
325 submatched = self._HOOKED_PATTERN.match(matched.group(8))
327 submatched = self._OLD_HOOKED_PATTERN.match(matched.group(8))
328 elif matched.group(7) == 'unhooked':
329 submatched = self._UNHOOKED_PATTERN.match(matched.group(8))
[all …]
/external/chromium_org/third_party/re2/re2/testing/
Ddfa_test.cc208 bool matched, failed = false; in TEST() local
209 matched = prog->SearchDFA(match, NULL, in TEST()
213 CHECK(matched); in TEST()
214 matched = prog->SearchDFA(no_match, NULL, in TEST()
218 CHECK(!matched); in TEST()
243 bool matched, failed = false; in Run() local
244 matched = prog_->SearchDFA(match_, NULL, in Run()
248 CHECK(matched); in Run()
249 matched = prog_->SearchDFA(no_match_, NULL, in Run()
253 CHECK(!matched); in Run()
[all …]
/external/regex-re2/re2/testing/
Ddfa_test.cc208 bool matched, failed = false; in TEST() local
209 matched = prog->SearchDFA(match, NULL, in TEST()
213 CHECK(matched); in TEST()
214 matched = prog->SearchDFA(no_match, NULL, in TEST()
218 CHECK(!matched); in TEST()
243 bool matched, failed = false; in Run() local
244 matched = prog_->SearchDFA(match_, NULL, in Run()
248 CHECK(matched); in Run()
249 matched = prog_->SearchDFA(no_match_, NULL, in Run()
253 CHECK(!matched); in Run()
[all …]
/external/llvm/test/FileCheck/
Dcheck-dag-substring-prefix.txt3 this is the string to be matched
4 this should also be matched
6 ; BAA-DAG: this is the string to be {{matched}}
7 ; BAA-DAG: this should also be {{matched}}

12345678910>>...15