HomeSort by relevance Sort by last modified time
    Searched refs:matched (Results 1 - 25 of 286) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/brotli/src/brotli/enc/
find_match_length.h 32 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/native_client_sdk/src/libraries/nacl_io/syscalls/
inet_aton.c 16 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/
default.pass.cpp 25 assert(sm.matched == false);
31 assert(sm.matched == false);
length.pass.cpp 29 sm.matched = true;
40 sm.matched = true;
compare_sub_match.pass.cpp 30 sm.matched = true;
34 sm2.matched = true;
46 sm.matched = true;
50 sm2.matched = true;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.members/
default.pass.cpp 25 assert(sm.matched == false);
31 assert(sm.matched == false);
length.pass.cpp 29 sm.matched = true;
40 sm.matched = true;
compare_sub_match.pass.cpp 30 sm.matched = true;
34 sm2.matched = true;
46 sm.matched = true;
50 sm2.matched = true;
  /external/libcxx/test/re/re.results/re.results.acc/
index.pass.cpp 28 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);
prefix.pass.cpp 28 assert(m.prefix().matched == true);
suffix.pass.cpp 28 assert(m.suffix().matched == true);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.acc/
index.pass.cpp 28 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);
prefix.pass.cpp 28 assert(m.prefix().matched == true);
suffix.pass.cpp 28 assert(m.suffix().matched == true);
  /external/vixl/tools/
generate_simulator_traces.py 66 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):
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/util/
SearchUtilTest.java 33 SearchUtil.MatchedLine matched = SearchUtil.findMatchingLine(actual, "poten"); local
34 assertEquals("With potentially many lines.", matched.line);
35 assertEquals(5, matched.startIndex);
38 matched = SearchUtil.findMatchingLine(actual, "hello");
39 assertEquals("hello", matched.line);
40 assertEquals(0, matched.startIndex);
43 matched = SearchUtil.findMatchingLine(actual, "this");
44 assertEquals("this is a long test string.", matched.line);
45 assertEquals(0, matched.startIndex);
48 matched = SearchUtil.findMatchingLine(actual, "punc")
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
genversion.c 39 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/libcxx/test/re/re.def/defns.regex.matched/
Android.mk 17 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_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
xcodeproj.py 41 matched = self._development_region_regex.search(line)
42 if not matched:
44 if matched.group('region') != 'English':
  /external/lldb/examples/python/
jump.py 20 matched = False
22 if (not matched):
25 matched = True
26 #print "Matched <linenum>"
34 if (not matched):
37 matched = True
38 #print "Matched +<count>"
46 if (not matched):
49 matched = True
50 #print "Matched -<count>
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
diff_parser.py 59 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.alg/re.alg.search/
grep.pass.cpp 32 assert(!m.prefix().matched);
35 assert(!m.suffix().matched);
48 assert(!m.prefix().matched);
51 assert(m.suffix().matched);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/
grep.pass.cpp 32 assert(!m.prefix().matched);
35 assert(!m.suffix().matched);
48 assert(!m.prefix().matched);
51 assert(m.suffix().matched);
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTScanner.cpp 59 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/
tsan_suppressions.cc 136 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;
174 Printf("ThreadSanitizer: Matched %d suppressions (pid=%d):\n", hit_count,
176 for (uptr i = 0; i < matched.size(); i++) {
177 Printf("%d %s:%s\n", matched[i]->hit_count
    [all...]

Completed in 584 milliseconds

1 2 3 4 5 6 7 8 91011>>