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

1 2 3 4 5

  /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/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/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/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/sqlite/android/
OldPhoneNumberUtils.cpp 198 int matched; local
216 matched = 0;
242 ia--; ib--; matched++;
246 if (matched < MIN_MATCH) {
250 // if the number of dialable chars in a and b match, but the matched chars < MIN_MATCH,
252 if (effectiveALen == effectiveBLen && effectiveALen == matched) {
259 // At least one string has matched completely;
260 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
SearchUtil.java 50 final MatchedLine matched = new MatchedLine(); local
71 matched.line = contents.substring(start + 1, end);
72 matched.startIndex = index - (start + 1);
74 return matched;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.cpp 224 const bool matched = (currentCodePoints[j] == baseLowerC local
226 if (matched) {
239 const bool matched = (currentCodePoints[j] == baseLowerC local
241 if (matched) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/content/
shortcut_dict_content.cpp 162 bool matched = true; local
165 matched = false;
169 if (matched) {
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
pcy_tree.c 315 int i, matched = 0; local
324 matched = 1;
327 if (!matched && last->anyPolicy)
413 /* If no policy mapping: matched if one child present */
422 /* If mapping: matched if one child per expected policy set */
  /external/chromium_org/third_party/re2/re2/
bitstate.cc 143 bool matched = false; local
268 matched = true;
289 return matched;
onepass.cc 217 // because we use it to tell if we matched.
251 bool matched = false; local
302 matched = true;
330 matched = true;
335 if (!matched)
424 bool matched = false; local
463 if (matched)
537 if (matched) {
545 matched = true;
  /external/chromium_org/third_party/re2/re2/testing/
dfa_test.cc 208 bool matched, failed = false; local
209 matched = prog->SearchDFA(match, NULL,
213 CHECK(matched);
214 matched = prog->SearchDFA(no_match, NULL,
218 CHECK(!matched);
243 bool matched, failed = false; local
244 matched = prog_->SearchDFA(match_, NULL,
248 CHECK(matched);
249 matched = prog_->SearchDFA(no_match_, NULL,
253 CHECK(!matched);
333 bool matched = prog->SearchDFA(t.text, NULL, Prog::kUnanchored, Prog::kFirstMatch, NULL, &failed, NULL); local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
valparam.c 227 int matched; local
236 matched = 0;
245 matched = 1;
258 matched = 1;
265 if (!matched) {
  /external/openssl/crypto/x509v3/
pcy_tree.c 315 int i, matched = 0; local
324 matched = 1;
327 if (!matched && last->anyPolicy)
413 /* If no policy mapping: matched if one child present */
422 /* If mapping: matched if one child per expected policy set */
  /external/regex-re2/re2/
bitstate.cc 143 bool matched = false; local
268 matched = true;
289 return matched;
  /external/regex-re2/re2/testing/
dfa_test.cc 208 bool matched, failed = false; local
209 matched = prog->SearchDFA(match, NULL,
213 CHECK(matched);
214 matched = prog->SearchDFA(no_match, NULL,
218 CHECK(!matched);
243 bool matched, failed = false; local
244 matched = prog_->SearchDFA(match_, NULL,
248 CHECK(matched);
249 matched = prog_->SearchDFA(no_match_, NULL,
253 CHECK(!matched);
333 bool matched = prog->SearchDFA(t.text, NULL, Prog::kUnanchored, Prog::kFirstMatch, NULL, &failed, NULL); local
    [all...]
  /frameworks/base/core/jni/
android_net_TrafficStats.cpp 89 int matched = sscanf(buffer, "%31s %" SCNu64 " %" SCNu64 " %" SCNu64 local
93 if (matched >= 5) {
94 if (matched == 7) {
102 if (matched == 7) {
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 185 if (matched(**in, pInputFile, pInputSection))
199 if (matched(**in, pInputFile, pInputSection))
308 bool SectionMap::matched(const SectionMap::Input& pInput, function in class:SectionMap
312 if (pInput.spec().hasFile() && !matched(pInput.spec().file(), pInputFile))
319 if (matched(llvm::cast<WildcardPattern>(**file), pInputFile)) {
328 if (matched(llvm::cast<WildcardPattern>(**sect), pInputSection)) {
337 bool SectionMap::matched(const WildcardPattern& pPattern, function in class:SectionMap
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/backward/v402/content/
shortcut_dict_content.cpp 177 bool matched = true; local
180 matched = false;
184 if (matched) {
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_key_bindings_handler.cc 66 bool matched = !edit_commands_.empty(); local
69 return matched;
  /external/chromium_org/components/query_parser/
query_parser.cc 122 bool matched = false; local
129 matched = true;
132 return matched;
  /external/chromium_org/net/cookies/
cookie_store_unittest.h 231 bool matched = (TokenizeCookieLine(line) == TokenizeCookieLine(cookies)); local
236 while (!matched && base::Time::Now() <= polling_end_date) {
239 matched = (TokenizeCookieLine(line) == TokenizeCookieLine(cookies));
242 EXPECT_TRUE(matched) << "\"" << cookies
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdump.cc 191 bool matched = (0 == first_line.find("#!rtpplay1.0 ")); local
196 matched &= (pos != std::string::npos && pos < first_line.size() - 1);
197 for (++pos; pos < first_line.size() && matched; ++pos) {
198 matched &= (0 != isdigit(first_line[pos]));
201 return matched;
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglconfig.c 433 EGLBoolean matched = EGL_TRUE; local
449 matched = EGL_FALSE;
453 matched = EGL_FALSE;
457 matched = EGL_FALSE;
467 if (!matched) {
480 return matched;
723 /* get the number of matched configs */
735 /* get the matched configs */

Completed in 609 milliseconds

1 2 3 4 5