HomeSort by relevance Sort by last modified time
    Searched refs:_ID (Results 1 - 25 of 417) 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 28 /*implicit*/ OptSpecifier(unsigned _ID) : ID(_ID) {}
  /packages/apps/Dialer/src/com/android/dialer/calllog/
PhoneQuery.java 26 PhoneLookup._ID,
CallLogQuery.java 26 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/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
BluetoothMapContract.java 269 public static final String _ID = "_id";
328 public static final String _ID = "_id";
490 public static final String _ID = "_id";
500 * The _id-key to the account this folder refers to.
507 * The _id-key to the parent folder. -1 for root folders.
517 MessageColumns._ID,
541 AccountColumns._ID,
    [all...]
  /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 70 ClockContract.AlarmsColumns._ID + " INTEGER PRIMARY KEY," +
84 ClockContract.InstancesColumns._ID + " INTEGER PRIMARY KEY," +
95 ALARMS_TABLE_NAME + "(" + ClockContract.AlarmsColumns._ID + ") " +
156 "_id",
208 Object value = values.get(ClockContract.AlarmsColumns._ID);
213 new String[]{ClockContract.AlarmsColumns._ID},
214 ClockContract.AlarmsColumns._ID + " = ?",
218 values.putNull(ClockContract.AlarmsColumns._ID);
  /packages/apps/Email/src/com/android/email/provider/
DBHelper.java 79 private static final String WHERE_ID = BaseColumns._ID + "=?";
85 " where " + MessageColumns.MAILBOX_KEY + "=old." + BaseColumns._ID +
87 " where " + MessageColumns.MAILBOX_KEY + "=old." + BaseColumns._ID +
89 " where " + MessageColumns.MAILBOX_KEY + "=old." + BaseColumns._ID +
95 " where " + MailboxColumns.ACCOUNT_KEY + "=old." + BaseColumns._ID +
97 " where " + BaseColumns._ID + "=old." + AccountColumns.HOST_AUTH_KEY_RECV +
99 " where " + BaseColumns._ID + "=old." + AccountColumns.HOST_AUTH_KEY_SEND +
101 " where " + BaseColumns._ID + "=old." + AccountColumns.POLICY_KEY +
107 " where " + Credential._ID + "=old." + HostAuthColumns.CREDENTIAL_KEY +
219 " where " + BaseColumns._ID + "=NEW." + MessageColumns.MAILBOX_KEY
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_SearchSnippetsTest.java 46 Contacts._ID,
94 expected.put(Contacts._ID, ids[1]);
105 expected.put(Contacts._ID, ids[0]);
116 expected.put(Contacts._ID, ids[2]);
127 expected.put(Contacts._ID, ids[2]);
138 expected.put(Contacts._ID, ids[1]);
142 expected2.put(Contacts._ID, ids[2]);
160 expected.put(Contacts._ID, ids[0]);
177 expected.put(Contacts._ID, ids[2]);
198 sb.append(Contacts._ID + " in ")
    [all...]
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/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);
  /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/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/opt/chips/src/com/android/ex/chips/
Queries.java 37 Phone._ID, // 5
57 Email._ID, // 5
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactTileLoaderFactory.java 47 // The _ID field returned for strequent items actually contains data._id instead of
48 // contacts._id because the query is performed on the data table. In order to obtain the
53 Contacts._ID, // ..........................................0
70 Contacts._ID, // ..........................................0

Completed in 638 milliseconds

1 2 3 4 5 6 7 8 91011>>