Home
last modified time | relevance | path

Searched refs:PROJECTION (Results 1 – 17 of 17) sorted by relevance

/frameworks/opt/chips/src/com/android/ex/chips/
DDefaultPhotoManager.java48 public static final String[] PROJECTION = { field in DefaultPhotoManager.PhotoQuery
93 photoThumbnailUri, PhotoQuery.PROJECTION, null, null, null); in fetchPhotoAsync()
DBaseRecipientAdapter.java109 public static final String[] PROJECTION = { field in BaseRecipientAdapter.DirectoryListQuery
328 DirectoryListQuery.URI, DirectoryListQuery.PROJECTION, in searchOtherDirectories()
DRecipientAlternatesAdapter.java167 DirectoryListQuery.PROJECTION, null, null, null); in getMatchingRecipientsFromDirectoryQueries()
/frameworks/ex/common/java/com/android/common/contacts/
DBaseEmailAddressAdapter.java114 public static final String[] PROJECTION = { field in BaseEmailAddressAdapter.EmailQuery
136 public static final String[] PROJECTION = { field in BaseEmailAddressAdapter.DirectoryListQuery
169 DirectoryListQuery.URI, DirectoryListQuery.PROJECTION, null, null, null); in performFiltering()
185 cursor = mContentResolver.query(uri, EmailQuery.PROJECTION, null, null, null); in performFiltering()
239 uri, EmailQuery.PROJECTION, null, null, null); in performFiltering()
539 MatrixCursor newCursor = new MatrixCursor(EmailQuery.PROJECTION); in removeDuplicatesAndTruncate()
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
DPhotoPagerAdapter.java37 new SimpleArrayMap<String, Integer>(PhotoQuery.PROJECTION.length);
85 for(String column : PhotoQuery.PROJECTION) { in swapCursor()
/frameworks/opt/photoviewer/src/com/android/ex/photo/provider/
DPhotoContract.java60 public final static String[] PROJECTION = { field
/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
DPhotoPagerLoader.java38 mProjection = projection != null ? projection : PhotoContract.PhotoQuery.PROJECTION; in PhotoPagerLoader()
/frameworks/base/docs/html/guide/topics/ui/
Dbinding.jd28 private static String[] PROJECTION = new String[] {
33 Cursor cur = managedQuery(People.CONTENT_URI, PROJECTION, null, null);
/frameworks/ex/common/tests/src/com/android/common/widget/
DGroupingListAdapterTests.java41 static private final String[] PROJECTION = new String[] { field in GroupingListAdapterTests
108 mCursor = new MatrixCursor(PROJECTION); in buildCursor()
/frameworks/base/core/java/android/provider/
DMediaStore.java571 private static final String[] PROJECTION = new String[] {_ID, MediaColumns.DATA}; field in MediaStore.InternalThumbnails
616 c = cr.query(cancelUri, PROJECTION, null, null, null); in cancelThumbnailRequest()
666 c = cr.query(baseUri, PROJECTION, column + origId, null, null); in getThumbnail()
680 c = cr.query(blockingUri, PROJECTION, null, null, null); in getThumbnail()
715 c = cr.query(uri, PROJECTION, null, null, null); in getThumbnail()
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DSettingsBackupAgent.java107 private static final String[] PROJECTION = { field in SettingsBackupAgent
610 Cursor cursor = getContentResolver().query(Settings.System.CONTENT_URI, PROJECTION, null, in getSystemSettings()
620 Cursor cursor = getContentResolver().query(Settings.Secure.CONTENT_URI, PROJECTION, null, in getSecureSettings()
630 Cursor cursor = getContentResolver().query(Settings.Global.CONTENT_URI, PROJECTION, null, in getGlobalSettings()
/frameworks/base/docs/html/guide/topics/ui/layout/
Dlistview.jd79 static final String[] PROJECTION = new String[] {ContactsContract.Data._ID,
123 PROJECTION, SELECTION, null, null);
/frameworks/base/docs/html/training/contacts-provider/
Dretrieve-details.jd94 private static final String PROJECTION =
231 PROJECTION,
326 private static final String[] PROJECTION =
Dretrieve-names.jd335 private static final String[] PROJECTION =
464 PROJECTION,
602 private static final String[] PROJECTION =
702 PROJECTION,
806 PROJECTION,
Ddisplay-contact-badge.jd527 private static final String[] PROJECTION =
/frameworks/native/opengl/libagl/
Dcontext.h487 PROJECTION = 0x02, enumerator
Dmatrix.cpp128 if (dirty & transform_state_t::PROJECTION) { in ogles_validate_transform_impl()
499 case GL_PROJECTION: dirty |= PROJECTION | MVP; break; in invalidate()