HomeSort by relevance Sort by last modified time
    Searched defs:_ID (Results 1 - 23 of 23) sorted by null

  /frameworks/base/core/java/android/provider/
BaseColumns.java 25 public static final String _ID = "_id";
UserDictionary.java 63 public static final String _ID = BaseColumns._ID;
MediaStore.java 250 private static final String[] PROJECTION = new String[] {_ID, MediaColumns.DATA};
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarSyncTestingBase.java 55 EVENT_COLUMNS_TO_SKIP.add(Calendar.Events._ID);
61 ATTENDEES_COLUMNS_TO_SKIP.add(Calendar.Attendees._ID);
62 CALENDARS_COLUMNS_TO_SKIP.add(Calendar.Calendars._ID);
68 INSTANCES_COLUMNS_TO_SKIP.add(Calendar.Instances._ID);
213 return calendarsCursor.getInt(calendarsCursor.getColumnIndex("_id"));
  /cts/tests/src/android/content/cts/
DummyProvider.java 56 public static final String _ID = "_id";
85 db.execSQL("CREATE TABLE " + NAME_VALUE_TABLE + " (" + _ID + " INTEGER PRIMARY KEY,"
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_qsort.c 19 * - the _ID string below is altered by inserting, after
63 static char _ID[]="<qsort.c gjm 1.12 1998-03-19>";
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLookupKeyTest.java 59 assertStoredValue(lookupUri, Contacts._ID, contactId);
63 Contacts._ID, contactId);
67 Contacts._ID, contactId);
87 assertStoredValue(lookupUri, Contacts._ID, contactId);
115 assertStoredValue(lookupUri1, Contacts._ID, contactId1);
118 assertStoredValue(lookupUri2, Contacts._ID, contactId2);
154 assertStoredValue(lookupUri, Contacts._ID, largerContactId);
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_TestDataBuilder.java 55 BaseColumns._ID,
58 int _ID = 0;
80 mId = cursor.getInt(IdQuery._ID);
86 assertTrue("Could not obtain _ID for URI: " + mUri, mId != -1);
193 mId = mCursor.getLong(getColumnIndex(BaseColumns._ID));
290 return with(Contacts._ID, mRawContact.getContactId()).loadUsingValues();
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 74 public static final String _ID = "_id";
304 AttachmentProviderColumns._ID,
336 if (AttachmentProviderColumns._ID.equals(column)) {
  /packages/apps/Gallery3D/src/com/cooliris/picasa/
PicasaApi.java 338 public static final String _ID = "_id";
  /frameworks/base/core/java/com/android/internal/widget/
ContactHeaderWidget.java 98 Contacts._ID,
110 int _ID = 0;
135 PhoneLookup._ID,
150 Contacts._ID,
270 Uri lookupUri = Contacts.getLookupUri(cursor.getLong(ContactQuery._ID),
  /packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationsProvider.java 79 public static final String _ID = "_id";
90 + " applicationsLookup.source = " + APPLICATIONS_TABLE + "." + _ID;
208 _ID + " INTEGER PRIMARY KEY AUTOINCREMENT," +
221 "source INTEGER REFERENCES " + APPLICATIONS_TABLE + "(" + _ID + ")," +
232 "DELETE FROM applicationsLookup WHERE source = new." + _ID + ";" +
233 "SELECT _TOKENIZE('applicationsLookup', new." + _ID + ", new." + NAME + ", ' ', 1);" +
238 "SELECT _TOKENIZE('applicationsLookup', new." + _ID + ", new." + NAME + ", ' ', 1);" +
243 "DELETE FROM applicationsLookup WHERE source = old." + _ID + ";" +
353 String groupBy = APPLICATIONS_TABLE + "." + _ID;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ViewContactActivity.java 387 final long dataId = cursor.getLong(StatusQuery._ID);
717 Cursor c = mResolver.query(RawContacts.CONTENT_URI, new String[] {RawContacts._ID},
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/
EditContactActivity.java 416 final long rawContactId = values.getAsLong(RawContacts._ID);
    [all...]
QuickContactWindow.java 102 * Window that shows QuickContact dialog for a specific {@link Contacts#_ID}.
349 * Start showing a dialog for the given {@link Contacts#_ID} pointing
408 + "!=? OR (" + Data.MIMETYPE + "=? AND " + Data._ID + "=" + Contacts.PHOTO_ID
429 // No direct _ID provided, so force a lookup
725 * Description of a specific {@link Data#_ID} item, with style information
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactAggregator.java 221 "SELECT COUNT(" + RawContacts._ID + ")" +
224 + " AND " + RawContacts._ID + "<>?");
228 " WHERE " + Contacts._ID + "=?");
237 " WHERE " + RawContacts._ID + "=?"
243 " WHERE " + Contacts._ID + "=?");
248 " WHERE " + Contacts._ID + "=?");
253 " WHERE " + Contacts._ID + "=?");
263 " WHERE " + Contacts._ID + "=?");
269 + RawContacts.STARRED + "=1)" + " WHERE " + Contacts._ID + "=?");
275 " WHERE " + RawContacts._ID + "=?")
    [all...]
