HomeSort by relevance Sort by last modified time
    Searched refs:_ID (Results 176 - 200 of 337) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/Contacts/tests/src/com/android/contacts/activities/
PeopleActivityTest.java 209 values.put(Contacts._ID, i);
223 .withProjection(Contacts._ID, Contacts.LOOKUP_KEY)
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PhoneNumberListAdapter.java 55 Phone._ID, // 0
66 Phone._ID, // 0
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
SmartDialCache.java 86 Phone._ID, // 0
96 Phone._ID, // 0
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 250 Columns._ID,
282 if (Columns._ID.equals(column)) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalAlbum.java 73 + ImageColumns._ID + " DESC";
80 + VideoColumns._ID + " DESC";
132 int id = cursor.getInt(0); // _id must be in the first column
186 Cursor cursor = resolver.query(baseUri, projection, "_id BETWEEN ? AND ?",
188 "_id");
198 int id = cursor.getInt(0); // _id must be in the first column
225 return resolver.query(uri, projection, "_id=?",
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionarySettings.java 55 { UserDictionary.Words._ID, UserDictionary.Words.WORD};
57 { UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT};
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForStructuredName.java 68 final long dataId = c.getLong(DataUpdateQuery._ID);
100 long dataId = c.getLong(DataDeleteQuery._ID);
VoicemailContentTable.java 59 .add(Voicemails._ID)
87 .add(Voicemails._ID)
  /frameworks/base/core/java/android/provider/
CalendarContract.java 60 * properties are stored on separate tables and reference the {@link Events#_ID}
293 * along with {@link BaseColumns#_ID}.
521 final long calendarId = cursor.getLong(cursor.getColumnIndexOrThrow(_ID));
525 cv.put(_ID, calendarId);
623 * <dd>To perform an update on a calendar the {@link #_ID} of the calendar
626 * selection should start with "_id=?" and the first selectionArg should be
627 * the _id of the calendar. Calendars may also be updated using a selection
632 * <dd>Calendars can be deleted either by the {@link #_ID} as an appended id
639 * matches the query selection, or at most a single row if the {@link #_ID}
    [all...]
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 82 Files.FileColumns._ID, // 0
85 Files.FileColumns._ID, // 0
89 Files.FileColumns._ID, // 0
94 Files.FileColumns._ID, // 0
102 private static final String ID_WHERE = Files.FileColumns._ID + "=?";
206 c = db.query("properties", new String[] { "_id", "code", "value" },
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ConfirmAddDetailActivity.java 147 Contacts._ID,
152 final int _ID = 0;
347 new String[] { Contacts._ID } /* unused projection but a valid one was needed */,
349 + Contacts._ID + " <> ?", selectionArgs, null);
415 RawContacts._ID + "=?", new String[] { String.valueOf(rawContactId) },
488 mContactId = cursor.getLong(ContactQuery._ID);
    [all...]
  /packages/apps/Music/src/com/android/music/
TrackBrowserActivity.java 140 MediaStore.Audio.Media._ID,
149 MediaStore.Audio.Playlists.Members._ID,
567 MediaStore.Audio.Playlists.Members._ID);
    [all...]
MusicUtils.java 320 colidx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Media._ID);
330 final String[] ccols = new String[] { MediaStore.Audio.Media._ID };
346 final String[] ccols = new String[] { MediaStore.Audio.Media._ID };
382 new String[] {MediaStore.Audio.Media._ID}, MediaStore.Audio.Media.IS_MUSIC + "=1",
415 MediaStore.Audio.Playlists._ID,
458 String [] cols = new String [] { MediaStore.Audio.Media._ID,
461 where.append(MediaStore.Audio.Media._ID + " IN (");
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
ContactAggregatorTest.java     [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/
RawContactDeltaListTests.java 126 contact.put(RawContacts._ID, rawContactId);
151 values.put(Data._ID, phoneId);
160 values.put(Data._ID, emailId);
207 expectedValues.remove(BaseColumns._ID);
208 foundValues.remove(BaseColumns._ID);
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 54 Threads._ID, Threads.DATE, Threads.MESSAGE_COUNT, Threads.RECIPIENT_IDS,
60 Threads._ID,
317 Mms.Inbox.CONTENT_URI, new String[] {Mms._ID, Mms.MESSAGE_ID},
723 // mmssms.db|2.253 ms|SELECT _id, date, message_count, recipient_ids, snippet, snippet_cs,
743 // mmssms.db|2.253 ms|SELECT _id, date, message_count, recipient_ids, snippet, snippet_cs,
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
CalendarSyncAdapter.java 86 private static final String EVENT_ID_AND_CALENDAR_ID = Events._ID + "=? AND " +
99 private static final String[] ID_PROJECTION = new String[] {Events._ID};
101 new String[] {Events.ORIGINAL_ID, Events._ID};
117 new String[] {ExtendedProperties._ID};
186 new String[] {Calendars._ID}, CALENDAR_SELECTION,
257 long id = ncv.values.getAsLong(RawContacts._ID);
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactDirectoryManagerTest.java 503 Directory.CONTENT_URI, new String[] { Directory._ID }, null, null, null);
543 Directory.CONTENT_URI, new String[] { Directory._ID }, null, null, null);
554 AggregationExceptionColumns._ID,
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 69 Events._ID, // 0
122 Reminders._ID, // 0
173 Calendars._ID, // 0
204 static final String CALENDARS_WHERE = Calendars._ID + "=?";
207 Colors._ID, // 0
223 Attendees._ID, // 0
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 382 new String[] {Contacts._ID, Contacts.LOOKUP_KEY},
412 final StringBuilder sb = new StringBuilder(RawContacts._ID + " IN(");
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerTest.java 175 long playlistid = c.getLong(c.getColumnIndex(MediaStore.MediaColumns._ID));
196 playlistid = c.getLong(c.getColumnIndex(MediaStore.MediaColumns._ID));
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Video_MediaTest.java 114 long id = c.getLong(c.getColumnIndex(Media._ID));
168 assertEquals(id, c.getLong(c.getColumnIndex(Media._ID)));
  /development/samples/NotePad/tests/src/com/example/android/notepad/
NotePadProviderTest.java 198 * Tests the note id URI for a single note, using _ID value "1" which is a valid ID. Uses a
544 NotePad.Notes._ID, // The Notes class extends BaseColumns,
545 // which includes _ID as the column name for the
676 values.put(NotePad.Notes._ID, (int) noteId);
    [all...]
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactDetailFragment.java 651 Contacts._ID,
670 StructuredPostal._ID,
  /frameworks/opt/vcard/java/com/android/vcard/
VCardComposer.java 158 Contacts._ID,
289 * {@link ContentResolver} with {@link Contacts#_ID}.
455 mIdColumn = mCursor.getColumnIndex(Contacts._ID);

Completed in 592 milliseconds

1 2 3 4 5 6 78 91011>>