Home
last modified time | relevance | path

Searched refs:outList (Results 1 – 4 of 4) sorted by relevance

/packages/modules/NeuralNetworks/runtime/test/
DTestFree.cpp41 const uint32_t outList[]{1}; in createUnfinishedModel() local
43 ANeuralNetworksModel_addOperation(model, ANEURALNETWORKS_FLOOR, 1, inList, 1, outList), in createUnfinishedModel()
45 EXPECT_EQ(ANeuralNetworksModel_identifyInputsAndOutputs(model, 1, inList, 1, outList), in createUnfinishedModel()
DTestValidation.cpp117 const std::vector<uint32_t> outList = {3}; in createModel() local
118 ASSERT_EQ(addOperation(ANEURALNETWORKS_ADD, inList, outList), ANEURALNETWORKS_NO_ERROR); in createModel()
119 ASSERT_EQ(identifyInputsAndOutputs(inList, outList), ANEURALNETWORKS_NO_ERROR); in createModel()
358 uint32_t inList[] = {0, 1, 2}, outList[] = {3}; in createModel() local
360 outList), in createModel()
766 uint32_t outList[1] = {3}; in TEST_F() local
768 outList), in TEST_F()
770 ASSERT_EQ(ANeuralNetworksModel_identifyInputsAndOutputs(valueModel, 3, inList, 1, outList), in TEST_F()
3541 const uint32_t outList[] = {3}; in createAndCompileAddModelWithType() local
3542 EXPECT_EQ(ANeuralNetworksModel_addOperation(model, ANEURALNETWORKS_ADD, 3, inList, 1, outList), in createAndCompileAddModelWithType()
[all …]
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java1303 BluetoothMapMessageListing outList; in sendMessageListingRsp() local
1361 outList = mOutContent.msgListing(folderToList, appParams); in sendMessageListingRsp()
1363 outAppParams.setMessageListingSize(outList.getCount()); in sendMessageListingRsp()
1374 outBytes = outList.encode(mThreadIdSupport, version); in sendMessageListingRsp()
1375 hasUnread = outList.hasUnread(); in sendMessageListingRsp()
1577 BluetoothMapConvoListing outList; in sendConvoListingRsp() local
1598 outList = mOutContent.convoListing(appParams, false); in sendConvoListingRsp()
1599 outAppParams.setConvoListingSize(outList.getCount()); in sendConvoListingRsp()
1601 outBytes = outList.encode(); // Include thread ID for clients that supports it. in sendConvoListingRsp()
1604 outList = mOutContent.convoListing(appParams, true); in sendConvoListingRsp()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/views/
DBaseDragLayer.java235 protected void addAccessibleChildToList(View child, ArrayList<View> outList) { in addAccessibleChildToList() argument
237 outList.add(child); in addAccessibleChildToList()
239 child.addChildrenForAccessibility(outList); in addAccessibleChildToList()