HomeSort by relevance Sort by last modified time
    Searched refs:_ID (Results 1 - 25 of 337) 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/clang/include/clang/Driver/
OptSpecifier.h 28 /*implicit*/ OptSpecifier(unsigned _ID) : ID(_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,
  /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/
AlarmDatabaseHelper.java 44 "_id INTEGER PRIMARY KEY," +
79 Object value = values.get(Alarm.Columns._ID);
84 .query("alarms", new String[]{Alarm.Columns._ID}, "_id = ?",
88 values.putNull(Alarm.Columns._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);
PhotoStoreTest.java 144 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)},
  /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...]
  /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 77 Data._ID, // 0
89 Contacts._ID, // 0
98 // most recently one should be the first handle. In table "calls", _id and
99 // date are consistent in ordering, to implement simply, we sort by _id
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
    [all...]
  /packages/apps/Browser/src/com/android/browser/
AutoFillProfileDatabase.java 60 + 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/
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 167 "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...]
  /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 Contacts._ID, // ..........................................0
61 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/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ProfileAggregator.java 80 "SELECT " + Contacts._ID +
82 " ORDER BY " + Contacts._ID +

Completed in 739 milliseconds

1 2 3 4 5 6 7 8 91011>>