Home
last modified time | relevance | path

Searched refs:firstValue (Results 1 – 7 of 7) sorted by relevance

/aosp12/frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
H A DSettingsProviderPerformanceTest.java54 String firstValue = getStringViaFrontEndApiSetting(SETTING_TYPE_GLOBAL, in testSetAndGetPerformanceForGlobalViaFrontEndApi() local
56 assertEquals("Setting value didn't change", FAKE_SETTING_VALUE, firstValue); in testSetAndGetPerformanceForGlobalViaFrontEndApi()
98 String firstValue = getStringViaFrontEndApiSetting(SETTING_TYPE_GLOBAL, in testSetAndGetPerformanceForGlobalViaProviderApi() local
100 assertEquals("Setting value didn't change", FAKE_SETTING_VALUE, firstValue); in testSetAndGetPerformanceForGlobalViaProviderApi()
H A DSettingsProviderTest.java236 String firstValue = queryStringViaProviderApi(SETTING_TYPE_SYSTEM, FAKE_SETTING_NAME, in testQueryStringWithAppendedNameToUriViaProviderApi() local
238 assertEquals("Setting must be present", FAKE_SETTING_VALUE, firstValue); in testQueryStringWithAppendedNameToUriViaProviderApi()
481 String firstValue = queryStringViaProviderApi(type, FAKE_SETTING_NAME, true, false); in doTestQueryStringInBracketsViaProviderApiForType() local
482 assertEquals("Setting must be present", FAKE_SETTING_VALUE, firstValue); in doTestQueryStringInBracketsViaProviderApiForType()
522 String firstValue = queryStringViaProviderApi(type, FAKE_SETTING_NAME); in toTestBulkInsertViaProviderApiForType() local
523 assertEquals("First setting must be present", FAKE_SETTING_VALUE, firstValue); in toTestBulkInsertViaProviderApiForType()
/aosp12/packages/apps/Messaging/src/com/android/messaging/util/
H A DOsUtil.java171 boolean firstValue = true; in joinFromSetWithDelimiter()
173 if (firstValue) { in joinFromSetWithDelimiter()
174 firstValue = false; in joinFromSetWithDelimiter()
/aosp12/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
H A DPduParser.java1486 int firstValue = extractByteValue(pduDataStream); in parseContentTypeParams() local
1489 if (((firstValue > TEXT_MIN) && (firstValue < TEXT_MAX)) || in parseContentTypeParams()
1490 (END_STRING_FLAG == firstValue)) { in parseContentTypeParams()
/aosp12/packages/apps/Messaging/src/android/support/v7/mms/pdu/
H A DPduParser.java1449 int firstValue = extractByteValue(pduDataStream); in parseContentTypeParams() local
1452 if (((firstValue > TEXT_MIN) && (firstValue < TEXT_MAX)) || in parseContentTypeParams()
1453 (END_STRING_FLAG == firstValue)) { in parseContentTypeParams()
/aosp12/frameworks/base/telephony/common/com/google/android/mms/pdu/
H A DPduParser.java1460 int firstValue = extractByteValue(pduDataStream); in parseContentTypeParams() local
1463 if (((firstValue > TEXT_MIN) && (firstValue < TEXT_MAX)) || in parseContentTypeParams()
1464 (END_STRING_FLAG == firstValue)) { in parseContentTypeParams()
/aosp12/frameworks/layoutlib/bridge/src/android/content/res/
H A DResources_Delegate.java392 String firstValue = resolveReference(resources, rv); in getIntArray() local
393 if (firstValue != null) { in getIntArray()
395 return new int[]{getInt(firstValue)}; in getIntArray()
398 "Integer resource array contains non-integer value: \"" + firstValue + "\"", in getIntArray()