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.java878 ContentValues outputValues = list.get(0).getAfter(); in testMigratePostalFromGoogleToExchange() local
880 assertNull(outputValues.getAsString(StructuredPostal.FORMATTED_ADDRESS)); in testMigratePostalFromGoogleToExchange()
881 assertEquals("formatted_address", outputValues.getAsString(StructuredPostal.STREET)); in testMigratePostalFromGoogleToExchange()
905 ContentValues outputValues = list.get(0).getAfter(); in testMigratePostalFromExchangeToGoogle() local
908 String formattedAddress = outputValues.getAsString(StructuredPostal.FORMATTED_ADDRESS); in testMigratePostalFromExchangeToGoogle()
944 ContentValues outputValues = list.get(0).getAfter(); in testMigrateEventCommon() local
946 assertEquals("1972-02-08", outputValues.getAsString(Event.START_DATE)); in testMigrateEventCommon()
947 assertEquals(Event.TYPE_BIRTHDAY, outputValues.getAsInteger(Event.TYPE).intValue()); in testMigrateEventCommon()
975 ContentValues outputValues = list.get(0).getAfter(); in testMigrateEventFromGoogleToExchange2() local
978 assertEquals("1990-06-01", outputValues.getAsString(Event.START_DATE)); in testMigrateEventFromGoogleToExchange2()
[all …]
/packages/modules/NeuralNetworks/runtime/test/
DTestValidateOperations.cpp1275 ANeuralNetworksOperandType outputValues = getOpType(inputOperandType, 4, outputDimensions); in topkV2Test() local
1278 OperationTestBase test(ANEURALNETWORKS_TOPK_V2, {input, k}, {outputValues, outputIndices}); in topkV2Test()