LegacyApiSupport.java 119 " LEFT OUTER JOIN data name ON (raw_contacts._id = name.raw_contact_id"
120 + " AND (SELECT mimetype FROM mimetypes WHERE mimetypes._id = name.mimetype_id)"
122 + " LEFT OUTER JOIN data organization ON (raw_contacts._id = organization.raw_contact_id"
123 + " AND (SELECT mimetype FROM mimetypes WHERE mimetypes._id = organization.mimetype_id)"
125 + " LEFT OUTER JOIN data email ON (raw_contacts._id = email.raw_contact_id"
126 + " AND (SELECT mimetype FROM mimetypes WHERE mimetypes._id = email.mimetype_id)"
128 + " LEFT OUTER JOIN data note ON (raw_contacts._id = note.raw_contact_id"
129 + " AND (SELECT mimetype FROM mimetypes WHERE mimetypes._id = note.mimetype_id)"
131 + " LEFT OUTER JOIN data phone ON (raw_contacts._id = phone.raw_contact_id"
132 + " AND (SELECT mimetype FROM mimetypes WHERE mimetypes._id = phone.mimetype_id)
    [all...]
LegacyContactImporter.java 205 // the legacy table does not provide an _ID field - the _ID field
236 "_id", "name", "notes", "should_sync", "system_id", "_sync_account", "_sync_id",
253 Groups._ID + "," +
321 + "organizations._id = primary_organization) "
324 +"(SELECT number FROM phones WHERE phones._id = primary_phone) "
328 + "contact_methods._id = primary_email) "
338 "_id", NAME_SQL, "notes", "times_contacted", "last_time_contacted", "starred",
345 "_id", NAME_SQL, "notes", "times_contacted", "last_time_contacted", "starred",
352 "_id", "name", "notes", "times_contacted", "last_time_contacted", "starred"
    [all...]
ContactsDatabaseHelper.java 104 + "JOIN mimetypes ON (data.mimetype_id = mimetypes._id)";
107 + "JOIN raw_contacts ON (data.raw_contact_id = raw_contacts._id)";
110 + "JOIN mimetypes ON (data.mimetype_id = mimetypes._id) "
111 + "JOIN raw_contacts ON (data.raw_contact_id = raw_contacts._id)";
119 + "data.raw_contact_id = raw_contacts._id) "
120 + "LEFT OUTER JOIN groups ON (groups._id = data." + GroupMembership.GROUP_ROW_ID
129 + "data.raw_contact_id = raw_contacts._id) "
130 + "LEFT OUTER JOIN contacts ON (raw_contacts.contact_id = contacts._id)";
133 + "JOIN mimetypes ON (data.mimetype_id = mimetypes._id) "
134 + "JOIN raw_contacts ON (data.raw_contact_id = raw_contacts._id) "
    [all...]
ContactsProvider2.java 175 " (" + Contacts.TIMES_CONTACTED + " + 1) END WHERE " + Contacts._ID + "=?";
247 + "JOIN raw_contacts ON (data.raw_contact_id = raw_contacts._id) "
248 + "JOIN contacts ON (raw_contacts.contact_id = contacts._id)";
273 Data._ID,
280 public static final int _ID = 0;
288 String[] COLUMNS = { Data._ID, Data.RAW_CONTACT_ID, Data.MIMETYPE };
290 int _ID = 0;
315 Contacts._ID + " IN "
323 + "(SELECT " + Tables.GROUPS + "." + Groups._ID
331 " WHERE " + RawContacts._ID + " IN ("
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 2433 milliseconds