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

  /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...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 384 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION,
393 final long id = c.getLong(DataQuery.COLUMN_ID);
394 final String mimeType = c.getString(DataQuery.COLUMN_MIMETYPE);
398 c.getString(DataQuery.COLUMN_GIVEN_NAME),
399 c.getString(DataQuery.COLUMN_FAMILY_NAME),
400 c.getString(DataQuery.COLUMN_FULL_NAME),
405 final int type = c.getInt(DataQuery.COLUMN_PHONE_TYPE);
408 contactOp.updatePhone(c.getString(DataQuery.COLUMN_PHONE_NUMBER)
    [all...]

Completed in 222 milliseconds