HomeSort by relevance Sort by last modified time
    Searched refs:_ID (Results 1 - 25 of 368) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/provider/
BaseColumns.java 25 public static final String _ID = "_id";
UserDictionary.java 66 public static final String _ID = BaseColumns._ID;
  /external/llvm/include/llvm/Option/
OptSpecifier.h 26 /*implicit*/ OptSpecifier(unsigned _ID) : ID(_ID) {}
  /packages/apps/Dialer/src/com/android/dialer/calllog/
PhoneQuery.java 26 PhoneLookup._ID,
CallLogQuery.java 29 Calls._ID, // 0
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
GroupsListLoader.java 28 Groups._ID, // 0
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
ContactsTableUtil.java 62 db.update(Tables.CONTACTS, values, Contacts._ID + " = ?",
96 + " WHERE " + Contacts._ID + " IN ( "
99 + " WHERE " + ContactsContract.RawContacts._ID
114 return db.delete(Tables.CONTACTS, Contacts._ID + " = ?", new String[]{contactId + ""});
129 + " where " + ContactsContract.RawContacts._ID + " = ?)"
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DirectoryListLoader.java 46 public static final String ORDER_BY = Directory._ID;
49 Directory._ID,
67 Directory._ID,
126 : (Directory._ID + "!=" + Directory.LOCAL_INVISIBLE);
132 : (" AND " + Directory._ID + "!=" + Directory.LOCAL_INVISIBLE));
140 : (" AND " + Directory._ID + "!=" + Directory.LOCAL_INVISIBLE));
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
ClockProvider.java 73 qb.appendWhere(ClockContract.AlarmsColumns._ID + "=");
81 qb.appendWhere(ClockContract.InstancesColumns._ID + "=");
139 ClockContract.AlarmsColumns._ID + "=" + alarmId,
145 ClockContract.InstancesColumns._ID + "=" + alarmId,
199 where = ClockContract.AlarmsColumns._ID + "=" + primaryKey;
201 where = ClockContract.AlarmsColumns._ID + "=" + primaryKey +
212 where = ClockContract.InstancesColumns._ID + "=" + primaryKey;
214 where = ClockContract.InstancesColumns._ID + "=" + primaryKey +
ClockDatabaseHelper.java 73 ClockContract.AlarmsColumns._ID + " INTEGER PRIMARY KEY," +
87 ClockContract.InstancesColumns._ID + " INTEGER PRIMARY KEY," +
98 ALARMS_TABLE_NAME + "(" + ClockContract.AlarmsColumns._ID + ") " +
160 "_id",
212 Object value = values.get(ClockContract.AlarmsColumns._ID);
217 new String[]{ClockContract.AlarmsColumns._ID},
218 ClockContract.AlarmsColumns._ID + " = ?",
222 values.putNull(ClockContract.AlarmsColumns._ID);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLookupKeyTest.java 60 assertStoredValue(lookupUri, Contacts._ID, contactId);
64 Contacts._ID, contactId);
68 Contacts._ID, contactId);
94 assertStoredValue(lookupUri, Contacts._ID, contactId);
122 assertStoredValue(lookupUri1, Contacts._ID, contactId1);
125 assertStoredValue(lookupUri2, Contacts._ID, contactId2);
165 assertStoredValue(lookupUri, Contacts._ID, largerContactId);
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_Genres_MembersTest.java 47 mAudioIdOfJam = c.getLong(c.getColumnIndex(Media._ID));
53 mAudioIdOfJamLive = c.getLong(c.getColumnIndex(Media._ID));
61 mContentResolver.delete(Media.EXTERNAL_CONTENT_URI, Media._ID + "=" + mAudioIdOfJam, null);
62 mContentResolver.delete(Media.EXTERNAL_CONTENT_URI, Media._ID + "=" + mAudioIdOfJamLive,
97 long genreId = c.getLong(c.getColumnIndex(Genres._ID));
120 assertEquals(mAudioIdOfJam, c.getLong(c.getColumnIndex(Members._ID)));
162 // Query with a constraint on _id. Note that _id corresponds to the _id
166 Members._ID + "=?", new String[] {Long.toString(mAudioIdOfJam)}, null)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
AutoFillProfileDatabase.java 59 + Profiles._ID + " INTEGER PRIMARY KEY,"
112 return getDatabase(false).query(PROFILES_TABLE_NAME, cols, Profiles._ID + "=?", selectArgs,
117 final String sql = "DELETE FROM " + PROFILES_TABLE_NAME +" WHERE " + Profiles._ID + " = ?;";
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List2.java 54 Contacts._ID,
  /development/samples/training/threadsample/src/com/example/android/threadsample/
DataProviderContract.java 45 public static final String ROW_ID = BaseColumns._ID;
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 76 Data._ID, // 0
88 Contacts._ID, // 0
97 // most recently one should be the first handle. In table "calls", _id and
98 // date are consistent in ordering, to implement simply, we sort by _id
100 static final String CALLLOG_SORT_ORDER = Calls._ID + " DESC";
257 null, Contacts._ID);
296 null, Contacts._ID);
328 CallLog.Calls._ID, // 0
336 // Need test to see if order by _ID is ok here, or by date?
359 recordSelection = Calls._ID + "=" + startPointId
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
GroupListLoader.java 35 Groups._ID,
GroupMetaDataLoader.java 33 Groups._ID,
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForOrganization.java 63 long dataId = c.getLong(DataUpdateQuery._ID);
75 " WHERE " + Data._ID + "=?", mSelectionArgs1);
86 " WHERE " + Data._ID + "=?", mSelectionArgs1);
97 long dataId = c.getLong(DataUpdateQuery._ID);
DataRowHandler.java 53 Data._ID,
60 public static final int _ID = 0;
68 String[] COLUMNS = { Data._ID, Data.RAW_CONTACT_ID, Data.MIMETYPE };
70 int _ID = 0;
151 long dataId = c.getLong(DataUpdateQuery._ID);
158 db.update(Tables.DATA, values, Data._ID + " =?", mSelectionArgs1);
206 cols, Data._ID + "=?", mSelectionArgs1, null, null, null);
249 long dataId = c.getLong(DataDeleteQuery._ID);
253 int count = db.delete(Tables.DATA, Data._ID + "=?", mSelectionArgs1);
279 long dataId = c.getLong(DataDeleteQuery._ID);
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 168 "old." + CalendarContract.Events._ID + ";" +
171 "old." + CalendarContract.Events._ID + ";" +
174 "old." + CalendarContract.Events._ID + ";" +
177 "old." + CalendarContract.Events._ID + ";" +
180 "old." + CalendarContract.Events._ID + ";" +
183 "old." + CalendarContract.Events._ID + ";";
190 " WHERE " + Events.ORIGINAL_ID + "=old." + Events._ID + ";";
202 "old." + CalendarContract.Events._ID + ";";
210 + " WHERE " + Calendars._ID + "=" + "old." + Calendars._ID
    [all...]
  /frameworks/ex/chips/src/com/android/ex/chips/
Queries.java 36 Phone._ID, // 5
54 Email._ID, // 5
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactTileLoaderFactory.java 45 // The _ID field returned for strequent items actually contains data._id instead of
46 // contacts._id because the query is performed on the data table. In order to obtain the
51 Contacts._ID, // ..........................................0
67 Contacts._ID, // ..........................................0
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
ValuesDeltaTests.java 62 before.put(Data._ID, TEST_PHONE_ID);
74 before.put(Data._ID, TEST_PHONE_ID);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/data/
FilterStackDBHelper.java 31 public static final String _ID = "_id";
41 { FilterStack._ID, "INTEGER PRIMARY KEY AUTOINCREMENT" },

Completed in 640 milliseconds

1 2 3 4 5 6 7 8 91011>>