Searched refs:TABLE (Results 1 - 12 of 12) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DCommonNicknameCache.java48 public final static String TABLE = Tables.NICKNAME_LOOKUP; field in class:CommonNicknameCache.NicknameLookupPreloadQuery
71 Cursor cursor = mDb.query(NicknameLookupPreloadQuery.TABLE,
123 String TABLE = Tables.NICKNAME_LOOKUP; field in interface:CommonNicknameCache.NicknameLookupQuery
134 Cursor cursor = mDb.query(NicknameLookupQuery.TABLE, NicknameLookupQuery.COLUMNS,
H A DLegacyContactImporter.java236 String TABLE = "groups"; field in interface:LegacyContactImporter.GroupsQuery
280 Cursor c = mSourceDb.query(GroupsQuery.TABLE, GroupsQuery.COLUMNS, null, null,
316 String TABLE = "people"; field in interface:LegacyContactImporter.PeopleQuery
498 Cursor c = mSourceDb.query(PeopleQuery.TABLE, columns, "name IS NULL", null, null,
514 c = mSourceDb.query(PeopleQuery.TABLE, columns, "name IS NOT NULL", null, null, null,
675 String TABLE = "organizations"; field in interface:LegacyContactImporter.OrganizationsQuery
713 Cursor c = mSourceDb.query(OrganizationsQuery.TABLE, OrganizationsQuery.COLUMNS, null, null,
740 String TABLE = "contact_methods"; field in interface:LegacyContactImporter.ContactMethodsQuery
825 Cursor c = mSourceDb.query(ContactMethodsQuery.TABLE, ContactMethodsQuery.COLUMNS, null,
900 String TABLE field in interface:LegacyContactImporter.PhonesQuery
1012 String TABLE = "photos"; field in interface:LegacyContactImporter.PhotosQuery
1087 String TABLE = "groupmembership"; field in interface:LegacyContactImporter.GroupMembershipQuery
1165 String TABLE = "calls"; field in interface:LegacyContactImporter.CallsQuery
1230 String TABLE = "_deleted_people"; field in interface:LegacyContactImporter.DeletedPeopleQuery
[all...]
H A DContactAggregator.java514 public static final String TABLE = Tables.RAW_CONTACTS; field in class:ContactAggregator.RawContactIdAndAggregationModeQuery
529 Cursor cursor = db.query(RawContactIdAndAggregationModeQuery.TABLE,
565 public static final String TABLE = Tables.RAW_CONTACTS; field in class:ContactAggregator.RawContactIdAndAccountQuery
594 Cursor cursor = db.query(RawContactIdAndAccountQuery.TABLE,
852 public static final String TABLE = Tables.RAW_CONTACTS; field in class:ContactAggregator.RawContactIdQuery
883 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS,
946 String TABLE = Tables.AGGREGATION_EXCEPTIONS; field in interface:ContactAggregator.AggregateExceptionPrefetchQuery
973 final Cursor c = db.query(AggregateExceptionPrefetchQuery.TABLE,
992 String TABLE = Tables.AGGREGATION_EXCEPTIONS field in interface:ContactAggregator.AggregateExceptionQuery
1031 final Cursor c = db.query(AggregateExceptionQuery.TABLE,
1137 String TABLE = Tables.NAME_LOOKUP; field in interface:ContactAggregator.NameLookupQuery
1192 final String TABLE = Tables.DATA + " dataA" field in interface:ContactAggregator.IdentityLookupMatchQuery
1237 String TABLE = Tables.NAME_LOOKUP + " nameA" field in interface:ContactAggregator.NameLookupMatchQuery
1290 String TABLE = Tables.NAME_LOOKUP field in interface:ContactAggregator.NameLookupMatchQueryWithParameter
1386 String TABLE = Tables.DATA + " dataA" field in interface:ContactAggregator.EmailLookupQuery
1425 String TABLE = Tables.PHONE_LOOKUP + " phoneA" field in interface:ContactAggregator.PhoneLookupQuery
1495 String TABLE = Tables.NAME_LOOKUP_JOIN_RAW_CONTACTS; field in interface:ContactAggregator.ContactNameLookupQuery
[all...]
H A DDataRowHandlerForGroupMembership.java44 String TABLE = Tables.RAW_CONTACTS; field in interface:DataRowHandlerForGroupMembership.RawContactsQuery
194 Cursor c = db.query(RawContactsQuery.TABLE, RawContactsQuery.COLUMNS,
H A DDataRowHandler.java41 public static final String TABLE = Tables.DATA_JOIN_MIMETYPES; field in interface:DataRowHandler.DataDeleteQuery
273 Cursor c = db.query(DataDeleteQuery.TABLE,
H A DContactsDatabaseHelper.java780 db.execSQL("CREATE TABLE IF NOT EXISTS " + DATABASE_PRESENCE + "." + Tables.PRESENCE + " ("+
799 db.execSQL("CREATE TABLE IF NOT EXISTS "
868 db.execSQL("CREATE TABLE " + Tables.CONTACTS + " (" +
892 db.execSQL("CREATE TABLE " + Tables.RAW_CONTACTS + " (" +
946 db.execSQL("CREATE TABLE " + Tables.STREAM_ITEMS + " (" +
962 db.execSQL("CREATE TABLE " + Tables.STREAM_ITEM_PHOTOS + " (" +
974 db.execSQL("CREATE TABLE " + Tables.PHOTO_FILES + " (" +
986 db.execSQL("CREATE TABLE " + Tables.PACKAGES + " (" +
992 db.execSQL("CREATE TABLE " + Tables.MIMETYPES + " (" +
1003 db.execSQL("CREATE TABLE "
2493 String TABLE = Tables.DATA_JOIN_RAW_CONTACTS; field in interface:ContactsDatabaseHelper.StructName205Query
2623 String TABLE = Tables.DATA_JOIN_RAW_CONTACTS; field in interface:ContactsDatabaseHelper.Organization205Query
2715 public static final String TABLE = Tables.DATA; field in class:ContactsDatabaseHelper.Upgrade303Query
2960 public static final String TABLE = Tables.DATA; field in class:ContactsDatabaseHelper.StructuredNameQuery
3029 public static final String TABLE = Tables.DATA; field in class:ContactsDatabaseHelper.OrganizationQuery
3048 public static final String TABLE = Tables.DATA; field in class:ContactsDatabaseHelper.EmailQuery
3087 public static final String TABLE = Tables.DATA; field in class:ContactsDatabaseHelper.NicknameQuery
[all...]
H A DContactsProvider2.java429 public static final String TABLE = "data " field in interface:ContactsProvider2.DataContactsQuery
451 String TABLE = Tables.RAW_CONTACTS; field in interface:ContactsProvider2.RawContactsQuery
3293 cursor = mActiveDb.get().query(DataContactsQuery.TABLE, DataContactsQuery.PROJECTION,
4265 Cursor cursor = mActiveDb.get().query(RawContactsQuery.TABLE, RawContactsQuery.COLUMNS,
6193 String TABLE = Views.RAW_CONTACTS; field in interface:ContactsProvider2.LookupBySourceIdQuery
6222 Cursor c = db.query(LookupBySourceIdQuery.TABLE, LookupBySourceIdQuery.COLUMNS,
6250 String TABLE = Views.RAW_CONTACTS; field in interface:ContactsProvider2.LookupByRawContactIdQuery
6279 Cursor c = db.query(LookupByRawContactIdQuery.TABLE, LookupByRawContactIdQuery.COLUMNS,
6307 String TABLE = Tables.NAME_LOOKUP_JOIN_RAW_CONTACTS; field in interface:ContactsProvider2.LookupByDisplayNameQuery
6338 Cursor c = db.query(LookupByDisplayNameQuery.TABLE, LookupByDisplayNameQuer
[all...]
/packages/providers/ContactsProvider/tests/assets/testUnsynced/
H A Dlegacy_contacts.sql3 CREATE TABLE _deleted_groups (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
4 CREATE TABLE _deleted_people (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
5 CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account));
6 CREATE TABLE _sync_state_metadata (version INTEGER);
8 CREATE TABLE android_metadata (locale TEXT);
10 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
11 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0);
15 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name));
16 CREATE TABLE fave_msg_status (_id INTEGER PRIMARY KEY, msg TEXT, next_retry INTEGER, num_retries INTEGER);
17 CREATE TABLE fave_phone_change
[all...]
/packages/providers/ContactsProvider/tests/assets/test1/
H A Dlegacy_contacts.sql3 CREATE TABLE _deleted_groups (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
4 CREATE TABLE _deleted_people (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
6 CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account));
8 CREATE TABLE _sync_state_metadata (version INTEGER);
10 CREATE TABLE android_metadata (locale TEXT);
12 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
14 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0);
31 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name));
32 CREATE TABLE fave_msg_status (_id INTEGER PRIMARY KEY, msg TEXT, next_retry INTEGER, num_retries INTEGER);
33 CREATE TABLE fave_phone_change
[all...]
/packages/providers/ContactsProvider/tests/assets/testSynced/
H A Dlegacy_contacts.sql3 CREATE TABLE _deleted_groups (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
4 CREATE TABLE _deleted_people (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
5 CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account));
7 CREATE TABLE _sync_state_metadata (version INTEGER);
9 CREATE TABLE android_metadata (locale TEXT);
11 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
12 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0);
18 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name));
19 CREATE TABLE fave_msg_status (_id INTEGER PRIMARY KEY, msg TEXT, next_retry INTEGER, num_retries INTEGER);
21 CREATE TABLE fave_phone_change
[all...]
/packages/apps/Exchange/tests/src/com/android/exchange/provider/
H A DMockProvider.java68 /*package*/ static final int TABLE = 100; field in class:MockProvider
127 sURIMatcher.addURI(AUTHORITY, table, TABLE);
147 case TABLE:
186 case TABLE:
H A DMockProviderTests.java114 assertEquals(MockProvider.TABLE, MockProvider.sURIMatcher.match(MockProvider.uri(uri)));

Completed in 442 milliseconds