/frameworks/base/packages/SystemUI/src/com/android/systemui/bluetooth/qsdialog/ |
D | DeviceItemActionInteractor.kt | 92 it.matched(inAudioSharing, deviceItem) in <lambda>() 147 suspend fun matched(inAudioSharing: Boolean, deviceItem: DeviceItem): Boolean in <lambda>() method 177 override suspend fun matched(inAudioSharing: Boolean, deviceItem: DeviceItem): Boolean { in <lambda>() method in com.android.systemui.bluetooth.qsdialog.DeviceItemActionInteractor.InSharingClickedNoSource 179 val matched = in <lambda>() constant 187 if (matched) { in <lambda>() 191 matched in <lambda>() 209 override suspend fun matched(inAudioSharing: Boolean, deviceItem: DeviceItem): Boolean { in <lambda>() method in com.android.systemui.bluetooth.qsdialog.DeviceItemActionInteractor.NotSharingClickedNonConnect 211 val matched = in <lambda>() constant 226 if (matched) { in <lambda>() 233 matched in <lambda>() [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 | 557 int matched = matchChars(match, im, LM, tokenType, minRepetition, maxRepetition, 561 if (matched == NO_MATCH) { 566 im += matched; 574 int matched = 0; 576 while(matched < maxRepetition 577 && matchChar(match, im + matched, lm, tokenType, parsedPattern, tokenStart, 579 matched++; 582 return matched < minRepetition ? NO_MATCH : matched;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/binder/ |
D | CredentialPatternViewBinder.kt | 50 val matched = attestation != null in <lambda>() constant 51 lockPatternView.isEnabled = !matched in <lambda>() 52 if (matched) { in <lambda>()
|
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/ |
D | InternalEnumerateClient.java | 93 boolean matched = false; in handleEnumeratedTemplate() 97 matched = true; in handleEnumeratedTemplate() 103 if (!matched && identifier.getBiometricId() != 0) { in handleEnumeratedTemplate() 106 Slog.v(TAG, "Matched: " + matched); in handleEnumeratedTemplate()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/ |
D | DataEvaluation.java | 173 int matched = 0; in isSubsetOf() local 175 if (mDataDisallowedReasons.contains(requestedReason)) matched++; in isSubsetOf() 177 return matched == mDataDisallowedReasons.size(); in isSubsetOf()
|
/frameworks/base/telephony/java/android/telephony/ |
D | ModemActivityInfo.java | 390 boolean matched; in getDelta() 392 matched = false; in getDelta() 395 if (rat == other.mActivityStatsTechSpecificInfo[i].getRat() && !matched) { in getDelta() 409 matched = true; in getDelta() 425 matched = true; in getDelta() 436 if (!matched) { in getDelta()
|
D | PhoneNumberUtils.java | 538 int matched; in compareLoosely() local 551 matched = 0; in compareLoosely() 577 ia--; ib--; matched++; in compareLoosely() 581 if (matched < minMatch) { in compareLoosely() 588 if (effectiveALen == effectiveBLen && effectiveALen == matched) { in compareLoosely() 596 if (matched >= minMatch && (ia < 0 || ib < 0)) { in compareLoosely()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardAbsKeyInputViewController.java | 178 void onPasswordChecked(int userId, boolean matched, int timeoutMs, boolean isValidPassword) { in onPasswordChecked() argument 180 if (matched) { in onPasswordChecked() 246 public void onChecked(boolean matched, int timeoutMs) { in verifyPasswordAndUnlock() 250 if (!matched) { in verifyPasswordAndUnlock()
|
D | KeyguardPatternViewController.java | 142 public void onChecked(boolean matched, int timeoutMs) { in onPatternDetected() 146 if (!matched) { in onPatternDetected() 165 private void onPatternChecked(int userId, boolean matched, int timeoutMs, in onPatternChecked() argument 168 if (matched) { in onPatternChecked()
|
/frameworks/compile/mclinker/lib/Object/ |
D | SectionMap.cpp | 179 if (matched(**in, pInputFile, pInputSection)) in find() 192 if (matched(**in, pInputFile, pInputSection)) in find() 295 bool SectionMap::matched(const SectionMap::Input& pInput, in matched() function in mcld::SectionMap 298 if (pInput.spec().hasFile() && !matched(pInput.spec().file(), pInputFile)) in matched() 305 if (matched(llvm::cast<WildcardPattern>(**file), pInputFile)) { in matched() 314 if (matched(llvm::cast<WildcardPattern>(**sect), pInputSection)) { in matched() 323 bool SectionMap::matched(const WildcardPattern& pPattern, in matched() function in mcld::SectionMap
|
/frameworks/base/core/java/android/view/ |
D | ContentInfo.java | 261 boolean matched = itemPredicate.test(mClip.getItemAt(0)); in partition() 262 return Pair.create(matched ? this : null, matched ? null : this); in partition()
|
/frameworks/compile/slang/tests/F_reflection3264_foreach_mismatch_name32/ |
D | reflection3264_foreach_mismatch_name32.rscript | 6 // matched names from being reported.
|
/frameworks/compile/slang/tests/F_reflection3264_foreach_mismatch_name64/ |
D | reflection3264_foreach_mismatch_name64.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/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/data/repository/ |
D | LightRevealScrimRepositoryTest.kt | 244 zip(predicates) { effect, predicate -> predicate(effect) }.any { matched -> !matched } in <lambda>() method
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/data/repository/ |
D | AuthenticationRepository.kt | 273 val matched = lockPatternUtils.checkCredential(credential, selectedUserId) {} in checkCredential() constant 274 AuthenticationResultModel(isSuccessful = matched, lockoutDurationMs = 0) in checkCredential()
|
/frameworks/base/cmds/am/src/com/android/commands/am/ |
D | Instrument.java | 505 boolean matched = false; in run() 508 matched = true; in run() 512 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/core/jni/ |
D | android_util_Process.cpp | 356 unsigned int start, end, matched, i; in parse_cpuset_cpus() local 360 matched = sscanf(cpu_range, "%u-%u", &start, &end); in parse_cpuset_cpus() 369 if (matched == 1) { in parse_cpuset_cpus() 371 } else if (matched == 2) { in parse_cpuset_cpus()
|
/frameworks/base/tools/aapt2/ |
D | Configuration.proto | 24 // resource to be matched and selected.
|
/frameworks/base/libs/androidfw/ |
D | BackupHelpers.cpp | 1101 bool matched = true; in backup_helper_test_four() local 1115 matched = false; in backup_helper_test_four() 1119 return matched ? 0 : 1; in backup_helper_test_four()
|
/frameworks/compile/mclinker/lib/Target/ |
D | GNULDBackend.cpp | 2362 bool matched = false; in placeOutputSections() local 2366 matched = true; in placeOutputSections() 2369 matched = ((*it)->flag() & llvm::ELF::SHF_WRITE) == 0; in placeOutputSections() 2372 matched = ((*it)->flag() & llvm::ELF::SHF_WRITE) != 0; in placeOutputSections() 2376 if (matched) in placeOutputSections()
|
/frameworks/base/core/proto/android/server/ |
D | powerstatsservice.proto | 154 * PowerEntity. The StateResidencyResult can be matched to its corresponding
|