Home
last modified time | relevance | path

Searched refs:PROJECTION (Results 1 – 10 of 10) 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.java121 public static final String[] PROJECTION = { field in BaseRecipientAdapter.DirectoryListQuery
377 DirectoryListQuery.URI, DirectoryListQuery.PROJECTION, in searchOtherDirectories()
DRecipientAlternatesAdapter.java183 DirectoryListQuery.URI, DirectoryListQuery.PROJECTION, 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);
87 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/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/packages/SettingsProvider/src/com/android/providers/settings/
DSettingsBackupAgent.java153 static final String[] PROJECTION = { field in SettingsBackupAgent
596 Cursor cursor = getContentResolver().query(Settings.System.CONTENT_URI, PROJECTION, null, in getSystemSettings()
606 Cursor cursor = getContentResolver().query(Settings.Secure.CONTENT_URI, PROJECTION, null, in getSecureSettings()
616 Cursor cursor = getContentResolver().query(Settings.Global.CONTENT_URI, PROJECTION, null, in getGlobalSettings()
1149 .query(Settings.Secure.CONTENT_URI, PROJECTION, null, null, null)) { in getDeviceSpecificSettings() argument
/frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
DSettingsBackupAgentTest.java385 MatrixCursor result = new MatrixCursor(SettingsBackupAgent.PROJECTION); in query()