Home
last modified time | relevance | path

Searched refs:UriType (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/phonelookup/database/
DPhoneLookupHistoryContentProvider.java64 @IntDef({UriType.PHONE_LOOKUP_HISTORY_TABLE_CODE, UriType.PHONE_LOOKUP_HISTORY_TABLE_ID_CODE})
65 private @interface UriType { annotation in PhoneLookupHistoryContentProvider
100 @UriType int uriType = uriType(uri); in query()
102 case UriType.PHONE_LOOKUP_HISTORY_TABLE_ID_CODE: in query()
109 case UriType.PHONE_LOOKUP_HISTORY_TABLE_CODE: in query()
137 @UriType int uriType = uriType(uri); in insert()
139 case UriType.PHONE_LOOKUP_HISTORY_TABLE_CODE: in insert()
144 case UriType.PHONE_LOOKUP_HISTORY_TABLE_ID_CODE: in insert()
184 @UriType int uriType = uriType(uri); in delete()
186 case UriType.PHONE_LOOKUP_HISTORY_TABLE_CODE: in delete()
[all …]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DVoicemailUriType.java18 import com.android.providers.contacts.util.UriType;
23 enum VoicemailUriType implements UriType {
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
DTypedUriMatcherImplTest.java35 private static enum TestUriType implements UriType {
93 private void assertUriTypeMatch(UriType expectedType, String uri) { in assertUriTypeMatch()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
DUriType.java21 public interface UriType { interface
DTypedUriMatcher.java25 public interface TypedUriMatcher<T extends UriType> {
DTypedUriMatcherImpl.java26 public class TypedUriMatcherImpl<T extends UriType> implements TypedUriMatcher<T> {