Home | History | Annotate | Download | only in list

Lines Matching defs:Phone

26 import android.provider.ContactsContract.CommonDataKinds.Phone;
56 * A cursor adapter for the {@link Phone#CONTENT_ITEM_TYPE} and
59 * By default this adapter just handles phone numbers. When {@link #setUseCallableUri(boolean)} is
61 * API instead of {@link Phone}.
100 Phone._ID, // 0
101 Phone.TYPE, // 1
102 Phone.LABEL, // 2
103 Phone.NUMBER, // 3
104 Phone.CONTACT_ID, // 4
105 Phone.LOOKUP_KEY, // 5
106 Phone.PHOTO_ID, // 6
107 Phone.DISPLAY_NAME_PRIMARY, // 7
108 Phone.PHOTO_THUMBNAIL_URI, // 8
116 projectionList.add(Phone.CARRIER_PRESENCE); // 9
122 Phone._ID, // 0
123 Phone.TYPE, // 1
124 Phone.LABEL, // 2
125 Phone.NUMBER, // 3
126 Phone.CONTACT_ID, // 4
127 Phone.LOOKUP_KEY, // 5
128 Phone.PHOTO_ID, // 6
129 Phone.DISPLAY_NAME_ALTERNATIVE, // 7
130 Phone.PHOTO_THUMBNAIL_URI, // 8
138 projectionList.add(Phone.CARRIER_PRESENCE); // 9
156 "length(" + Phone.NUMBER + ") < 1000";
235 Uri baseUri = mUseCallableUri ? Callable.CONTENT_URI : Phone.CONTENT_URI;
239 builder.appendQueryParameter(Phone.EXTRA_ADDRESS_BOOK_INDEX, "true");
244 // Ignore invalid phone numbers that are too long. These can potentially cause freezes
267 loader.setSortOrder(Phone.SORT_KEY_PRIMARY);
269 loader.setSortOrder(Phone.SORT_KEY_ALTERNATIVE);
310 break; // This adapter is always "phone only", so no selection needed either.
387 // Override default, which would return number of phone numbers, so we
418 // entries in the group show just their data (e.g. phone number, email address).
474 label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
481 // Display phone label. If that's null, display geocoded location for the number
495 boolean isPresent = (carrierPresence & Phone.CARRIER_PRESENCE_VT_CAPABLE) != 0;