Home | History | Annotate | Download | only in loaderapp

Lines Matching defs:ContactQuery

93     private interface ContactQuery {
265 cursor.getLong(ContactQuery._ID),
266 cursor.getString(ContactQuery.LOOKUP_KEY));
268 final long photoId = cursor.getLong(ContactQuery.PHOTO_ID);
591 mQueryHandler.startQuery(TOKEN_CONTACT_INFO, contactUri, contactUri, ContactQuery.COLUMNS,
640 final String displayName = c.getString(ContactQuery.DISPLAY_NAME);
641 final String phoneticName = c.getString(ContactQuery.PHONETIC_NAME);
645 if (!c.isNull(ContactQuery.CONTACT_PRESENCE_STATUS)) {
646 int presence = c.getInt(ContactQuery.CONTACT_PRESENCE_STATUS);
654 final String status = c.getString(ContactQuery.CONTACT_STATUS);
655 final Long statusTimestamp = c.isNull(ContactQuery.CONTACT_STATUS_TIMESTAMP)
657 : c.getLong(ContactQuery.CONTACT_STATUS_TIMESTAMP);
658 final Integer statusLabel = c.isNull(ContactQuery.CONTACT_STATUS_LABEL)
660 : c.getInt(ContactQuery.CONTACT_STATUS_LABEL);
661 final String statusResPackage = c.getString(ContactQuery.CONTACT_STATUS_RES_PACKAGE);