Home
last modified time | relevance | path

Searched refs:found (Results 1 – 25 of 123) sorted by relevance

12345

/packages/apps/Dialer/java/com/android/dialer/logging/
Dcontact_lookup_result.proto15 // Contact was not found in any of the sources.
18 // Contact was found in the local database.
39 // Number was found in Dialer's local cache but we don't know how it was
43 // Number was found in Dialer's local cache and was originally identified
47 // Number was found in Dialer's local cache and was originally identified
51 // Number was found in Dialer's local cache and was originally identified
55 // Number was found in Dialer's local cache and was originally identified
59 // Number was found in Dialer's local cache and was originally identified
64 // Number was found in Dialer's local cache and was originally identified
71 // Number was found in Dialer's local cache and was originally identified
[all …]
/packages/modules/adb/daemon/
Dabb.cpp58 size_t found; in parseCmdArgs() local
59 for (found = base; found < size && args[found] && args[found] != delim; ++found) in parseCmdArgs()
61 if (found > base) { in parseCmdArgs()
62 argv.emplace_back(args.substr(base, found - base)); in parseCmdArgs()
64 base = found + 1; in parseCmdArgs()
/packages/modules/StatsD/tests/src/android/cts/statsd/uidmap/
DUidMapTests.java80 boolean found = false; in testChangeFromInstallation()
85 found = true; in testChangeFromInstallation()
88 assertThat(found).isTrue(); in testChangeFromInstallation()
104 boolean found = false; in testChangeFromReinstall()
109 found = true; in testChangeFromReinstall()
112 assertThat(found).isTrue(); in testChangeFromReinstall()
127 boolean found = false; in testChangeFromUninstall()
131 found = true; in testChangeFromUninstall()
134 assertThat(found).isTrue(); in testChangeFromUninstall()
/packages/modules/DnsResolver/tests/
Dresolv_test_utils.cpp108 size_t found = 0; in GetNumQueries() local
111 ++found; in GetNumQueries()
114 return found; in GetNumQueries()
120 size_t found = 0; in GetNumQueriesForProtocol() local
123 ++found; in GetNumQueriesForProtocol()
126 return found; in GetNumQueriesForProtocol()
131 size_t found = 0; in GetNumQueriesForType() local
134 ++found; in GetNumQueriesForType()
137 return found; in GetNumQueriesForType()
/packages/services/Car/cpp/evs/sampleDriver/
DEvsEnumerator.cpp617 bool found = false; in qualifyCaptureDevice() local
618 for (int i=0; !found; i++) { in qualifyCaptureDevice()
627 case V4L2_PIX_FMT_YUYV: found = true; break; in qualifyCaptureDevice()
628 case V4L2_PIX_FMT_NV21: found = true; break; in qualifyCaptureDevice()
629 case V4L2_PIX_FMT_NV16: found = true; break; in qualifyCaptureDevice()
630 case V4L2_PIX_FMT_YVU420: found = true; break; in qualifyCaptureDevice()
631 case V4L2_PIX_FMT_RGB32: found = true; break; in qualifyCaptureDevice()
633 case V4L2_PIX_FMT_ARGB32: found = true; break; in qualifyCaptureDevice()
634 case V4L2_PIX_FMT_XRGB32: found = true; break; in qualifyCaptureDevice()
647 return found; in qualifyCaptureDevice()
[all …]
/packages/apps/TV/tuner/tests/robotests/javatests/com/android/tv/tuner/exoplayer/tests/
DSampleSourceExtractorTest.java114 boolean found = false; in testTrickplayDisabled()
115 while (!found) { in testTrickplayDisabled()
120 found = true; in testTrickplayDisabled()
127 if (found) { in testTrickplayDisabled()
183 boolean found = false; in testDiskTooSlowTrickplayDisabled()
184 while (!found) { in testDiskTooSlowTrickplayDisabled()
189 found = true; in testDiskTooSlowTrickplayDisabled()
196 if (found) { in testDiskTooSlowTrickplayDisabled()
/packages/modules/DnsResolver/
DResolverEventReporter.cpp80 auto found = std::find_if(mListeners.begin(), mListeners.end(), in handleBinderDied() local
83 if (found != mListeners.end()) mListeners.erase(found); in handleBinderDied()
91 auto found = std::find_if(mUnsolEventListeners.begin(), mUnsolEventListeners.end(), in handleUnsolEventBinderDied() local
94 if (found != mUnsolEventListeners.end()) mUnsolEventListeners.erase(found); in handleUnsolEventBinderDied()
/packages/services/BuiltInPrintService/src/com/android/bips/ipp/
DCapabilitiesCache.java221 Request found = null; in getNextRequest() local
226 } else if (found == null || (!found.mHighPriority && request.mHighPriority) in getNextRequest()
227 || (found.mHighPriority == request.mHighPriority in getNextRequest()
228 && request.mTimeout < found.mTimeout)) { in getNextRequest()
230 found = request; in getNextRequest()
238 return found; in getNextRequest()
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DCarrierIdProvider.java440 boolean found = false; in convertCarrierAttrToContentValues()
447 found = true; in convertCarrierAttrToContentValues()
455 found = true; in convertCarrierAttrToContentValues()
463 found = true; in convertCarrierAttrToContentValues()
471 found = true; in convertCarrierAttrToContentValues()
479 found = true; in convertCarrierAttrToContentValues()
487 found = true; in convertCarrierAttrToContentValues()
495 found = true; in convertCarrierAttrToContentValues()
503 found = true; in convertCarrierAttrToContentValues()
511 found = true; in convertCarrierAttrToContentValues()
[all …]
/packages/apps/TV/tuner/src/com/android/tv/tuner/source/
DFileSourceEventDetector.java214 boolean found = mVctProgramNumberSet.contains(channelProgramNumber);
215 if (!found) {
219 mEventListener.onChannelDetected(tunerChannel, !found);
249 boolean found = mSdtProgramNumberSet.contains(channelProgramNumber);
250 if (!found) {
254 mEventListener.onChannelDetected(tunerChannel, !found);
/packages/modules/adb/client/
Dconsole.cpp169 size_t found = 0; in adb_send_emulator_command() local
171 const size_t result = emulator_output.find(delims, found); in adb_send_emulator_command()
175 found = result + delims.size(); in adb_send_emulator_command()
179 printf("%s", emulator_output.c_str() + found); in adb_send_emulator_command()
/packages/apps/TV/tuner/src/com/android/tv/tuner/ts/
DEventDetector.java179 boolean found = mVctProgramNumberSet.contains(channelProgramNumber);
180 if (!found) {
185 eventListener.onChannelDetected(tunerChannel, !found);
219 boolean found = mSdtProgramNumberSet.contains(channelProgramNumber);
220 if (!found) {
225 eventListener.onChannelDetected(tunerChannel, !found);
/packages/providers/MediaProvider/src/com/android/providers/media/util/
DUserCache.java130 boolean found = userSharesMediaWithParentCached(user); in userSharesMediaWithParent()
131 if (!found) { in userSharesMediaWithParent()
134 found = userSharesMediaWithParentCached(user); in userSharesMediaWithParent()
136 return found; in userSharesMediaWithParent()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
DNewStorageActivity.java236 boolean found = false; in checkForUnmount()
239 found = true; in checkForUnmount()
243 if (!found) { in checkForUnmount()
248 boolean found = false; in checkForUnmount()
251 found = true; in checkForUnmount()
255 if (!found) { in checkForUnmount()
/packages/modules/StatsD/statsd/src/
DHashableDimensionKey.cpp250 bool found = false; in containsLinkedStateValues() local
254 found = true; in containsLinkedStateValues()
258 if (!found) { in containsLinkedStateValues()
327 bool found = false; in contains() local
330 found = true; in contains()
334 if (!found) { in contains()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DDppMetricsTest.java104 boolean found = false; in checkDppFailures()
113 found = true; in checkDppFailures()
118 assertTrue(found); in checkDppFailures()
128 boolean found = false; in checkDppSuccesses()
137 found = true; in checkDppSuccesses()
142 assertTrue(found); in checkDppSuccesses()
/packages/apps/TV/src/com/android/tv/parental/
DContentRatingSystem.java422 boolean found = false; in build()
425 found = true; in build()
430 if (!found) { in build()
534 boolean found = false; in build()
537 found = true; in build()
543 if (!found) { in build()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
Dpatricia_trie_policy.cpp162 bool found; in getCodePointsAndProbabilityAndReturnCodePointCount() local
173 found = true; in getCodePointsAndProbabilityAndReturnCodePointCount()
180 found = true; in getCodePointsAndProbabilityAndReturnCodePointCount()
183 found = false; in getCodePointsAndProbabilityAndReturnCodePointCount()
189 found = (1 >= ptNodeCount); in getCodePointsAndProbabilityAndReturnCodePointCount()
192 if (found) { in getCodePointsAndProbabilityAndReturnCodePointCount()
/packages/modules/StatsD/tests/src/android/cts/statsd/metric/
DMetricsUtils.java149 boolean found = false; in assertBucketTimePresent()
154 found = true; in assertBucketTimePresent()
157 found = true; in assertBucketTimePresent()
161 ).that(found).isTrue(); in assertBucketTimePresent()
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
DBmsgTokenizer.java47 boolean found = false; in next()
63 found = true; in next()
65 } while (!found); in next()
/packages/apps/Launcher3/src/com/android/launcher3/model/
DAddWorkspaceItemsTask.java291 boolean found = false; in findSpaceForItem()
298 found = findNextAvailableIconSpaceInScreen( in findSpaceForItem()
302 if (!found) { in findSpaceForItem()
309 found = true; in findSpaceForItem()
315 if (!found) { in findSpaceForItem()
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DNsdManagerTest.java392 boolean found = false; in testNDSManager()
409 found = true; in testNDSManager()
419 assertTrue(found); in testNDSManager()
498 found = false; in testNDSManager()
515 found = true; in testNDSManager()
525 assertTrue(found); in testNDSManager()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapSmsPdu.java178 boolean found = false; in cdmaGetParameterOffset()
188 found = true; in cdmaGetParameterOffset()
200 if (found) { in cdmaGetParameterOffset()
212 boolean found = false; in cdmaGetSubParameterOffset()
223 found = true; in cdmaGetSubParameterOffset()
235 if (found) { in cdmaGetSubParameterOffset()
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DPasspointManager.java680 boolean found = false; in enableAutojoin()
695 found = true; in enableAutojoin()
698 if (found) { in enableAutojoin()
701 return found; in enableAutojoin()
712 boolean found = false; in enableMacRandomization()
726 found = true; in enableMacRandomization()
729 if (found) { in enableMacRandomization()
732 return found; in enableMacRandomization()
743 boolean found = false; in setMeteredOverride()
754 found = true; in setMeteredOverride()
[all …]
/packages/apps/Settings/tests/uitests/src/com/android/settings/ui/
DMoreWirelessSettingsTest2.java743 UiObject2 found = null; in scrollToObject() local
750 found = mDevice.findObject(objectSelector); in scrollToObject()
751 if (found != null) return found; in scrollToObject()
754 for (int attempts = 0; found == null && attempts < MAX_SCROLL_ATTEMPTS; ++attempts) { in scrollToObject()
758 found = mDevice.findObject(objectSelector); in scrollToObject()
760 if (found == null) { in scrollToObject()
763 return found; in scrollToObject()

12345