HomeSort by relevance Sort by last modified time
    Searched refs:matched (Results 76 - 100 of 356) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/icu/icu4c/source/common/
uloc_keytype.cpp 502 UBool matched = FALSE; local
504 matched = isSpecialTypeCodepoints(type);
506 if (!matched && keyData->specialTypes & SPECIALTYPE_REORDER_CODE) {
507 matched = isSpecialTypeReorderCode(type);
509 if (matched) {
544 UBool matched = FALSE; local
546 matched = isSpecialTypeCodepoints(type);
548 if (!matched && keyData->specialTypes & SPECIALTYPE_REORDER_CODE) {
549 matched = isSpecialTypeReorderCode(type);
551 if (matched) {
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ConfirmLockPassword.java 360 boolean matched = false;
362 matched = true;
369 mCredentialCheckResultTracker.setResult(matched, intent, timeoutMs,
389 public void onChecked(boolean matched, int timeoutMs) {
391 if (matched && isInternalActivity() && mReturnCredentials) {
398 mCredentialCheckResultTracker.setResult(matched, intent, timeoutMs,
432 private void onPasswordChecked(boolean matched, Intent intent, int timeoutMs,
435 if (matched) {
456 public void onCredentialChecked(boolean matched, Intent intent, int timeoutMs,
458 onPasswordChecked(matched, intent, timeoutMs, effectiveUserId, newResult)
    [all...]
ConfirmLockPattern.java 439 boolean matched = false;
441 matched = true;
448 mCredentialCheckResultTracker.setResult(matched, intent, timeoutMs,
476 public void onChecked(boolean matched, int timeoutMs) {
478 if (matched && isInternalActivity() && mReturnCredentials) {
484 mCredentialCheckResultTracker.setResult(matched, intent, timeoutMs,
491 private void onPatternChecked(boolean matched, Intent intent, int timeoutMs,
494 if (matched) {
517 public void onCredentialChecked(boolean matched, Intent intent, int timeoutMs,
519 onPatternChecked(matched, intent, timeoutMs, effectiveUserId, newResult)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
SpannableStringUtils.java 162 boolean matched = false;
166 matched = true;
168 if (!matched) {
169 // never matched. preserveTrailingEmptySegments is ignored in this case.
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/content/
shortcut_dict_content.cpp 177 bool matched = true; local
180 matched = false;
184 if (matched) {
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
shortcut_dict_content.cpp 162 bool matched = true; local
165 matched = false;
169 if (matched) {
  /system/extras/simpleperf/runtest/
runtest.py 437 matched = [False] * len(test.symbol_overhead_requirements)
443 matched[i] = True
445 for i in range(len(matched)):
446 if not matched[i]:
447 print 'requirement (%s) has no matched symbol in test %s' % (
460 matched = [False] * len(test.symbol_children_overhead_requirements)
465 matched[i] = True
471 for i in range(len(matched)):
472 if not matched[i]:
473 print 'requirement (%s) has no matched symbol in test %s' %
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
Dbg.stg 42 -(BOOL) evalPredicate:(NSString *)predicate matched:(BOOL)result;<\n>
106 -(BOOL) evalPredicate:(NSString *)predicate matched:(BOOL)result
108 [debugListener semanticPredicate:predicate matched:result];
  /ndk/sources/host-tools/make-3.81/glob/
fnmatch.c 310 /* `/' cannot be matched. */
330 goto matched;
374 goto matched;
388 goto matched;
398 goto matched;
413 goto matched;
427 matched:
428 /* Skip the rest of the [...] that already matched. */
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleNodeStream.as 4 /** Queues up nodes matched on left side of -> in a tree parser. This is
  /external/regex-re2/re2/
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;
  /prebuilts/go/darwin-x86/misc/chrome/gophertool/
popup.js 33 console.log("matched " + t + " to: " + url)
  /prebuilts/go/linux-x86/misc/chrome/gophertool/
popup.js 33 console.log("matched " + t + " to: " + url)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/
mlsrules.py 86 added, removed, matched = self._set_diff(left_list, right_list)
90 for left_rule, right_rule in matched:
  /toolchain/binutils/binutils-2.25/libiberty/
fnmatch.c 175 goto matched;
184 matched:;
185 /* Skip the rest of the [...] that already matched. */
  /external/vulkan-validation-layers/layers/
vk_layer_logging.h 156 bool matched; local
161 matched = true;
170 matched = false;
175 if (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) {
  /external/webrtc/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/compiler-rt/lib/sanitizer_common/
sanitizer_suppressions.cc 162 InternalMmapVector<Suppression *> *matched) {
165 matched->push_back(&suppressions_[i]);
  /external/deqp/scripts/
mustpass.py 162 matched = set()
172 if path in matched:
174 matched.add(path)
178 curList = [c for c in curList if c not in matched]
190 matched = matched | matchedThisPtrn
191 curList = [c for c in curList if c not in matched]
199 return [c for c in caseList if op(c in matched)]
  /external/libcxx/test/std/re/re.submatch/re.submatch.op/
compare.pass.cpp 228 sm1.matched = true;
232 sm2.matched = true;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.op/
compare.pass.cpp 228 sm1.matched = true;
232 sm2.matched = true;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRDebugEventListener.h 68 /** An input token was consumed; matched by any kind of element.
69 * Trigger after the token was matched by things like match(), matchAny().
74 * Trigger after the token was matched by things like match(), matchAny().
191 * but not matched to anything in grammar. Anything between
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDebugEventListener.h 68 /** An input token was consumed; matched by any kind of element.
69 * Trigger after the token was matched by things like match(), matchAny().
74 * Trigger after the token was matched by things like match(), matchAny().
191 * but not matched to anything in grammar. Anything between
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRDebugEventListener.h 68 /** An input token was consumed; matched by any kind of element.
69 * Trigger after the token was matched by things like match(), matchAny().
74 * Trigger after the token was matched by things like match(), matchAny().
191 * but not matched to anything in grammar. Anything between
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;

Completed in 1384 milliseconds

1 2 34 5 6 7 8 91011>>