HomeSort by relevance Sort by last modified time
    Searched refs:DataQuery (Results 1 - 3 of 3) sorted by null

  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 338 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION,
347 final long id = c.getLong(DataQuery.COLUMN_ID);
348 final String mimeType = c.getString(DataQuery.COLUMN_MIMETYPE);
352 c.getString(DataQuery.COLUMN_GIVEN_NAME),
353 c.getString(DataQuery.COLUMN_FAMILY_NAME),
354 c.getString(DataQuery.COLUMN_FULL_NAME),
359 final int type = c.getInt(DataQuery.COLUMN_PHONE_TYPE);
362 contactOp.updatePhone(c.getString(DataQuery.COLUMN_PHONE_NUMBER)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java 258 private static final class DataQuery {
314 StringBuilder sb = new StringBuilder(DataQuery.SELECTION_PREFIX);
326 DataQuery.COLUMNS, sb.toString(), null, Data.CONTACT_ID);
380 long contactId = mDataCursor.getLong(DataQuery.CONTACT_ID);
384 suggestion.name = mDataCursor.getString(DataQuery.DISPLAY_NAME);
385 suggestion.lookupKey = mDataCursor.getString(DataQuery.LOOKUP_KEY);
391 long rawContactId = mDataCursor.getLong(DataQuery.RAW_CONTACT_ID);
395 rawContact.accountName = mDataCursor.getString(DataQuery.ACCOUNT_NAME);
396 rawContact.accountType = mDataCursor.getString(DataQuery.ACCOUNT_TYPE);
397 rawContact.dataSet = mDataCursor.getString(DataQuery.DATA_SET)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java 236 mHandler.startQuery(HANDLER_ID_DATA, lookupUri, dataUri, DataQuery.PROJECTION, Data.MIMETYPE
393 final String mimeType = cursor.getString(DataQuery.MIMETYPE);
398 final long dataId = cursor.getLong(DataQuery._ID);
399 final String accountType = cursor.getString(DataQuery.ACCOUNT_TYPE);
400 final String dataSet = cursor.getString(DataQuery.DATA_SET);
401 final boolean isPrimary = cursor.getInt(DataQuery.IS_PRIMARY) != 0;
402 final boolean isSuperPrimary = cursor.getInt(DataQuery.IS_SUPER_PRIMARY) != 0;
459 final boolean hasPresence = !cursor.isNull(DataQuery.PRESENCE);
478 final String name = cursor.getString(DataQuery.DISPLAY_NAME);
658 private interface DataQuery {
    [all...]

Completed in 529 milliseconds