/frameworks/base/cmds/statsd/src/matchers/ |
D | matcher_util.cpp | 34 bool matched; in combinationMatch() local 37 matched = true; in combinationMatch() 40 matched = false; in combinationMatch() 47 matched = false; in combinationMatch() 50 matched = true; in combinationMatch() 57 matched = matcherResults[children[0]] == MatchingState::kNotMatched; in combinationMatch() 60 matched = false; in combinationMatch() 63 matched = true; in combinationMatch() 69 matched = true; in combinationMatch() 72 matched = false; in combinationMatch() [all …]
|
D | SimpleLogMatchingTracker.cpp | 66 bool matched = matchesSimple(mUidMap, mMatcher, event); in onLogEvent() local 67 matcherResults[mIndex] = matched ? MatchingState::kMatched : MatchingState::kNotMatched; in onLogEvent() 68 VLOG("Stats SimpleLogMatcher %lld matched? %d", (long long)mId, matched); in onLogEvent()
|
D | CombinationLogMatchingTracker.cpp | 114 bool matched = combinationMatch(mChildren, mLogicalOperation, matcherResults); in onLogEvent() local 115 matcherResults[mIndex] = matched ? MatchingState::kMatched : MatchingState::kNotMatched; in onLogEvent()
|
/frameworks/base/startop/scripts/iorap/ |
D | compile_handcrafted_file.py | 73 matched = None 77 matched = os.path.join(zip_path, dir_entry) 79 if matched: 82 if not matched: 85 _debug_print("found zip file ", file_basename, " in ", matched) 87 if not zipfile.is_zipfile(matched): 88 raise ValueError("%s is not a zip file" %(matched)) 90 return matched 103 matched = find_zip_in_paths(in_filepath, zip_paths) 105 zip = zipfile.ZipFile(matched) [all …]
|
/frameworks/base/tools/preload-check/device/src/com/android/preload/check/ |
D | NotInitializedRegex.java | 40 int matched = 0, notMatched = 0; in main() local 48 matched++; in main() 56 System.out.println("Matched: " + matched + " Not-Matched: " + notMatched); in main() 57 if (requiresMatch && matched == 0) { in main()
|
/frameworks/base/core/java/android/os/ |
D | PatternMatcher.java | 513 int matched = matchChars(match, im, LM, tokenType, minRepetition, maxRepetition, 517 if (matched == NO_MATCH) { 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;
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardAbsKeyInputView.java | 177 public void onChecked(boolean matched, int timeoutMs) { in verifyPasswordAndUnlock() 184 if (!matched) { in verifyPasswordAndUnlock() 204 private void onPasswordChecked(int userId, boolean matched, int timeoutMs, in onPasswordChecked() argument 207 if (matched) { in onPasswordChecked() 226 resetPasswordText(true /* animate */, !matched /* announce deletion if no match */); in onPasswordChecked()
|
D | KeyguardPatternView.java | 319 public void onChecked(boolean matched, int timeoutMs) { in onPatternDetected() 326 if (!matched) { in onPatternDetected() 348 private void onPatternChecked(int userId, boolean matched, int timeoutMs, in onPatternChecked() argument 351 if (matched) { in onPatternChecked()
|
/frameworks/base/services/core/jni/ |
D | com_android_server_net_NetworkStatsService.cpp | 87 int matched = sscanf(buffer, "%31s %" SCNu64 " %" SCNu64 " %" SCNu64 in parseIfaceStats() local 91 if (matched >= 5) { in parseIfaceStats() 92 if (matched == 7) { in parseIfaceStats() 100 if (matched == 7) { in parseIfaceStats()
|
D | com_android_server_AlarmManagerService.cpp | 293 int matched = sscanf(dirent->d_name, "rtc%u", &rtc_id); in wall_clock_rtc() local 295 if (matched < 0) in wall_clock_rtc() 297 else if (matched != 1) in wall_clock_rtc()
|
/frameworks/compile/mclinker/lib/Object/ |
D | SectionMap.cpp | 179 if (matched(**in, pInputFile, pInputSection)) in find() 192 if (matched(**in, pInputFile, pInputSection)) in find() 296 bool SectionMap::matched(const SectionMap::Input& pInput, in matched() function in mcld::SectionMap 299 if (pInput.spec().hasFile() && !matched(pInput.spec().file(), pInputFile)) in matched() 306 if (matched(llvm::cast<WildcardPattern>(**file), pInputFile)) { in matched() 315 if (matched(llvm::cast<WildcardPattern>(**sect), pInputSection)) { in matched() 324 bool SectionMap::matched(const WildcardPattern& pPattern, in matched() function in mcld::SectionMap
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
D | AuthCredentialPasswordView.java | 116 final boolean matched = attestation != null; in onCredentialVerified() 118 if (matched) { in onCredentialVerified()
|
D | AuthCredentialView.java | 288 final boolean matched = attestation != null; in onCredentialVerified() 290 if (matched) { in onCredentialVerified()
|
/frameworks/base/services/core/java/com/android/server/timezone/ |
D | PackageTrackerHelperImpl.java | 140 ResolveInfo matched = resolveInfo.get(0); in receiverRegistered() local 141 boolean requiresPermission = requiredPermissionName.equals(matched.activityInfo.permission); in receiverRegistered()
|
/frameworks/compile/slang/tests/F_reflection3264_foreach_mismatch_name64/ |
D | reflection3264_foreach_mismatch_name64.rscript | 6 // matched names from being reported.
|
/frameworks/compile/slang/tests/F_reflection3264_foreach_mismatch_name32/ |
D | reflection3264_foreach_mismatch_name32.rscript | 6 // matched names from being reported.
|
/frameworks/compile/mclinker/include/mcld/Object/ |
D | SectionMap.h | 198 bool matched(const Input& pInput, 202 bool matched(const WildcardPattern& pPattern, const std::string& pName) const;
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | LockPatternChecker.java | 29 void onChecked(boolean matched, int throttleTimeoutMs); in onChecked() argument
|
/frameworks/base/cmds/am/src/com/android/commands/am/ |
D | Instrument.java | 493 boolean matched = false; in run() 496 matched = true; in run() 500 if (!matched) { in run()
|
/frameworks/base/core/java/com/google/android/util/ |
D | AbstractMessageParser.java | 1194 private boolean matched; field in AbstractMessageParser.Format 1202 public void setMatched(boolean matched) { this.matched = matched; } in setMatched() argument 1209 if (matched) { in toHtml()
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | DiagCommonKinds.inc | 176 "not matched --start-group and --end-group", 177 "not matched --start-group and --end-group")
|
/frameworks/base/services/core/java/com/android/server/biometrics/ |
D | BiometricServiceBase.java | 364 boolean matched = false; in handleEnumeratedTemplate() 368 matched = true; in handleEnumeratedTemplate() 374 if (!matched && identifier.getBiometricId() != 0) { in handleEnumeratedTemplate() 377 Slog.v(getTag(), "Matched: " + matched); in handleEnumeratedTemplate() local
|
/frameworks/base/telephony/java/android/telephony/ |
D | PhoneNumberUtils.java | 524 int matched; in compareLoosely() local 537 matched = 0; in compareLoosely() 563 ia--; ib--; matched++; in compareLoosely() 567 if (matched < minMatch) { in compareLoosely() 574 if (effectiveALen == effectiveBLen && effectiveALen == matched) { in compareLoosely() 582 if (matched >= minMatch && (ia < 0 || ib < 0)) { in compareLoosely()
|
/frameworks/base/core/jni/ |
D | android_util_Process.cpp | 378 unsigned int start, end, matched, i; in parse_cpuset_cpus() local 382 matched = sscanf(cpu_range, "%u-%u", &start, &end); in parse_cpuset_cpus() 391 if (matched == 1) { in parse_cpuset_cpus() 393 } else if (matched == 2) { in parse_cpuset_cpus()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
D | PasspointProvider.java | 731 boolean matched = false; in matchOis() 740 matched = true; in matchOis() 745 if (matchAll && !matched) { in matchOis()
|