Home
last modified time | relevance | path

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

12345678910

/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DAsmAnalyzerTest.java103 TreeMap<String, ClassReader> found = new TreeMap<>(); in testFindClass() local
106 zipClasses, found); in testFindClass()
111 found.keySet().toArray()); in testFindClass()
112 assertArrayEquals(new ClassReader[] { cr }, found.values().toArray()); in testFindClass()
122 TreeMap<String, ClassReader> found = new TreeMap<>(); in testFindGlobs() local
125 found.clear(); in testFindGlobs()
126 mAa.findGlobs("mock_android.view", zipClasses, found); in testFindGlobs()
129 found.keySet().toArray()); in testFindGlobs()
132 mAa.findGlobs("mock_android.*.*Group$*Layout*", zipClasses, found); in testFindGlobs()
138 found.keySet().toArray()); in testFindGlobs()
[all …]
/frameworks/native/libs/gui/
DBufferQueueProducer.cpp242 int* found) const { in waitForFreeSlotThenRelock()
273 *found = BufferQueueCore::INVALID_BUFFER_SLOT; in waitForFreeSlotThenRelock()
290 *found = mCore->mSharedBufferSlot; in waitForFreeSlotThenRelock()
296 *found = slot; in waitForFreeSlotThenRelock()
298 *found = getFreeSlotLocked(); in waitForFreeSlotThenRelock()
304 *found = slot; in waitForFreeSlotThenRelock()
306 *found = getFreeBufferLocked(); in waitForFreeSlotThenRelock()
315 tryAgain = (*found == BufferQueueCore::INVALID_BUFFER_SLOT) || in waitForFreeSlotThenRelock()
392 int found = BufferItem::INVALID_BUFFER_SLOT; in dequeueBuffer() local
393 while (found == BufferItem::INVALID_BUFFER_SLOT) { in dequeueBuffer()
[all …]
/frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
DListSetSelectionTest.java73 boolean found = false; in testSetSelection()
78 found = true; in testSetSelection()
82 assertTrue("Selected item not visible in list", found); in testSetSelection()
104 boolean found = false; in testSetSelectionFromTop()
110 found = true; in testSetSelectionFromTop()
114 assertTrue("Selected item not visible in list", found); in testSetSelectionFromTop()
139 boolean found = false; in testSetSelection0()
144 found = true; in testSetSelection0()
148 assertTrue("Selected item not visible in list", found); in testSetSelection0()
/frameworks/compile/libbcc/bcinfo/Wrap/
Din_memory_wrapper_input.cpp30 size_t found = 0; in Read() local
36 while (found < wanted) { in Read()
38 return found; in Read()
40 buffer[found++] = _buffer[_pos++]; in Read()
42 return found; in Read()
Dfile_wrapper_input.cpp36 size_t found = fread((char*) buffer, 1, wanted, _file); in Read() local
40 return found; in Read()
/frameworks/av/camera/ndk/impl/
DACameraDevice.cpp778 bool found = msg->findPointer(kContextKey, &context); in onMessageReceived() local
779 if (!found) { in onMessageReceived()
787 found = msg->findPointer(kDeviceKey, (void**) &dev); in onMessageReceived()
788 if (!found || dev == nullptr) { in onMessageReceived()
793 found = msg->findPointer(kCallbackFpKey, (void**) &onDisconnected); in onMessageReceived()
794 if (!found) { in onMessageReceived()
807 found = msg->findPointer(kDeviceKey, (void**) &dev); in onMessageReceived()
808 if (!found || dev == nullptr) { in onMessageReceived()
813 found = msg->findPointer(kCallbackFpKey, (void**) &onError); in onMessageReceived()
814 if (!found) { in onMessageReceived()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DInformationElementUtil.java381 boolean found = false; in parseRsnElement()
386 security += (found ? "+" : "-") + "EAP"; in parseRsnElement()
387 found = true; in parseRsnElement()
390 security += (found ? "+" : "-") + "PSK"; in parseRsnElement()
391 found = true; in parseRsnElement()
394 security += (found ? "+" : "-") + "FT/EAP"; in parseRsnElement()
395 found = true; in parseRsnElement()
398 security += (found ? "+" : "-") + "FT/PSK"; in parseRsnElement()
399 found = true; in parseRsnElement()
402 security += (found ? "+" : "-") + "EAP-SHA256"; in parseRsnElement()
[all …]
/frameworks/base/services/core/java/com/android/server/
DNativeDaemonConnector.java640 PendingCmd found = null; in add() local
644 found = pendingCmd; in add()
648 if (found == null) { in add()
660 found = new PendingCmd(cmdNum, null); in add()
661 mPendingCmds.add(found); in add()
663 found.availableResponseCount++; in add()
666 if (found.availableResponseCount == 0) mPendingCmds.remove(found); in add()
669 found.responses.put(response); in add()
676 PendingCmd found = null; in remove() local
680 found = pendingCmd; in remove()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
DSimulatedGsmCallState.java280 boolean found; in triggerHangupForeground()
282 found = false; in triggerHangupForeground()
292 found = true; in triggerHangupForeground()
305 found = true; in triggerHangupForeground()
308 return found; in triggerHangupForeground()
319 boolean found = false; in triggerHangupBackground()
326 found = true; in triggerHangupBackground()
330 return found; in triggerHangupBackground()
341 boolean found = false; in triggerHangupAll()
347 found = true; in triggerHangupAll()
[all …]
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
DWifiClientTest.java126 boolean found = false; in testAddRemoveNetwork()
129 found = true; in testAddRemoveNetwork()
132 assertTrue(found); in testAddRemoveNetwork()
140 found = false; in testAddRemoveNetwork()
143 found = true; in testAddRemoveNetwork()
147 assertFalse(found); in testAddRemoveNetwork()
221 boolean found = false; in testSaveConfig()
224 found = true; in testSaveConfig()
227 assertTrue(found); in testSaveConfig()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DRemoteInputController.java47 boolean found = pruneWeakThenRemoveAndContains( in addRemoteInput()
49 if (!found) { in addRemoteInput()
108 boolean found = false; in pruneWeakThenRemoveAndContains()
114 found = true; in pruneWeakThenRemoveAndContains()
117 return found; in pruneWeakThenRemoveAndContains()
/frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
DGridTouchSetSelectionTest.java71 boolean found = false; in testSetSelection()
76 found = true; in testSetSelection()
80 assertTrue("Selected item not visible in list", found); in testSetSelection()
/frameworks/opt/calendar/src/com/android/calendarcommon2/
DRecurrenceProcessor.java197 boolean found; in filter()
203 found = listContains(r.bymonth, r.bymonthCount, in filter()
205 if (!found) { in filter()
214 found = listContains(r.byweekno, r.byweeknoCount, in filter()
217 if (!found) { in filter()
225 found = listContains(r.byyearday, r.byyeardayCount, in filter()
227 if (!found) { in filter()
233 found = listContains(r.bymonthday, r.bymonthdayCount, in filter()
236 if (!found) { in filter()
257 found = listContains(r.byhour, r.byhourCount, in filter()
[all …]
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
DBmsgTokenizer.java74 boolean found = false; in next()
90 found = true; in next()
92 } while (!found); in next()
/frameworks/compile/slang/tests/F_reduce_general_bad_function/
Dstderr.txt.expect1 …ma rs reduce(init0)' (reduce_general_bad_function.rs:17:12) must take exactly 1 parameter (found 0)
2 …ma rs reduce(init2)' (reduce_general_bad_function.rs:21:12) must take exactly 1 parameter (found 2)
4 …uce(init2_special1)' (reduce_general_bad_function.rs:29:12) must take exactly 1 parameter (found 2)
5 …uce(init2_special0)' (reduce_general_bad_function.rs:33:12) must take exactly 1 parameter (found 2)
25 … rs reduce(comb0)' (reduce_general_bad_function.rs:142:12) must take exactly 2 parameters (found 0)
26 … rs reduce(comb1)' (reduce_general_bad_function.rs:146:12) must take exactly 2 parameters (found 1)
27 … rs reduce(comb3)' (reduce_general_bad_function.rs:150:12) must take exactly 2 parameters (found 3)
39 …a rs reduce(out0)' (reduce_general_bad_function.rs:203:12) must take exactly 2 parameters (found 0)
40 …a rs reduce(out1)' (reduce_general_bad_function.rs:207:12) must take exactly 2 parameters (found 1)
41 …a rs reduce(out3)' (reduce_general_bad_function.rs:211:12) must take exactly 2 parameters (found 3)
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/bots/
DDirectoryListBot.java75 List<String> found = new ArrayList<>(); in assertDocumentsAbsent() local
78 found.add(label); in assertDocumentsAbsent()
81 if (!found.isEmpty()) { in assertDocumentsAbsent()
83 + ", but present " + found); in assertDocumentsAbsent()
/frameworks/av/media/libstagefright/codecs/aacenc/src/
Ddyn_bits.c387 Flag found = 0; in scfCount() local
422 found = 0; in scfCount()
428 found = 0; in scfCount()
435 found = 1; in scfCount()
456 for (m = i + 1; (m < sectionData->noOfSections) && (found == 0); m++) { in scfCount()
464 found = 1; in scfCount()
484 if (found == 0) { in scfCount()
/frameworks/compile/libbcc/tools/bcc/
DMain.cpp164 unsigned found = plan.find(":"); in extractSourcesAndSlots() local
166 std::string name = plan.substr(0, found); in extractSourcesAndSlots()
170 std::istringstream iss(plan.substr(found + 1)); in extractSourcesAndSlots()
174 found = s.find(","); in extractSourcesAndSlots()
175 std::string sourceStr = s.substr(0, found); in extractSourcesAndSlots()
176 std::string slotStr = s.substr(found + 1); in extractSourcesAndSlots()
/frameworks/av/media/libstagefright/
DMediaCodecList.cpp891 static status_t limitFoundMissingAttr(AString name, const char *attr, bool found = true) { in limitFoundMissingAttr() argument
893 (found ? "" : "no "), attr); in limitFoundMissingAttr()
945 bool found; in addLimit() local
978 (found = msg->findString("default", &def))) { in addLimit()
979 return limitFoundMissingAttr(name, "default", found); in addLimit()
984 if ((name == "aspect-ratio") ^ (found = msg->findString("in", &in_))) { in addLimit()
985 return limitFoundMissingAttr(name, "in", found); in addLimit()
1015 (found = msg->findString("max", &max))) { in addLimit()
1016 return limitFoundMissingAttr(name, "max", found); in addLimit()
1022 (found = msg->findString("ranges", &ranges))) { in addLimit()
[all …]
/frameworks/opt/setupwizard/tools/docs/
DREADME8 Compiled jar version of Doclava. This can be found in out/host/linux-x86/framework/doclava.jar
12 Dependency of Doclava. This can be found in out/host/linux-x86/framework/jsilver.jar after a
/frameworks/av/services/mediaresourcemanager/
DResourceManagerService.cpp236 bool found = false; in removeResource() local
241 found = true; in removeResource()
245 if (!found) { in removeResource()
353 bool found = false; in reclaimResource() local
359 found = true; in reclaimResource()
364 if (found) { in reclaimResource()
368 if (!found) { in reclaimResource()
/frameworks/av/media/ndk/
DNdkImageReader.cpp124 bool found = msg->findPointer(kCallbackFpKey, (void**) &onImageAvailable); in onMessageReceived() local
125 if (!found || onImageAvailable == nullptr) { in onMessageReceived()
129 found = msg->findPointer(kContextKey, &context); in onMessageReceived()
130 if (!found) { in onMessageReceived()
369 bool found = false; in releaseImageLocked() local
375 found = true; in releaseImageLocked()
380 if (!found) { in releaseImageLocked()
/frameworks/rs/api/
DScanner.cpp118 bool found = findOptionalTag(tag); in findTag() local
119 if (!found) { in findTag()
123 return found; in findTag()
/frameworks/base/docs/html/distribute/stories/
Dglu-dh.jd2 …f their game Deer Hunter 2014, leading developer and publisher Glu Mobile found that Google Play g…
22 Mobile found that Google Play games services helped improve the user
39 found through easily recognizable and accessible icons on the game’s home
60 Overall, Glu found that Google Play games services helped identify
/frameworks/base/test-runner/src/android/test/
DViewAsserts.java351 boolean found = false; in assertGroupContains()
354 if (!found) { in assertGroupContains()
355 found = true; in assertGroupContains()
362 assertTrue("group does not contain " + child, found); in assertGroupContains()

12345678910