Home
last modified time | relevance | path

Searched refs:rowUri (Results 1 – 4 of 4) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DBaseContactsProvider2Test.java899 protected void assertStoredValue(Uri rowUri, String column, Object expectedValue) { in assertStoredValue() argument
900 String value = getStoredValue(rowUri, column); in assertStoredValue()
908 protected void assertStoredValue(Uri rowUri, String selection, String[] selectionArgs, in assertStoredValue() argument
910 String value = getStoredValue(rowUri, selection, selectionArgs, column); in assertStoredValue()
918 protected String getStoredValue(Uri rowUri, String column) { in getStoredValue() argument
919 return getStoredValue(rowUri, null, null, column); in getStoredValue()
958 protected void assertStoredValues(Uri rowUri, ContentValues expectedValues) { in assertStoredValues() argument
959 assertStoredValues(rowUri, null, null, expectedValues); in assertStoredValues()
962 protected void assertStoredValues(Uri rowUri, ContentValues... expectedValues) { in assertStoredValues() argument
963 assertStoredValues(rowUri, null, null, expectedValues); in assertStoredValues()
[all …]
DTestUtils.java239 final Uri rowUri = resolver.insert(tableUri, values); in insertRawContact() local
243 final long rid = Long.parseLong(rowUri.getLastPathSegment()); in insertRawContact()
259 return rowUri; in insertRawContact()
DContactsProvider2Test.java978 Uri rowUri = mResolver.insert(RawContacts.CONTENT_URI, values); in testRawContactsInsert() local
979 long rawContactId = ContentUris.parseId(rowUri); in testRawContactsInsert()
984 assertStoredValues(rowUri, values); in testRawContactsInsert()
4408 Uri rowUri = mResolver.insert(Groups.CONTENT_URI, values); in testGroupInsert() local
4411 assertStoredValues(rowUri, values); in testGroupInsert()
/packages/apps/TV/src/com/android/tv/tuner/
DTunerPreferenceProvider.java186 Uri rowUri = buildPreferenceUri(values.getAsString(Preferences.COLUMN_KEY)); in insertRow() local
187 getContext().getContentResolver().notifyChange(rowUri, null); in insertRow()
188 return rowUri; in insertRow()