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