Searched defs:projection (Results 1 - 25 of 89) sorted by relevance

1234

/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
H A DPhotoPagerLoader.java35 Context context, Uri photosUri, String[] projection) {
38 mProjection = projection != null ? projection : PhotoContract.PhotoQuery.PROJECTION;
34 PhotoPagerLoader( Context context, Uri photosUri, String[] projection) argument
/frameworks/support/compat/java/android/support/v4/content/
H A DContentResolverCompat.java42 * <li>Provide an explicit projection, to prevent
53 * @param projection A list of which columns to return. Passing null will
71 Uri uri, String[] projection, String selection, String[] selectionArgs,
80 return resolver.query(uri, projection, selection, selectionArgs, sortOrder,
98 return resolver.query(uri, projection, selection, selectionArgs, sortOrder);
70 query(ContentResolver resolver, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder, CancellationSignal cancellationSignal) argument
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
H A DDisabledProvider.java34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
H A DEnabledProvider.java34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
H A DTestProvider.java33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
H A DTestReceiver.java33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/base/core/tests/coretests/apks/install_multi_package/src/com/android/frameworks/coretests/
H A DFirstChildTestProvider.java33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
H A DFirstChildTestReceiver.java33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
H A DSecondChildTestProvider.java33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
H A DSecondChildTestReceiver.java33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
H A DTestProvider.java33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
H A DTestReceiver.java33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/base/core/tests/coretests/apks/version/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/base/core/tests/coretests/apks/version_nosys/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/base/media/java/android/media/projection/
H A DMediaProjectionInfo.java17 package android.media.projection;
/frameworks/base/core/java/android/database/sqlite/
H A DSqliteWrapper.java57 String[] projection, String selection, String[] selectionArgs, String sortOrder) {
59 return resolver.query(uri, projection, selection, selectionArgs, sortOrder);
56 query(Context context, ContentResolver resolver, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
/frameworks/base/core/java/android/provider/
H A DSearchIndexablesProvider.java106 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
125 * @param projection list of {@link android.provider.SearchIndexablesContract.XmlResource}
129 public abstract Cursor queryXmlResources(String[] projection); argument
136 * @param projection list of {@link android.provider.SearchIndexablesContract.RawData} columns
140 public abstract Cursor queryRawData(String[] projection); argument
147 * @param projection list of {@link android.provider.SearchIndexablesContract.NonIndexableKey}
151 public abstract Cursor queryNonIndexableKeys(String[] projection); argument
/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportStorageProvider.java59 public Cursor queryRoots(String[] projection) throws FileNotFoundException { argument
60 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection));
71 public Cursor queryDocument(String documentId, String[] projection) argument
74 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection));
78 return super.queryDocument(documentId, projection);
98 private static String[] resolveRootProjection(String[] projection) { argument
99 return projection != null ? projection : DEFAULT_ROOT_PROJECTION;
102 private static String[] resolveDocumentProjection(String[] projection) { argument
103 return projection !
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DDumpHeapProvider.java52 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserProvider.java35 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/
H A DSampleProvider.java61 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
63 MatrixCursor matrix = new MatrixCursor(projection);
102 * check the projection to properly match the columns.
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DSqliteWrapper.java69 String[] projection, String selection, String[] selectionArgs, String sortOrder) {
71 return resolver.query(uri, projection, selection, selectionArgs, sortOrder);
68 query(Context context, ContentResolver resolver, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DFakeSmsContentProvider.java75 public Cursor query(@NonNull Uri uri, @Nullable String[] projection, argument
79 return db.query(RAW_TABLE_NAME, projection, selection, selectionArgs, null, null,
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DExportTestProvider.java114 public Cursor query(Uri uri,String[] projection, argument
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/content/
H A DSharingSupportProvider.java45 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument

Completed in 2493 milliseconds

1234