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

/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/java/android/content/
H A DContentProviderClient.java47 public Cursor query(Uri url, String[] projection, String selection, argument
49 return mContentProvider.query(url, projection, selection, selectionArgs, sortOrder);
H A DAsyncQueryHandler.java51 public String[] projection; field in class:AsyncQueryHandler.WorkerArgs
79 cursor = resolver.query(args.uri, args.projection,
151 * @param projection A list of which columns to return. Passing null will
165 String[] projection, String selection, String[] selectionArgs,
174 args.projection = projection;
164 startQuery(int token, Object cookie, Uri uri, String[] projection, String selection, String[] selectionArgs, String orderBy) argument
H A DIContentProvider.java43 public IBulkCursor bulkQuery(Uri url, String[] projection, argument
46 public Cursor query(Uri url, String[] projection, String selection, argument
H A DContentProvider.java146 public IBulkCursor bulkQuery(Uri uri, String[] projection, argument
150 Cursor cursor = ContentProvider.this.query(uri, projection,
160 public Cursor query(Uri uri, String[] projection, argument
163 return ContentProvider.this.query(uri, projection, selection,
430 projection, // Which columns to return.
451 projection,
464 * @param projection The list of columns to put into the cursor. If
475 public abstract Cursor query(Uri uri, String[] projection, argument
H A DContentProviderNative.java79 // String[] projection
81 String[] projection = null;
83 projection = new String[num];
85 projection[i] = data.readString();
111 IBulkCursor bulkCursor = bulkQuery(url, projection, selection,
290 Uri url, String[] projection,
301 if (projection != null) {
302 length = projection.length;
306 data.writeString(projection[i]);
352 public IBulkCursor bulkQuery(Uri url, String[] projection, argument
289 bulkQueryInternal( Uri url, String[] projection, String selection, String[] selectionArgs, String sortOrder, IContentObserver observer, CursorWindow window, BulkCursorToCursorAdaptor adaptor) argument
361 query(Uri url, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
[all...]
H A DSearchRecentSuggestionsProvider.java307 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
346 if (projection != null && projection.length > 0) {
347 useProjection = new String[projection.length + 1];
348 System.arraycopy(projection, 0, useProjection, 0, projection.length);
349 useProjection[projection.length] = "_id AS _id";
H A DContentResolver.java212 * <li>Provide an explicit projection, to prevent
223 * @param projection A list of which columns to return. Passing null will
237 public final Cursor query(Uri uri, String[] projection, argument
245 Cursor qCursor = provider.query(uri, projection, selection, selectionArgs, sortOrder);
253 maybeLogQueryToEventLog(durationMillis, uri, projection, selection, sortOrder);
1283 Uri uri, String[] projection,
1295 if (projection != null) {
1296 for (int i = 0; i < projection.length; ++i) {
1302 projectionBuffer.append(projection[i]);
1282 maybeLogQueryToEventLog(long durationMillis, Uri uri, String[] projection, String selection, String sortOrder) argument
/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/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/base/core/java/com/android/internal/content/
H A DSyncStateContentProviderHelper.java85 public Cursor query(SQLiteDatabase db, String[] projection, argument
87 return db.query(SYNC_STATE_TABLE, projection, selection, selectionArgs,
/frameworks/base/core/tests/coretests/src/android/pim/vcard/
H A DExportTestResolver.java150 public Cursor query(Uri uri,String[] projection, argument
H A DVCardTestsBase.java56 public IBulkCursor bulkQuery(Uri url, String[] projection, String selection, argument
94 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/base/test-runner/src/android/test/mock/
H A DMockIContentProvider.java49 public IBulkCursor bulkQuery(Uri url, String[] projection, String selection, argument
82 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs, argument
H A DMockContentProvider.java70 public IBulkCursor bulkQuery(Uri url, String[] projection, String selection, argument
105 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs, argument
107 return MockContentProvider.this.query(url, projection, selection,
189 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerProvider.java111 public Cursor query(Uri uri, String[] projection, String selection, argument
115 Cursor cursor = db.query(TABLE_NAME, projection, selection,
/frameworks/base/core/tests/coretests/src/android/content/
H A DContentProviderOperationTest.java144 public Cursor query(Uri uri, String[] projection, String selection,
163 public Cursor query(Uri uri, String[] projection, String selection,
179 public Cursor query(Uri uri, String[] projection, String selection,
195 public Cursor query(Uri uri, String[] projection, String selection,
529 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/base/media/java/android/media/
H A DRingtoneManager.java557 String[] projection,
562 return mActivity.managedQuery(uri, projection, selection, selectionArgs, sortOrder);
564 return mContext.getContentResolver().query(uri, projection, selection, selectionArgs,
556 query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccProvider.java232 public Cursor query(Uri url, String[] projection, String selection, argument
/frameworks/base/core/java/android/provider/
H A DMediaStore.java476 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection) { argument
477 return cr.query(uri, projection, null, null, DEFAULT_SORT_ORDER);
480 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection, argument
482 return cr.query(uri, projection, where,
486 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection, argument
488 return cr.query(uri, projection, selection,
679 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection) { argument
680 return cr.query(uri, projection, null, null, DEFAULT_SORT_ORDER);
684 String[] projection) {
685 return cr.query(uri, projection, "kin
683 queryMiniThumbnails(ContentResolver cr, Uri uri, int kind, String[] projection) argument
688 queryMiniThumbnail(ContentResolver cr, long origId, int kind, String[] projection) argument
1530 query(ContentResolver cr, Uri uri, String[] projection) argument
[all...]
H A DCalendar.java211 public static final Cursor query(ContentResolver cr, String[] projection, argument
214 return cr.query(CONTENT_URI, projection, where,
810 public static final Cursor query(ContentResolver cr, String[] projection) { argument
811 return cr.query(CONTENT_URI, projection, null, null, DEFAULT_SORT_ORDER);
814 public static final Cursor query(ContentResolver cr, String[] projection, argument
816 return cr.query(CONTENT_URI, projection, where,
853 public static final Cursor query(ContentResolver cr, String[] projection, argument
858 return cr.query(builder.build(), projection, WHERE_CALENDARS_SELECTED,
862 public static final Cursor query(ContentResolver cr, String[] projection, argument
872 return cr.query(builder.build(), projection, wher
1177 query(ContentResolver cr, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
[all...]
H A DTelephony.java179 public static final Cursor query(ContentResolver cr, String[] projection) { argument
180 return cr.query(CONTENT_URI, projection, null, null, DEFAULT_SORT_ORDER);
183 public static final Cursor query(ContentResolver cr, String[] projection, argument
185 return cr.query(CONTENT_URI, projection, where,
1270 ContentResolver cr, String[] projection) {
1271 return cr.query(CONTENT_URI, projection, null, null, DEFAULT_SORT_ORDER);
1275 ContentResolver cr, String[] projection,
1277 return cr.query(CONTENT_URI, projection,
1269 query( ContentResolver cr, String[] projection) argument
1274 query( ContentResolver cr, String[] projection, String where, String orderBy) argument
/frameworks/base/core/java/android/app/
H A DActivity.java1474 * @param projection List of columns to return.
1485 String[] projection,
1489 Cursor c = getContentResolver().query(uri, projection, selection, null, sortOrder);
1504 * @param projection List of columns to return.
1515 String[] projection,
1520 Cursor c = getContentResolver().query(uri, projection, selection, selectionArgs, sortOrder);
1484 managedQuery(Uri uri, String[] projection, String selection, String sortOrder) argument
1514 managedQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
/frameworks/base/include/private/opengles/
H A Dgl_context.h495 matrix_stack_t projection; member in struct:android::gl::transform_state_t
498 // modelview * projection

Completed in 408 milliseconds