Searched refs:values2 (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Calendar/src/com/android/calendar/ |
D | CalendarUtils.kt | 243 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/ |
D | VoicemailProviderTest.java | 746 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()
|
D | ContactsProvider2Test.java | 1847 ContentValues values2 = new ContentValues(); in testPhonesFilterQueryInter() local 1848 values2.put(Contacts.DISPLAY_NAME, "Chilled Guacamole"); in testPhonesFilterQueryInter() 1849 values2.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE); in testPhonesFilterQueryInter() 1850 values2.put(Phone.NUMBER, "0@example.com"); in testPhonesFilterQueryInter() 1851 values2.put(Phone.TYPE, Phone.TYPE_PAGER); in testPhonesFilterQueryInter() 1852 values2.putNull(Phone.LABEL); in testPhonesFilterQueryInter() 1862 assertStoredValues(filterUri6, new ContentValues[]{values1, values2, values3}); in testPhonesFilterQueryInter() 1896 assertStoredValues(filterUri6, new ContentValues[] {values1, values2, values3} ); in testPhonesFilterQueryInter() 2806 ContentValues values2 = new ContentValues(); in testCallablesQuery() local 2807 values2.put(Data._ID, sipAddressId2); in testCallablesQuery() [all …]
|
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/ |
D | TelephonyProviderTest.java | 1890 ContentValues values2 = new ContentValues(); in testApnSetId() local 1893 values2.put(Carriers.APN, otherApn); in testApnSetId() 1894 values2.put(Carriers.NAME, otherName); in testApnSetId() 1895 values2.put(Carriers.NUMERIC, TEST_OPERATOR); in testApnSetId() 1896 values2.put(Carriers.APN_SET_ID, 1); in testApnSetId() 1900 Log.d(TAG, "testApnSetId: inserting contentValues=" + values1 + ", " + values2); in testApnSetId() 1902 mContentResolver.insert(CONTENT_URI_WITH_SUBID, values2); in testApnSetId() 1936 ContentValues values2 = new ContentValues(); in testPreferApnSetUrl() local 1939 values2.put(Carriers.APN, apn2); in testPreferApnSetUrl() 1940 values2.put(Carriers.NAME, name2); in testPreferApnSetUrl() [all …]
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/src/com/android/adservices/service/measurement/ |
D | TriggerTest.java | 254 JSONObject values2 = new JSONObject(); in testEqualsFail() local 255 values2.put("geoValue", 1664); in testEqualsFail() 262 .setAggregateValuesString(values2.toString()) in testEqualsFail()
|
/packages/providers/MediaProvider/tests/src/com/android/providers/media/ |
D | MediaProviderTest.java | 694 final ContentValues values2 = new ContentValues(); in testBulkInsert() local 695 values2.put(MediaColumns.DISPLAY_NAME, "test2.mp3"); in testBulkInsert() 696 values2.put(MediaColumns.MIME_TYPE, "audio/mpeg"); in testBulkInsert() 701 new ContentValues[] { values1, values2 })); in testBulkInsert()
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
D | RawContactModifier.java | 499 protected static boolean areEqual(ValuesDelta values1, ContentValues values2, DataKind kind) { in areEqual() argument 504 final String value2 = values2.getAsString(field.column); in areEqual()
|