/frameworks/support/content/src/androidTest/java/androidx/contentpager/content/ |
D | TestContentProvider.java | 69 public static final String[] PROJECTION = { field in TestContentProvider 178 TestWindowedCursor c = new TestWindowedCursor(PROJECTION, recordsetSize); in buildPagedWindowedResults() 180 window.setNumColumns(PROJECTION.length); in buildPagedWindowedResults() 243 MatrixCursor c = new MatrixCursor(PROJECTION); in createInMemoryCursor() 264 for (int i = 1; i < PROJECTION.length; i++) { in fillRow()
|
/frameworks/support/tv-provider/src/main/java/androidx/tvprovider/media/tv/ |
D | Program.java | 79 public static final String[] PROJECTION = getProjection(); field in Program 216 return CollectionUtils.concatAll(BaseProgram.PROJECTION, baseColumns, nougatColumns); in getProjection() 218 return CollectionUtils.concatAll(BaseProgram.PROJECTION, baseColumns); in getProjection()
|
D | PreviewProgram.java | 82 public static final String[] PROJECTION = getProjection(); field in PreviewProgram 192 return CollectionUtils.concatAll(BasePreviewProgram.PROJECTION, oColumns); in getProjection()
|
D | WatchNextProgram.java | 85 public static final String[] PROJECTION = getProjection(); field in WatchNextProgram 216 return CollectionUtils.concatAll(BasePreviewProgram.PROJECTION, oColumns); in getProjection()
|
D | PreviewChannelHelper.java | 184 PreviewChannel.Columns.PROJECTION, in getAllChannels() 209 .query(channelUri, PreviewChannel.Columns.PROJECTION, null, null, null); in getPreviewChannel()
|
D | BasePreviewProgram.java | 50 public static final String[] PROJECTION = getProjection(); field in BasePreviewProgram 598 return CollectionUtils.concatAll(BaseProgram.PROJECTION, oColumns); in getProjection()
|
D | PreviewChannel.java | 307 public static final String[] PROJECTION = { field in PreviewChannel.Columns
|
D | BaseProgram.java | 48 public static final String[] PROJECTION = getProjection(); field in BaseProgram
|
/frameworks/ex/common/java/com/android/common/contacts/ |
D | BaseEmailAddressAdapter.java | 114 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/chips/src/com/android/ex/chips/ |
D | DefaultPhotoManager.java | 48 public static final String[] PROJECTION = { field in DefaultPhotoManager.PhotoQuery 93 photoThumbnailUri, PhotoQuery.PROJECTION, null, null, null); in fetchPhotoAsync()
|
D | BaseRecipientAdapter.java | 121 public static final String[] PROJECTION = { field in BaseRecipientAdapter.DirectoryListQuery 377 DirectoryListQuery.URI, DirectoryListQuery.PROJECTION, in searchOtherDirectories()
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/ |
D | PhotoPagerAdapter.java | 37 new SimpleArrayMap<String, Integer>(PhotoQuery.PROJECTION.length); 87 for(String column : PhotoQuery.PROJECTION) { in swapCursor()
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/provider/ |
D | PhotoContract.java | 60 public final static String[] PROJECTION = { field
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/ |
D | PhotoPagerLoader.java | 38 mProjection = projection != null ? projection : PhotoContract.PhotoQuery.PROJECTION; in PhotoPagerLoader()
|
/frameworks/support/tv-provider/src/androidTest/java/androidx/tvprovider/media/tv/ |
D | PreviewChannelTest.java | 167 MatrixCursor cursor = new MatrixCursor(PreviewChannel.Columns.PROJECTION); in getPreviewChannelCursor() 169 for (String col : PreviewChannel.Columns.PROJECTION) { in getPreviewChannelCursor()
|
D | ProgramTest.java | 68 Program.fromCursor(getProgramCursor(Program.PROJECTION, contentValues)), true); in testEmptyProgram() 86 Program.fromCursor(getProgramCursor(Program.PROJECTION, contentValues)), true); in testSampleProgram() 98 Program.fromCursor(getProgramCursor(Program.PROJECTION, contentValues)), true); in testFullyPopulatedProgram()
|
D | WatchNextProgramTest.java | 68 WatchNextProgram.fromCursor(getProgramCursor(Program.PROJECTION, contentValues)), in testEmptyPreviewProgram() 84 getProgramCursor(WatchNextProgram.PROJECTION, contentValues)), true); in testSampleProgram() 96 getProgramCursor(WatchNextProgram.PROJECTION, contentValues)), true); in testFullyPopulatedProgram()
|
D | PreviewProgramTest.java | 69 PreviewProgram.fromCursor(getProgramCursor(Program.PROJECTION, contentValues)), in testEmptyPreviewProgram() 88 getProgramCursor(PreviewProgram.PROJECTION, contentValues)), true); in testSampleProgram() 100 getProgramCursor(PreviewProgram.PROJECTION, contentValues)), true); in testFullyPopulatedPreviewProgram()
|
D | ChannelTest.java | 240 String[] cols = Channel.PROJECTION; in getChannelCursor()
|
/frameworks/ex/common/tests/src/com/android/common/widget/ |
D | GroupingListAdapterTests.java | 41 static private final String[] PROJECTION = new String[] { field in GroupingListAdapterTests 108 mCursor = new MatrixCursor(PROJECTION); in buildCursor()
|
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/graphics/ |
D | PaletteActivity.java | 73 static final String[] PROJECTION = { field in PaletteActivity.PaletteMediaStoreListFragment 157 PROJECTION, in onCreateLoader()
|
/frameworks/base/core/java/android/provider/ |
D | MediaStore.java | 622 private static final String[] PROJECTION = new String[] {_ID, MediaColumns.DATA}; field in MediaStore.InternalThumbnails 667 c = cr.query(cancelUri, PROJECTION, null, null, null); in cancelThumbnailRequest() 716 c = cr.query(baseUri, PROJECTION, column + origId, null, null); in getThumbnail() 730 c = cr.query(blockingUri, PROJECTION, null, null, null); in getThumbnail() 764 c = cr.query(uri, PROJECTION, null, null, null); in getThumbnail()
|
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/ |
D | LoaderThrottleSupport.java | 486 static final String[] PROJECTION = new String[] { field in LoaderThrottleSupport.ThrottledLoaderListFragment 495 PROJECTION, null, null, null); in onCreateLoader()
|
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
D | SettingsBackupAgent.java | 131 private static final String[] PROJECTION = { field in SettingsBackupAgent 500 Cursor cursor = getContentResolver().query(Settings.System.CONTENT_URI, PROJECTION, null, in getSystemSettings() 510 Cursor cursor = getContentResolver().query(Settings.Secure.CONTENT_URI, PROJECTION, null, in getSecureSettings() 520 Cursor cursor = getContentResolver().query(Settings.Global.CONTENT_URI, PROJECTION, null, in getGlobalSettings()
|
/frameworks/native/opengl/libagl/ |
D | context.h | 488 PROJECTION = 0x02, enumerator
|