/packages/apps/Gallery2/src/com/android/photos/data/ |
D | PhotoProvider.java | 73 public static final String TABLE = "accounts"; field 77 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE); 95 public static final String TABLE = "photos"; field 97 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE); 134 public static final String TABLE = "albums"; field 136 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE); 171 public static final String TABLE = "metadata"; field 173 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE); 218 + Albums.TABLE; 220 + Photos.TABLE; [all …]
|
D | PhotoDatabase.java | 88 createTable(db, Accounts.TABLE, getAccountTableDefinition()); in onCreate() 89 createTable(db, Albums.TABLE, getAlbumTableDefinition()); in onCreate() 90 createTable(db, Photos.TABLE, getPhotoTableDefinition()); in onCreate() 91 createTable(db, Metadata.TABLE, getMetadataTableDefinition()); in onCreate() 113 dropTable(db, Metadata.TABLE); in recreate() 114 dropTable(db, Photos.TABLE); in recreate() 115 dropTable(db, Albums.TABLE); in recreate() 116 dropTable(db, Accounts.TABLE); in recreate()
|
/packages/apps/Dialer/java/com/android/dialer/calllog/database/ |
D | AnnotatedCallLogDatabaseHelper.java | 37 .append("create table if not exists " + AnnotatedCallLog.TABLE + " (") 48 + AnnotatedCallLog.TABLE 50 + AnnotatedCallLog.TABLE 53 + AnnotatedCallLog.TABLE 59 + AnnotatedCallLog.TABLE 62 + AnnotatedCallLog.TABLE
|
D | AnnotatedCallLogContentProvider.java | 59 AnnotatedCallLogContract.AUTHORITY, AnnotatedCallLog.TABLE, ANNOTATED_CALL_LOG_TABLE_CODE); in uriMatcher.addURI() argument 62 AnnotatedCallLog.TABLE + "/#", in uriMatcher.addURI() argument 66 CoalescedAnnotatedCallLog.TABLE, in uriMatcher.addURI() argument 98 queryBuilder.setTables(AnnotatedCallLog.TABLE); in query() 169 long id = database.insert(AnnotatedCallLog.TABLE, null, values); in insert() 205 int rows = database.delete(AnnotatedCallLog.TABLE, selection, selectionArgs); in delete() 243 int rows = database.update(AnnotatedCallLog.TABLE, values, selection, selectionArgs); in update()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | ContactAggregator2.java | 468 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS, in updateAggregationAfterVisibilityChange() 513 final Cursor c = db.query(AggregateExceptionQuery.TABLE, in updateMatchScoresBasedOnExceptions() 559 Cursor c = db.query(IdentityLookupMatchQuery.TABLE, IdentityLookupMatchQuery.COLUMNS, in updateMatchScoresBasedOnIdentityMatch() 583 Cursor c = db.query(NameLookupMatchQuery.TABLE, NameLookupMatchQuery.COLUMNS, in updateMatchScoresBasedOnNameMatches() 613 Cursor c = db.query(EmailLookupQuery.TABLE, EmailLookupQuery.COLUMNS, in updateMatchScoresBasedOnEmailMatches() 644 Cursor c = db.query(NameLookupMatchQueryWithParameter.TABLE, in updateMatchScoresBasedOnNameMatches() 670 Cursor c = db.query(PhoneLookupQuery.TABLE, PhoneLookupQuery.COLUMNS, in updateMatchScoresBasedOnPhoneMatches() 717 String TABLE = Tables.NAME_LOOKUP_JOIN_RAW_CONTACTS; field 740 final Cursor c = db.query(ContactNameLookupQuery.TABLE, ContactNameLookupQuery.COLUMNS, in matchAllCandidates() 814 final Cursor c = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS, in findMatchingContacts() [all …]
|
D | ContactAggregator.java | 483 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS, in updateAggregationAfterVisibilityChange() 523 String TABLE = Tables.AGGREGATION_EXCEPTIONS field 562 final Cursor c = db.query(AggregateExceptionQuery.TABLE, in pickBestMatchBasedOnExceptions() 687 final String TABLE = Tables.DATA + " dataA" field 717 Cursor c = db.query(IdentityLookupMatchQuery.TABLE, IdentityLookupMatchQuery.COLUMNS, in updateMatchScoresBasedOnIdentityMatch() 732 String TABLE = Tables.NAME_LOOKUP + " nameA" field 763 Cursor c = db.query(NameLookupMatchQuery.TABLE, NameLookupMatchQuery.COLUMNS, in updateMatchScoresBasedOnNameMatches() 788 Cursor c = db.query(EmailLookupQuery.TABLE, EmailLookupQuery.COLUMNS, in updateMatchScoresBasedOnEmailMatches() 805 Cursor c = db.query(PhoneLookupQuery.TABLE, PhoneLookupQuery.COLUMNS, in updateMatchScoresBasedOnPhoneMatches() 847 String TABLE = Tables.NAME_LOOKUP_JOIN_RAW_CONTACTS; field [all …]
|
D | AbstractContactAggregator.java | 562 public static final String TABLE = Tables.RAW_CONTACTS; field in AbstractContactAggregator.RawContactIdAndAggregationModeQuery 577 Cursor cursor = db.query(RawContactIdAndAggregationModeQuery.TABLE, in markContactForAggregation() 657 public static final String TABLE = Tables.RAW_CONTACTS; field in AbstractContactAggregator.RawContactIdAndAccountQuery 682 Cursor cursor = db.query(RawContactIdAndAccountQuery.TABLE, in aggregateContact() 889 public static final String TABLE = Tables.RAW_CONTACTS; field in AbstractContactAggregator.RawContactIdQuery 942 String TABLE = Tables.AGGREGATION_EXCEPTIONS; field 969 final Cursor c = db.query(AggregateExceptionPrefetchQuery.TABLE, in prefetchAggregationExceptionIds() 988 String TABLE = Tables.NAME_LOOKUP; field 1007 Cursor c = db.query(NameLookupQuery.TABLE, NameLookupQuery.COLUMNS, in loadNameMatchCandidates() 1024 String TABLE = Tables.AGGREGATION_EXCEPTIONS field [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/data/ |
D | FilterStackSource.java | 63 ret = (-1 != database.insert(FilterStack.TABLE, null, val)); in insertStack() 76 database.update(FilterStack.TABLE, val, FilterStack._ID + " = ?", in updateStackName() 88 ret = (0 != database.delete(FilterStack.TABLE, FilterStack._ID + " = ?", in removeStack() 100 database.delete(FilterStack.TABLE, null, null); in removeAllStacks() 112 c = database.query(FilterStack.TABLE, in getStack() 136 c = database.query(FilterStack.TABLE, in getAllUserPresets() 173 c = database.query(FilterStack.TABLE, in getAllStacks()
|
D | FilterStackDBHelper.java | 33 public static final String TABLE = "filterstack"; field 60 createTable(db, FilterStack.TABLE, CREATE_FILTER_STACK); in onCreate() 65 dropTable(db, FilterStack.TABLE); in onUpgrade()
|
/packages/apps/Dialer/java/com/android/dialer/calllog/database/contract/ |
D | AnnotatedCallLogContract.java | 61 public static final String TABLE = "AnnotatedCallLog"; field in AnnotatedCallLogContract.AnnotatedCallLog 65 Uri.withAppendedPath(AnnotatedCallLogContract.CONTENT_URI, TABLE); 93 public static final String TABLE = "CoalescedAnnotatedCallLog"; field in AnnotatedCallLogContract.CoalescedAnnotatedCallLog 97 Uri.withAppendedPath(AnnotatedCallLogContract.CONTENT_URI, TABLE);
|
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/ |
D | TestProvider.java | 68 /* package */static final int TABLE = 100; field in TestProvider 120 sURIMatcher.addURI(AUTHORITY, table, TABLE); in insert() 140 case TABLE: in query() 179 case TABLE: in update() 217 case TABLE: in update()
|
D | TestProviderTests.java | 107 assertEquals(TestProvider.TABLE, TestProvider.sURIMatcher.match(uri)); in testInsertQueryandDelete()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/ |
D | CommonNicknameCache.java | 49 public final static String TABLE = Tables.NICKNAME_LOOKUP; field in CommonNicknameCache.NicknameLookupPreloadQuery 72 Cursor cursor = mDb.query(NicknameLookupPreloadQuery.TABLE, in preloadNicknameBloomFilter() 127 String TABLE = Tables.NICKNAME_LOOKUP; field 138 Cursor cursor = mDb.query(NicknameLookupQuery.TABLE, NicknameLookupQuery.COLUMNS, in loadNicknameClusters()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | DataRowHandlerForGroupMembership.java | 45 String TABLE = Tables.RAW_CONTACTS; field 194 Cursor c = db.query(RawContactsQuery.TABLE, RawContactsQuery.COLUMNS,
|
D | ContactsProvider2.java | 497 public static final String TABLE = "data " field 522 String TABLE = Tables.RAW_CONTACTS_JOIN_ACCOUNTS; field 2563 String TABLE = Tables.RAW_CONTACTS_JOIN_METADATA_SYNC; field 2581 final Cursor cursor = db.query(MetadataSyncQuery.TABLE, in queryMetadataSyncData() 3441 cursor = db.query(DataContactsQuery.TABLE, DataContactsQuery.PROJECTION, in insertStatusUpdate() 4378 String TABLE = Views.GROUPS; field 4426 final Cursor c = db.query(GroupAccountQuery.TABLE, GroupAccountQuery.COLUMNS, in updateGroups() 4569 Cursor cursor = db.query(RawContactsQuery.TABLE, RawContactsQuery.COLUMNS, in updateRawContact() 4948 String TABLE = Tables.RAW_CONTACTS; field 4969 final Cursor cursor = db.query(RawContactsBackupQuery.TABLE, in queryRawContactId() [all …]
|
D | DataRowHandler.java | 45 public static final String TABLE = Tables.DATA_JOIN_MIMETYPES; field 343 Cursor c = db.query(DataDeleteQuery.TABLE, in fixPrimary()
|
D | ContactsDatabaseHelper.java | 795 public static final String TABLE = Tables.DATA; field 811 public static final String TABLE = Tables.DATA; field 828 public static final String TABLE = Tables.DATA; field 2854 Cursor cursor = db.query(StructuredNameQuery.TABLE, StructuredNameQuery.COLUMNS, in insertStructuredNameLookup() 2876 Cursor cursor = db.query(EmailQuery.TABLE, EmailQuery.COLUMNS, in insertEmailLookup() 2898 Cursor cursor = db.query(NicknameQuery.TABLE, NicknameQuery.COLUMNS, in insertNicknameLookup()
|