Home
last modified time | relevance | path

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

/packages/apps/Calendar/src/com/android/calendar/
DCalendarUtils.kt243 val values2 = ContentValues() in setTimeZone() constant
244 values2.put(CalendarCache.VALUE, mHomeTZ) in setTimeZone()
245 mHandler?.startUpdate(mToken, null, CalendarCache.URI, values2, in setTimeZone()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DVoicemailProviderTest.java746 ContentValues values2 = new ContentValues(); in testStatusUpsert() local
747 values2.put(Status.CONFIGURATION_STATE, Status.CONFIGURATION_STATE_NOT_CONFIGURED); in testStatusUpsert()
749 Uri uri = mResolver.insert(statusUri(), values2); in testStatusUpsert()
794 ContentValues values2 = new ContentValues(); in testStatusQuotaUpsert() local
795 values2.put(Status.QUOTA_TOTAL, 13); in testStatusQuotaUpsert()
796 mResolver.insert(uri, values2); in testStatusQuotaUpsert()
DContactsProvider2Test.java1790 ContentValues values2 = new ContentValues(); in testPhonesFilterQueryInter() local
1791 values2.put(Contacts.DISPLAY_NAME, "Chilled Guacamole"); in testPhonesFilterQueryInter()
1792 values2.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE); in testPhonesFilterQueryInter()
1793 values2.put(Phone.NUMBER, "0@example.com"); in testPhonesFilterQueryInter()
1794 values2.put(Phone.TYPE, Phone.TYPE_PAGER); in testPhonesFilterQueryInter()
1795 values2.putNull(Phone.LABEL); in testPhonesFilterQueryInter()
1805 assertStoredValues(filterUri6, new ContentValues[]{values1, values2, values3}); in testPhonesFilterQueryInter()
1839 assertStoredValues(filterUri6, new ContentValues[] {values1, values2, values3} ); in testPhonesFilterQueryInter()
2726 ContentValues values2 = new ContentValues(); in testCallablesQuery() local
2727 values2.put(Data._ID, sipAddressId2); in testCallablesQuery()
[all …]
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
DTelephonyProviderTest.java1845 ContentValues values2 = new ContentValues(); in testApnSetId() local
1848 values2.put(Carriers.APN, otherApn); in testApnSetId()
1849 values2.put(Carriers.NAME, otherName); in testApnSetId()
1850 values2.put(Carriers.NUMERIC, TEST_OPERATOR); in testApnSetId()
1851 values2.put(Carriers.APN_SET_ID, 1); in testApnSetId()
1855 Log.d(TAG, "testApnSetId: inserting contentValues=" + values1 + ", " + values2); in testApnSetId()
1857 mContentResolver.insert(CONTENT_URI_WITH_SUBID, values2); in testApnSetId()
1891 ContentValues values2 = new ContentValues(); in testPreferApnSetUrl() local
1894 values2.put(Carriers.APN, apn2); in testPreferApnSetUrl()
1895 values2.put(Carriers.NAME, name2); in testPreferApnSetUrl()
[all …]
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/
DTriggerTest.java236 JSONObject values2 = new JSONObject(); in testEqualsFail() local
237 values2.put("geoValue", 1664); in testEqualsFail()
242 .setAggregateValues(values2.toString()).build()); in testEqualsFail()
/packages/providers/MediaProvider/tests/src/com/android/providers/media/
DMediaProviderTest.java581 final ContentValues values2 = new ContentValues(); in testBulkInsert() local
582 values2.put(MediaColumns.DISPLAY_NAME, "test2.mp3"); in testBulkInsert()
583 values2.put(MediaColumns.MIME_TYPE, "audio/mpeg"); in testBulkInsert()
588 new ContentValues[] { values1, values2 })); in testBulkInsert()
/packages/apps/Contacts/src/com/android/contacts/model/
DRawContactModifier.java499 protected static boolean areEqual(ValuesDelta values1, ContentValues values2, DataKind kind) { in areEqual() argument
504 final String value2 = values2.getAsString(field.column); in areEqual()