/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/enterprise/ |
D | CrossProfileCalendarHelperTest.java | 39 final String[] projection = new String[]{ in testProjectionNotWhitelisted_throwErrorForCalendars() local 52 final String[] projection = new String[] { in testProjectionNotWhitelisted_throwErrorForEvents() local 65 final String[] projection = new String[] { in testProjectionNotWhitelisted_throwErrorForInstances() local 78 final String[] projection = mHelper.getCalibratedProjection(null, Calendars.CONTENT_URI); in testNoProjection_getFullWhitelistedProjectionForCalendars() local 85 final String[] projection = mHelper.getCalibratedProjection(null, Events.CONTENT_URI); in testNoProjection_getFullWhitelistedProjectionForEvents() local 91 final String[] projection = mHelper.getCalibratedProjection(null, Instances.CONTENT_URI); in testNoProjection_getFullWhitelistedProjectionForInstances() local
|
/packages/apps/EmergencyInfo/src/com/android/emergency/ |
D | EmergencySearchIndexablesProvider.java | 52 public Cursor queryXmlResources(String[] projection) { in queryXmlResources() 72 public Cursor queryRawData(String[] projection) { in queryRawData() 77 public Cursor queryNonIndexableKeys(String[] projection) { in queryNonIndexableKeys()
|
/packages/apps/Traceur/src/com/android/traceur/ |
D | SearchProvider.java | 45 public Cursor queryXmlResources(String[] projection) { in queryXmlResources() 50 public Cursor queryRawData(String[] projection) { in queryRawData() 68 public Cursor queryNonIndexableKeys(String[] projection) { in queryNonIndexableKeys()
|
D | StorageProvider.java | 75 public Cursor queryRoots(String[] projection) throws FileNotFoundException { in queryRoots() 100 public Cursor queryDocument(String documentId, String[] projection) in queryDocument() 126 String parentDocumentId, String[] projection, String sortOrder) in queryChildDocuments() 151 private static String[] resolveRootProjection(String[] projection) { in resolveRootProjection() 155 private static String[] resolveDocumentProjection(String[] projection) { in resolveDocumentProjection()
|
/packages/providers/ContactsProvider/test_common/src/com/android/providers/contacts/testutil/ |
D | DeletedContactUtil.java | 36 String[] projection = new String[]{ in queryDeletedTimestampForContactId() local 48 String[] projection = new String[] { in getCount() local 64 public static List<String[]> query(ContentResolver resolver, String[] projection) { in query() 74 public static List<String[]> querySinceTimestamp(ContentResolver resolver, String[] projection, in querySinceTimestamp()
|
D | ContactUtil.java | 45 String[] projection = new String[]{ in recordExistsForContactId() local 57 String[] projection = new String[]{ in queryContactLastUpdatedTimestamp() local
|
/packages/providers/TvProvider/tests/src/com/android/providers/tv/ |
D | ColumnFilterTest.java | 83 String[] projection = new String[]{ in testQueryChannel() local 98 String[] projection = new String[]{ in testQueryChannel_count() local 117 String[] projection = new String[] { in testQueryChannelWithNoValidColumn() local 129 String[] projection = new String[] { in testInsertAndQueryChannel() local 147 String[] projection = new String[] { in testUpdateChannel() local
|
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/ |
D | TestDocumentsProvider.java | 66 public Cursor queryRoots(String[] projection) throws FileNotFoundException { in queryRoots() 71 public Cursor queryDocument(String documentId, String[] projection) in queryDocument() 77 public Cursor queryChildDocuments(String parentDocumentId, String[] projection, in queryChildDocuments() 89 public Cursor queryRecentDocuments(String rootId, String[] projection) { in queryRecentDocuments() 94 public Cursor querySearchDocuments(String rootId, String query, String[] projection) { in querySearchDocuments()
|
/packages/apps/UniversalMediaPlayer/java/com/android/pump/db/ |
D | AudioStore.java | 84 String[] projection = { in load() local 108 String[] projection = { in load() local 142 String[] projection = { in load() local 189 String[] projection = { in load() local 213 String[] projection = { in load() local 245 String[] projection = { in loadData() local 290 String[] projection = { MediaStore.Audio.Artists.ARTIST }; in loadData() local 319 String[] projection = { in loadData() local 363 String[] projection = { MediaStore.Audio.Genres.NAME }; in loadData() local 392 String[] projection = { MediaStore.Audio.Playlists.NAME }; in loadData() local [all …]
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
D | CellBroadcastSearchIndexableProvider.java | 110 public Cursor queryXmlResources(String[] projection) { in queryXmlResources() 128 public Cursor queryRawData(String[] projection) { in queryRawData() 166 public Cursor queryNonIndexableKeys(String[] projection) { in queryNonIndexableKeys()
|
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/ |
D | BrokenProvider.java | 47 public Cursor queryDocument(String documentId, String[] projection) in queryDocument() 57 public Cursor queryChildDocuments(String parentDocumentId, String[] projection, in queryChildDocuments()
|
D | PagingProvider.java | 47 public Cursor queryDocument(String documentId, String[] projection) in queryDocument() 56 String parentDocumentId, String[] projection, String sortOrder) in queryChildDocuments() 63 String parentDocumentId, String[] projection, Bundle queryArgs) in queryChildDocuments()
|
D | BrokenSettingsEnabledProvider.java | 42 public Cursor queryDocument(String documentId, String[] projection) in queryDocument() 55 String parentDocumentId, String[] projection, String sortOrder) in queryChildDocuments()
|
D | DemoProvider.java | 55 public Cursor queryDocument(String documentId, String[] projection) in queryDocument() 68 String parentDocumentId, String[] projection, String sortOrder) in queryChildDocuments()
|
/packages/apps/Contacts/src/com/android/contacts/database/ |
D | NoNullCursorAsyncQueryHandler.java | 36 public void startQuery(int token, Object cookie, Uri uri, String[] projection, String selection, in startQuery() 62 public final String[] projection; field in NoNullCursorAsyncQueryHandler.CookieWithProjection 64 public CookieWithProjection(Object cookie, String[] projection) { in CookieWithProjection()
|
/packages/providers/ContactsProvider/tests2/src/com/android/providers/contacts/tests2/ |
D | AllUriTest.java | 306 String[] projection, String selection, in checkQueryExecutable() 309 try (Cursor c = mResolver.query(uri, projection, selection, in checkQueryExecutable() argument 318 try (Cursor c = mResolver.query(uri, projection, selection, in checkQueryExecutable() argument 330 projection, selection, selectionArgs, sortOrder)) { in checkQueryExecutable() argument 345 projection, selection, selectionArgs, sortOrder)) { in checkQueryExecutable() argument 354 String[] projection, String selection, in checkQueryNotExecutable() 357 try (Cursor c = mResolver.query(uri, projection, selection, in checkQueryNotExecutable() argument 524 final String[] projection = {getColumns(uri)[0]}; in testSelectWithAllArgs() local 582 private void checkColumnNotAccessibleInner(Uri uri, String[] projection, String selection, in checkColumnNotAccessibleInner() 585 try (Cursor c = mResolver.query(uri, projection, selection, in checkColumnNotAccessibleInner() argument
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/ |
D | LauncherSearchIndexablesProvider.java | 64 public Cursor queryRawData(String[] projection) { in queryRawData() 69 public Cursor queryNonIndexableKeys(String[] projection) { in queryNonIndexableKeys()
|
/packages/apps/Dialer/java/com/android/contacts/common/database/ |
D | NoNullCursorAsyncQueryHandler.java | 45 String[] projection, in startQuery() 97 public final String[] projection; field in NoNullCursorAsyncQueryHandler.CookieWithProjection 99 public CookieWithProjection(Object cookie, String[] projection) { in CookieWithProjection()
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/archives/ |
D | ResourcesProvider.java | 81 public Cursor queryRoots(String[] projection) throws FileNotFoundException { in queryRoots() 93 public Cursor queryDocument(String documentId, String[] projection) in queryDocument() 113 String parentDocumentId, String[] projection, String sortOrder) in queryChildDocuments()
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/enterprise/ |
D | CrossProfileCalendarHelper.java | 131 private static void ensureProjectionAllowed(String[] projection, Set<String> validColumnsSet) { in ensureProjectionAllowed() 153 public String[] getCalibratedProjection(String[] projection, Uri localUri) { in getCalibratedProjection()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | SqlInjectionDetectionTest.java | 116 private void assertQueryValid(final Uri uri, final String[] projection, in assertQueryValid() 123 final String[] projection, final String selection, final String sortOrder) { in assertQueryThrows()
|
D | EnterpriseContactsCursorWrapperTest.java | 32 final String[] projection = new String[] { in testWrappedResults() local
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | GlobalSearchSupport.java | 86 public ArrayList<?> asList(String[] projection) { in asList() 182 public Cursor handleSearchSuggestionsQuery(SQLiteDatabase db, Uri uri, String[] projection, in handleSearchSuggestionsQuery() 209 public Cursor handleSearchShortcutRefresh(SQLiteDatabase db, String[] projection, in handleSearchShortcutRefresh() 225 String[] projection, String selection, String filter, String limit, in addSearchSuggestionsBasedOnFilter()
|
/packages/apps/PermissionController/src/com/android/packageinstaller/permission/service/ |
D | BaseSearchIndexablesProvider.java | 60 public Cursor queryXmlResources(@Nullable String[] projection) { in queryXmlResources() 66 public Cursor queryNonIndexableKeys(@Nullable String[] projection) { in queryNonIndexableKeys()
|
/packages/apps/Settings/src/com/android/settings/search/ |
D | SettingsSearchIndexablesProvider.java | 100 public Cursor queryXmlResources(String[] projection) { in queryXmlResources() 120 public Cursor queryRawData(String[] projection) { in queryRawData() 150 public Cursor queryNonIndexableKeys(String[] projection) { in queryNonIndexableKeys()
|