HomeSort by relevance Sort by last modified time
    Searched refs:DataQuery (Results 1 - 2 of 2) 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 281 private static final class DataQuery {
340 StringBuilder sb = new StringBuilder(DataQuery.SELECTION_PREFIX);
352 DataQuery.COLUMNS, sb.toString(), null, Data.CONTACT_ID);
428 long contactId = mDataCursor.getLong(DataQuery.CONTACT_ID);
435 suggestion.name = mDataCursor.getString(DataQuery.DISPLAY_NAME);
436 suggestion.lookupKey = mDataCursor.getString(DataQuery.LOOKUP_KEY);
442 long rawContactId = mDataCursor.getLong(DataQuery.RAW_CONTACT_ID);
446 rawContact.accountName = mDataCursor.getString(DataQuery.ACCOUNT_NAME);
447 rawContact.accountType = mDataCursor.getString(DataQuery.ACCOUNT_TYPE);
448 rawContact.dataSet = mDataCursor.getString(DataQuery.DATA_SET)
    [all...]

Completed in 300 milliseconds