Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/appsearch/external/localstorage/
H A DAppSearchImplTest.java1405 expectedTypes.addAll(existingSchemas); in testSetSchema()
1408 .containsExactlyElementsIn(expectedTypes); in testSetSchema()
1497 expectedTypes.addAll(existingSchemas); in testRemoveSchema()
1500 .containsExactlyElementsIn(expectedTypes); in testRemoveSchema()
1539 expectedTypes = new ArrayList<>(); in testRemoveSchema()
1540 expectedTypes.addAll(existingSchemas); in testRemoveSchema()
1543 .containsExactlyElementsIn(expectedTypes); in testRemoveSchema()
1602 expectedTypes.addAll(existingSchemas); in testRemoveSchema_differentDataBase()
1639 expectedTypes = new ArrayList<>(); in testRemoveSchema_differentDataBase()
1640 expectedTypes.addAll(existingSchemas); in testRemoveSchema_differentDataBase()
[all …]
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/testapi/
H A DBlockingUserLifecycleListenerTest.java299 @UserLifecycleEventType int... expectedTypes) { in assertEvents() argument
301 assertThat(events).hasSize(expectedTypes.length); in assertEvents()
302 for (int i = 0; i < expectedTypes.length; i++) { in assertEvents()
303 int expectedType = expectedTypes[i]; in assertEvents()
/aosp12/packages/modules/NeuralNetworks/common/
H A DOperationsUtils.cpp35 bool validateOperandTypes(const std::vector<OperandType>& expectedTypes, const char* tag, in validateOperandTypes() argument
38 NN_RET_CHECK_EQ(operandCount, expectedTypes.size()); in validateOperandTypes()
41 NN_RET_CHECK(type == expectedTypes[i]) in validateOperandTypes()
43 << ", expected " << expectedTypes[i]; in validateOperandTypes()
77 const std::vector<OperandType>& expectedTypes) { in validateInputTypes() argument
78 return validateOperandTypes(expectedTypes, "input", context->getNumInputs(), in validateInputTypes()
83 const std::vector<OperandType>& expectedTypes) { in validateOutputTypes() argument
85 expectedTypes, "output", context->getNumOutputs(), in validateOutputTypes()
/aosp12/packages/modules/NeuralNetworks/common/include/
H A DOperationsUtils.h112 const std::vector<OperandType>& expectedTypes);
116 const std::vector<OperandType>& expectedTypes);