Searched defs:_ID (Results 1 - 12 of 12) sorted by relevance

/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DContactLoader.java51 Data._ID, Data.STATUS, Data.STATUS_RES_PACKAGE, Data.STATUS_ICON,
55 final int _ID = 0; field in interface:ContactLoader.StatusQuery
89 final long dataId = cursor.getLong(StatusQuery._ID);
/packages/apps/Browser/src/com/android/browser/provider/
H A DSnapshotProvider.java41 public static final String _ID = "_id"; field in interface:SnapshotProvider.Snapshots
83 Snapshots._ID + " INTEGER PRIMARY KEY AUTOINCREMENT," +
H A DBrowserProvider2.java81 public static final String _ID = "_id"; field in interface:BrowserProvider2.Thumbnails
88 public static final String _ID = "_id"; field in interface:BrowserProvider2.OmniboxSuggestions
126 qualifyColumn(TABLE_HISTORY, History._ID),
253 map.put(Bookmarks._ID, qualifyColumn(TABLE_BOOKMARKS, Bookmarks._ID));
278 "A." + Bookmarks._ID + "=" + TABLE_BOOKMARKS + "." + Bookmarks.PARENT +
282 "A." + Bookmarks._ID + "=" + TABLE_BOOKMARKS + "." + Bookmarks.INSERT_AFTER +
303 map.put(History._ID, qualifyColumn(TABLE_HISTORY, History._ID));
316 map.put(SyncState._ID, SyncStat
[all...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DAttachmentUtilities.java54 public static final String _ID = "_id"; field in class:AttachmentUtilities.Columns
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandler.java53 Data._ID,
60 public static final int _ID = 0; field in interface:DataRowHandler.DataDeleteQuery
68 String[] COLUMNS = { Data._ID, Data.RAW_CONTACT_ID, Data.MIMETYPE };
70 int _ID = 0; field in interface:DataRowHandler.DataUpdateQuery
151 long dataId = c.getLong(DataUpdateQuery._ID);
158 db.update(Tables.DATA, values, Data._ID + " =?", mSelectionArgs1);
208 cols, Data._ID + "=?", mSelectionArgs1, null, null, null);
251 long dataId = c.getLong(DataDeleteQuery._ID);
255 int count = db.delete(Tables.DATA, Data._ID + "=?", mSelectionArgs1);
281 long dataId = c.getLong(DataDeleteQuery._ID);
[all...]
H A DLegacyApiSupport.java200 "WHERE " + Contacts._ID + "=?";
204 + RawContacts._ID + "=?";
249 String[] COLUMNS = { BaseColumns._ID };
251 int _ID = 0; field in interface:LegacyApiSupport.IdQuery
384 sPeopleProjectionMap.put(People._ID, People._ID);
398 " WHERE " + DataColumns.CONCRETE_RAW_CONTACT_ID + "=people." + People._ID +
404 sOrganizationProjectionMap.put(android.provider.Contacts.Organizations._ID,
405 android.provider.Contacts.Organizations._ID);
420 sContactMethodProjectionMap.put(ContactMethods._ID, ContactMethod
[all...]
H A DContactsDatabaseHelper.java224 + "(SELECT " + MimetypesColumns._ID
304 "(SELECT " + AccountsColumns._ID +
317 final String OUTER_RAW_CONTACTS_ID = OUTER_RAW_CONTACTS + "." + RawContacts._ID;
340 + " WHERE " + Tables.CONTACTS +"." + Contacts._ID
341 + "=" + Tables.VISIBLE_CONTACTS +"." + Contacts._ID + ")";
347 public static final String CONCRETE_ID = Tables.CONTACTS + "." + BaseColumns._ID;
366 Tables.RAW_CONTACTS + "." + BaseColumns._ID;
419 public static final String CONCRETE_ID = Tables.DATA + "." + BaseColumns._ID;
460 public static final String CONCRETE_ID = Tables.GROUPS + "." + BaseColumns._ID;
479 public static final String _ID field in interface:ContactsDatabaseHelper.PhoneLookupColumns
511 public static final String _ID = BaseColumns._ID; field in interface:ContactsDatabaseHelper.PackagesColumns
518 public static final String _ID = BaseColumns._ID; field in interface:ContactsDatabaseHelper.MimetypesColumns
526 public static final String _ID = BaseColumns._ID; field in interface:ContactsDatabaseHelper.AggregationExceptionColumns
652 public static final String _ID = "stat_id"; field in class:ContactsDatabaseHelper.DataUsageStatColumns
[all...]
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DConfirmAddDetailActivity.java146 Contacts._ID,
151 final int _ID = 0; field in interface:ConfirmAddDetailActivity.ContactQuery
346 new String[] { Contacts._ID } /* unused projection but a valid one was needed */,
348 + Contacts._ID + " <> ?", selectionArgs, null);
414 RawContacts._ID + "=?", new String[] { String.valueOf(rawContactId) },
487 mContactId = cursor.getLong(ContactQuery._ID);
/packages/experimental/LoaderApp/src/com/android/loaderapp/
H A DContactHeaderWidget.java96 Contacts._ID,
108 int _ID = 0; field in interface:ContactHeaderWidget.ContactQuery
133 PhoneLookup._ID,
148 Contacts._ID,
265 cursor.getLong(ContactQuery._ID),
/packages/providers/ApplicationsProvider/src/com/android/providers/applications/
H A DApplicationsProvider.java87 public static final String _ID = "_id"; field in class:ApplicationsProvider
103 + " applicationsLookup.source = " + APPLICATIONS_TABLE + "." + _ID;
248 _ID + " INTEGER PRIMARY KEY AUTOINCREMENT," +
263 "source INTEGER REFERENCES " + APPLICATIONS_TABLE + "(" + _ID + ")," +
274 "DELETE FROM applicationsLookup WHERE source = new." + _ID + ";" +
275 "SELECT _TOKENIZE('applicationsLookup', new." + _ID + ", new." + NAME + ", ' ', 1);" +
280 "SELECT _TOKENIZE('applicationsLookup', new." + _ID + ", new." + NAME + ", ' ', 1);" +
285 "DELETE FROM applicationsLookup WHERE source = old." + _ID + ";" +
411 String groupBy = APPLICATIONS_TABLE + "." + _ID;
450 addProjection(map, Applications.ApplicationColumns._ID, _I
[all...]
/packages/apps/Contacts/src/com/android/contacts/
H A DContactSaveService.java381 new String[] {Contacts._ID, Contacts.LOOKUP_KEY},
411 final StringBuilder sb = new StringBuilder(RawContacts._ID + " IN(");
986 RawContacts._ID,
994 int _ID = 0; field in interface:ContactSaveService.JoinContactQuery
1025 long rawContactId = c.getLong(JoinContactQuery._ID);
1044 verifiedNameRawContactId = c.getLong(JoinContactQuery._ID);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java298 "SELECT COUNT(" + RawContacts._ID + ")" +
301 + " AND " + RawContacts._ID + "<>?");
305 " WHERE " + Contacts._ID + "=?");
314 " WHERE " + RawContacts._ID + "=?"
320 " WHERE " + Contacts._ID + "=?");
325 " WHERE " + Contacts._ID + "=?");
330 " WHERE " + Contacts._ID + "=?");
336 + RawContacts.STARRED + "=1)" + " WHERE " + Contacts._ID + "=?");
342 " WHERE " + RawContacts._ID + "=?");
347 " WHERE " + RawContacts._ID
392 int _ID = 0; field in interface:ContactAggregator.AggregationQuery
542 public static final int _ID = 0; field in class:ContactAggregator.RawContactIdAndAggregationModeQuery
2159 int _ID = 0; field in interface:ContactAggregator.DisplayNameQuery
2340 int _ID = 0; field in interface:ContactAggregator.ContactIdQuery
[all...]

Completed in 4706 milliseconds