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

/frameworks/base/cmds/statsd/src/matchers/
H A DSimpleLogMatchingTracker.cpp68 bool matched = matchesSimple(mUidMap, mMatcher, event); local
69 matcherResults[mIndex] = matched ? MatchingState::kMatched : MatchingState::kNotMatched;
70 VLOG("Stats SimpleLogMatcher %lld matched? %d", (long long)mId, matched);
H A Dmatcher_util.cpp35 bool matched; local
38 matched = true;
41 matched = false;
48 matched = false;
51 matched = true;
58 matched = matcherResults[children[0]] == MatchingState::kNotMatched;
61 matched = false;
64 matched = true;
70 matched = true;
73 matched
204 bool matched = true; local
[all...]
H A DCombinationLogMatchingTracker.cpp116 bool matched = combinationMatch(mChildren, mLogicalOperation, matcherResults); local
117 matcherResults[mIndex] = matched ? MatchingState::kMatched : MatchingState::kNotMatched;
/frameworks/support/room/migration/src/main/java/androidx/room/migration/bundle/
H A DSchemaEqualityUtil.java65 boolean matched = false;
68 matched = true;
72 if (!matched) {
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DInternalEnumerateClient.java45 boolean matched = false;
49 matched = true;
55 if (!matched && fingerId != 0) {
/frameworks/base/core/java/android/os/
H A DPatternMatcher.java513 int matched = matchChars(match, im, LM, tokenType, minRepetition, maxRepetition,
517 if (matched == NO_MATCH) {
521 // move the match pointer the number of characters matched
522 im += matched;
530 int matched = 0;
532 while(matched < maxRepetition
533 && matchChar(match, im + matched, lm, tokenType, parsedPattern, tokenStart,
535 matched++;
538 return matched < minRepetition ? NO_MATCH : matched;
[all...]
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardAbsKeyInputView.java136 onPasswordChecked(userId, false /* matched */, 0, false /* not valid - too short */);
156 onPasswordChecked(userId, true /* matched */, 0 /* timeoutMs */,
161 public void onChecked(boolean matched, int timeoutMs) {
168 if (!matched) {
169 onPasswordChecked(userId, false /* matched */, timeoutMs,
176 // We already got dismissed with the early matched callback, so we cancelled
186 private void onPasswordChecked(int userId, boolean matched, int timeoutMs, argument
189 if (matched) {
208 resetPasswordText(true /* animate */, !matched /* announce deletion if no match */);
H A DKeyguardPatternView.java272 onPatternChecked(userId, true /* matched */, 0 /* timeoutMs */,
277 public void onChecked(boolean matched, int timeoutMs) {
284 if (!matched) {
285 onPatternChecked(userId, false /* matched */, timeoutMs,
292 // We already got dismissed with the early matched callback, so we
305 private void onPatternChecked(int userId, boolean matched, int timeoutMs, argument
308 if (matched) {
/frameworks/base/services/core/jni/
H A Dcom_android_server_net_NetworkStatsService.cpp89 int matched = sscanf(buffer, "%31s %" SCNu64 " %" SCNu64 " %" SCNu64 local
93 if (matched >= 5) {
94 if (matched == 7) {
102 if (matched == 7) {
H A Dcom_android_server_AlarmManagerService.cpp280 int matched = sscanf(dirent->d_name, "rtc%u", &rtc_id); local
282 if (matched < 0)
284 else if (matched != 1)
/frameworks/base/services/core/java/com/android/server/timezone/
H A DPackageTrackerHelperImpl.java140 ResolveInfo matched = resolveInfo.get(0);
141 boolean requiresPermission = requiredPermissionName.equals(matched.activityInfo.permission);
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp179 if (matched(**in, pInputFile, pInputSection))
192 if (matched(**in, pInputFile, pInputSection))
296 bool SectionMap::matched(const SectionMap::Input& pInput, function in class:mcld::SectionMap
299 if (pInput.spec().hasFile() && !matched(pInput.spec().file(), pInputFile))
306 if (matched(llvm::cast<WildcardPattern>(**file), pInputFile)) {
315 if (matched(llvm::cast<WildcardPattern>(**sect), pInputSection)) {
324 bool SectionMap::matched(const WildcardPattern& pPattern, function in class:mcld::SectionMap
/frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/resource/
H A DXmlResourcesTransformer.kt118 val matched = matcher.group(0)
129 val result = matched.replaceRange(
/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h198 bool matched(const Input& pInput,
202 bool matched(const WildcardPattern& pPattern, const std::string& pName) const;
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DInstrument.java469 boolean matched = false;
472 matched = true;
476 if (!matched) {
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternChecker.java28 * @param matched Whether the PIN/Password/Pattern matches the stored one.
30 * the call. Only non-0 if matched is false.
32 void onChecked(boolean matched, int throttleTimeoutMs); argument
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java1180 private boolean matched; field in class:AbstractMessageParser.Format
1188 public void setMatched(boolean matched) { this.matched = matched; } argument
1193 // This character only implies special formatting if it was matched.
1195 if (matched) {
/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp316 unsigned int start, end, matched, i; local
320 matched = sscanf(cpu_range, "%u-%u", &start, &end);
329 if (matched == 1) {
331 } else if (matched == 2) {
H A Dandroid_os_Debug.cpp759 int matched = fscanf(mm_stat_file.get(), "%*d %*d %lld %*d %*d %*d %*d", &mem_used_total); local
760 if (matched != 1)
770 int matched = fscanf(mem_used_total_file.get(), "%lld", &mem_used_total); local
771 if (matched != 1)
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java488 int matched;
500 matched = 0;
526 ia--; ib--; matched++;
530 if (matched < MIN_MATCH) {
535 // if the number of dialable chars in a and b match, but the matched chars < MIN_MATCH,
537 if (effectiveALen == effectiveBLen && effectiveALen == matched) {
544 // At least one string has matched completely;
545 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) {
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp1096 bool matched = true;
1110 matched = false;
1114 return matched ? 0 : 1;
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp2362 bool matched = false; local
2366 matched = true;
2369 matched = ((*it)->flag() & llvm::ELF::SHF_WRITE) == 0;
2372 matched = ((*it)->flag() & llvm::ELF::SHF_WRITE) != 0;
2376 if (matched)
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 514 milliseconds