Home
last modified time | relevance | path

Searched refs:outputValues (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Contacts/tests/src/com/android/contacts/model/
DRawContactModifierTests.java879 ContentValues outputValues = list.get(0).getAfter(); in testMigratePostalFromGoogleToExchange() local
881 assertNull(outputValues.getAsString(StructuredPostal.FORMATTED_ADDRESS)); in testMigratePostalFromGoogleToExchange()
882 assertEquals("formatted_address", outputValues.getAsString(StructuredPostal.STREET)); in testMigratePostalFromGoogleToExchange()
906 ContentValues outputValues = list.get(0).getAfter(); in testMigratePostalFromExchangeToGoogle() local
909 String formattedAddress = outputValues.getAsString(StructuredPostal.FORMATTED_ADDRESS); in testMigratePostalFromExchangeToGoogle()
945 ContentValues outputValues = list.get(0).getAfter(); in testMigrateEventCommon() local
947 assertEquals("1972-02-08", outputValues.getAsString(Event.START_DATE)); in testMigrateEventCommon()
948 assertEquals(Event.TYPE_BIRTHDAY, outputValues.getAsInteger(Event.TYPE).intValue()); in testMigrateEventCommon()
976 ContentValues outputValues = list.get(0).getAfter(); in testMigrateEventFromGoogleToExchange2() local
979 assertEquals("1990-06-01", outputValues.getAsString(Event.START_DATE)); in testMigrateEventFromGoogleToExchange2()
[all …]
/packages/modules/NeuralNetworks/runtime/test/
DTestValidateOperations.cpp1286 ANeuralNetworksOperandType outputValues = getOpType(inputOperandType, 4, outputDimensions); in topkV2Test() local
1289 OperationTestBase test(ANEURALNETWORKS_TOPK_V2, {input, k}, {outputValues, outputIndices}); in topkV2Test()