Searched refs:_ID (Results 1 - 25 of 215) sorted by relevance

123456789

/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DPhoneQuery.java26 PhoneLookup._ID,
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DGroupsListLoader.java28 Groups._ID, // 0
H A DEntityDiff.java44 * keyed using {@link BaseColumns#_ID} values.
131 return child.uri.toString() + child.values.getAsString(BaseColumns._ID);
135 return BaseColumns._ID + "=" + values.getAsLong(BaseColumns._ID);
/packages/apps/Contacts/src/com/android/contacts/list/
H A DDirectoryListLoader.java46 public static final String ORDER_BY = Directory._ID;
49 Directory._ID,
66 Directory._ID,
125 : (Directory._ID + "!=" + Directory.LOCAL_INVISIBLE);
131 : (" AND " + Directory._ID + "!=" + Directory.LOCAL_INVISIBLE));
139 : (" AND " + Directory._ID + "!=" + Directory.LOCAL_INVISIBLE));
/packages/apps/DeskClock/src/com/android/deskclock/
H A DAlarmDatabaseHelper.java79 Object value = values.get(Alarm.Columns._ID);
84 .query("alarms", new String[]{Alarm.Columns._ID}, "_id = ?",
88 values.putNull(Alarm.Columns._ID);
H A DAlarm.java131 HOUR + ", " + MINUTES + " ASC" + ", " + _ID + " DESC";
137 _ID, HOUR, MINUTES, DAYS_OF_WEEK, ALARM_TIME,
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactLookupKeyTest.java59 assertStoredValue(lookupUri, Contacts._ID, contactId);
63 Contacts._ID, contactId);
67 Contacts._ID, contactId);
93 assertStoredValue(lookupUri, Contacts._ID, contactId);
121 assertStoredValue(lookupUri1, Contacts._ID, contactId1);
124 assertStoredValue(lookupUri2, Contacts._ID, contactId2);
164 assertStoredValue(lookupUri, Contacts._ID, largerContactId);
H A DPhotoStoreTest.java144 PhotoFiles._ID + "=?", new String[]{String.valueOf(photoFileId)}, null, null, null);
165 PhotoFiles._ID + "=?", new String[]{String.valueOf(photoFileId)}, null, null, null);
187 Cursor c = mDb.query(Tables.PHOTO_FILES, new String[]{PhotoFiles._ID},
188 PhotoFiles._ID + "=?", new String[]{String.valueOf(photoFileId)}, null, null, null);
233 Cursor c = mDb.query(Tables.PHOTO_FILES, new String[]{PhotoFiles._ID},
234 PhotoFiles._ID + "=?", new String[]{String.valueOf(normalPhotoId)},
H A DDirectoryTest.java83 new String[]{Contacts._ID, Contacts.DISPLAY_NAME}, null, null, null);
108 new String[]{Contacts._ID, Contacts.DISPLAY_NAME}, null, null, null);
118 new String[]{Contacts._ID, Contacts.DISPLAY_NAME}, null, null, null);
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapVcardManager.java77 Data._ID, // 0
89 Contacts._ID, // 0
101 static final String CALLLOG_SORT_ORDER = Calls._ID + " DESC";
256 null, Contacts._ID);
295 null, Contacts._ID);
327 CallLog.Calls._ID, // 0
335 // Need test to see if order by _ID is ok here, or by date?
358 recordSelection = Calls._ID + "=" + startPointId;
362 recordSelection = Calls._ID + ">=" + endPointId + " AND " + Calls._ID
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DAutoFillProfileDatabase.java60 + Profiles._ID + " INTEGER PRIMARY KEY,"
100 + Profiles._ID + ","
141 return getDatabase(false).query(PROFILES_TABLE_NAME, cols, Profiles._ID + "=?", selectArgs,
146 final String sql = "DELETE FROM " + PROFILES_TABLE_NAME +" WHERE " + Profiles._ID + " = ?;";
/packages/apps/Contacts/src/com/android/contacts/
H A DGroupListLoader.java35 Groups._ID,
H A DGroupMetaDataLoader.java33 Groups._ID,
H A DContactTileLoaderFactory.java46 Contacts._ID, // ..........................................0
62 Contacts._ID, // ..........................................0
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandlerForOrganization.java63 long dataId = c.getLong(DataUpdateQuery._ID);
75 " WHERE " + Data._ID + "=?", mSelectionArgs1);
86 " WHERE " + Data._ID + "=?", mSelectionArgs1);
97 long dataId = c.getLong(DataUpdateQuery._ID);
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 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...]
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 DDataRowHandlerForEmail.java60 long dataId = c.getLong(DataUpdateQuery._ID);
75 long dataId = c.getLong(DataDeleteQuery._ID);
H A DDataRowHandlerForNickname.java57 long dataId = c.getLong(DataUpdateQuery._ID);
77 long dataId = c.getLong(DataDeleteQuery._ID);
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarDatabaseHelper.java167 "old." + CalendarContract.Events._ID + ";" +
170 "old." + CalendarContract.Events._ID + ";" +
173 "old." + CalendarContract.Events._ID + ";" +
176 "old." + CalendarContract.Events._ID + ";" +
179 "old." + CalendarContract.Events._ID + ";" +
182 "old." + CalendarContract.Events._ID + ";";
189 " WHERE " + Events.ORIGINAL_ID + "=old." + Events._ID + ";";
201 "old." + CalendarContract.Events._ID + ";";
209 + " WHERE " + Calendars._ID + "=" + "old." + Calendars._ID
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DProfileAggregator.java80 "SELECT " + Contacts._ID +
82 " ORDER BY " + Contacts._ID +
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
2163 int _ID = 0; field in interface:ContactAggregator.DisplayNameQuery
2344 int _ID = 0; field in interface:ContactAggregator.ContactIdQuery
[all...]
/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/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
H A DUserDictionaryProvider.java90 + Words._ID + " INTEGER PRIMARY KEY,"
231 count = db.delete(USERDICT_TABLE_NAME, Words._ID + "=" + wordId
255 count = db.update(USERDICT_TABLE_NAME, values, Words._ID + "=" + wordId
274 sDictProjectionMap.put(Words._ID, Words._ID);

Completed in 435 milliseconds

123456789