Searched refs:rowUri (Results 1 – 3 of 3) sorted by relevance
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | BaseContactsProvider2Test.java | 891 protected void assertStoredValue(Uri rowUri, String column, Object expectedValue) { in assertStoredValue() argument 892 String value = getStoredValue(rowUri, column); in assertStoredValue() 900 protected void assertStoredValue(Uri rowUri, String selection, String[] selectionArgs, in assertStoredValue() argument 902 String value = getStoredValue(rowUri, selection, selectionArgs, column); in assertStoredValue() 910 protected String getStoredValue(Uri rowUri, String column) { in getStoredValue() argument 911 return getStoredValue(rowUri, null, null, column); in getStoredValue() 950 protected void assertStoredValues(Uri rowUri, ContentValues expectedValues) { in assertStoredValues() argument 951 assertStoredValues(rowUri, null, null, expectedValues); in assertStoredValues() 954 protected void assertStoredValues(Uri rowUri, ContentValues... expectedValues) { in assertStoredValues() argument 955 assertStoredValues(rowUri, null, null, expectedValues); in assertStoredValues() [all …]
|
D | ContactsProvider2Test.java | 956 Uri rowUri = mResolver.insert(RawContacts.CONTENT_URI, values); in testRawContactsInsert() local 957 long rawContactId = ContentUris.parseId(rowUri); in testRawContactsInsert() 959 assertStoredValues(rowUri, values); in testRawContactsInsert() 4340 Uri rowUri = mResolver.insert(Groups.CONTENT_URI, values); in testGroupInsert() local 4343 assertStoredValues(rowUri, values); in testGroupInsert()
|
/packages/apps/TV/usbtuner/src/com/android/usbtuner/ |
D | UsbTunerPreferenceProvider.java | 193 Uri rowUri = buildPreferenceUri(values.getAsString(Preferences.COLUMN_KEY)); in insertRow() local 194 getContext().getContentResolver().notifyChange(rowUri, null); in insertRow() 195 return rowUri; in insertRow()
|