Searched refs:Projections (Results 1 – 11 of 11) sorted by relevance
38 import com.android.dialer.searchfragment.common.Projections;81 number = cursor.getString(Projections.PHONE_NUMBER); in bind()82 String name = cursor.getString(Projections.PHONE_DISPLAY_NAME); in bind()97 String photoUri = cursor.getString(Projections.PHONE_PHOTO_URI); in bind()102 cursor.getLong(Projections.PHONE_PHOTO_ID), in bind()118 String previousName = cursor.getString(Projections.PHONE_DISPLAY_NAME); in shouldShowPhoto()125 long contactId = cursor.getLong(Projections.PHONE_ID); in getContactUri()126 String lookupKey = cursor.getString(Projections.PHONE_LOOKUP_KEY); in getContactUri()133 int numberType = cursor.getInt(Projections.PHONE_TYPE); in getLabel()134 String numberLabel = cursor.getString(Projections.PHONE_LABEL); in getLabel()[all …]
29 import com.android.dialer.searchfragment.common.Projections;113 String currentNumber = cursor.getString(Projections.PHONE_NUMBER); in filter()114 String currentName = cursor.getString(Projections.PHONE_DISPLAY_NAME); in filter()
23 import com.android.dialer.searchfragment.common.Projections;32 Projections.PHONE_PROJECTION, in SearchContactsCursorLoader()
31 import com.android.dialer.searchfragment.common.Projections;61 number = cursor.getString(Projections.PHONE_NUMBER); in bind()62 String name = cursor.getString(Projections.PHONE_DISPLAY_NAME); in bind()63 String address = cursor.getString(Projections.PHONE_LABEL); in bind()68 String photoUri = cursor.getString(Projections.PHONE_PHOTO_URI); in bind()73 cursor.getLong(Projections.PHONE_PHOTO_ID), in bind()80 long contactId = cursor.getLong(Projections.PHONE_ID); in getContactUri()81 String lookupKey = cursor.getString(Projections.PHONE_LOOKUP_KEY); in getContactUri()
24 import com.android.dialer.searchfragment.common.Projections;32 super(context, getContentUri(context, query), Projections.PHONE_PROJECTION, null, null, null); in NearbyPlacesCursorLoader()
115 Projections.PROJ_SUMMARY, null, null, null); in testGroupSummary()121 final long groupId = cursor.getLong(Projections.COL_ID); in testGroupSummary()122 final int summaryCount = cursor.getInt(Projections.COL_SUMMARY_COUNT); in testGroupSummary()123 final int summaryWithPhones = cursor.getInt(Projections.COL_SUMMARY_WITH_PHONES); in testGroupSummary()215 private interface Projections { interface in GroupsTest
654 final Cursor cursor = resolver.query(contactUri, Projections.PROJ_RAW_CONTACTS, null, in getContactForRawContact()660 final long aggId = cursor.getLong(Projections.COL_CONTACTS_ID); in getContactForRawContact()669 final Cursor cursor = resolver.query(contactUri, Projections.PROJ_ID, null, null, in getDataCountForContact()680 final Cursor cursor = resolver.query(contactUri, Projections.PROJ_ID, null, null, in getDataCountForRawContact()732 private interface Projections { interface in ContactsActor
30 import com.android.providers.contacts.ContactsDatabaseHelper.Projections;231 Cursor c = db.query(Tables.GROUPS, Projections.ID,
141 import com.android.providers.contacts.ContactsDatabaseHelper.Projections;3759 Cursor c = db.query(Views.GROUPS, Projections.ID, in deleteInTransaction()3929 Cursor c = db.query(Tables.RAW_CONTACTS, Projections.LITERAL_ONE, in rawContactIsLocal()3957 Views.STREAM_ITEMS, Projections.ID, selection, selectionArgs, null, null, null); in deleteStreamItems()4501 Projections.ID, selection, in updateRawContacts()
346 public interface Projections { interface in ContactsDatabaseHelper
22 public class Projections { class