/frameworks/rs/ |
rsProgramVertex.cpp | 70 "Attempting to set fixed function emulation matrix projection on user program"); 75 "Unable to set fixed function emulation matrix projection because allocation is missing"); 124 "Attempting to get fixed function emulation matrix projection on user program"); 129 "Unable to get fixed function emulation matrix projection because allocation is missing");
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
BluetoothPbapCallLogComposer.java | 59 /** The projection to use when querying the call log table */ 93 final String[] projection; local 95 projection = sCallLogProjection; 102 contentUri, projection, selection, selectionArgs, sortOrder);
|
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
AlertActivity.java | 56 private static final String[] PROJECTION = new String[] { 98 values.put(PROJECTION[INDEX_STATE], CalendarAlerts.STATE_DISMISSED); 127 values.put(PROJECTION[INDEX_STATE], CalendarAlerts.STATE_DISMISSED); 236 mQueryHandler.startQuery(0, null, uri, PROJECTION, SELECTION, SELECTIONARG,
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
VoicemailTable.java | 40 public Cursor query(UriData uriData, String[] projection, String selection,
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.jface.text.source_3.6.1.r361_v20100825-0800.jar | |
/frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/ |
SampleProvider.java | 61 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 63 MatrixCursor matrix = new MatrixCursor(projection); 102 * check the projection to properly match the columns.
|
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/ |
SelectVisibleCalendarsFragment.java | 50 private static final String[] PROJECTION = new String[] { 151 mService.startQuery(mQueryToken, null, Calendars.CONTENT_URI, PROJECTION, SELECTION, 174 mService.startQuery(mQueryToken, null, Calendars.CONTENT_URI, PROJECTION, SELECTION,
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
SecureAlbum.java | 36 private static final String[] PROJECTION = {MediaColumns._ID}; 138 Cursor cursor = mContext.getContentResolver().query(uri, PROJECTION, 155 Cursor cursor = mContext.getContentResolver().query(uri, PROJECTION,
|
LocalImage.java | 56 // the following PROJECTION array. 72 static final String[] PROJECTION = { 96 PROJECTION[INDEX_WIDTH] = MediaColumns.WIDTH; 97 PROJECTION[INDEX_HEIGHT] = MediaColumns.HEIGHT; 118 Cursor cursor = LocalAlbum.getItemCursor(resolver, uri, PROJECTION, id);
|
/development/samples/NotePad/tests/src/com/example/android/notepad/ |
NotePadProviderTest.java | 362 null, // no projection, retrieve all the columns 423 // Defines a projection of column names to return for a query 448 null, // no projection, get all columns 466 null, // no projection, get all columns 477 // A query that uses a projection should return a cursor with the same number of columns 478 // as the projection, with the same names, in the same order. 487 // Asserts that the number of columns in the cursor is the same as in the projection 490 // Asserts that the names of the columns in the cursor and in the projection are the same. 498 // criteria. Use a projection so that it's easy to get the data in a particular column. 542 // Creates a projection includes the note id column, so that note id can be retrieved [all...] |
/developers/build/prebuilts/gradle/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/basicsyncadapter/ |
EntryListFragment.java | 90 * Projection for querying the content provider. 92 private static final String[] PROJECTION = new String[]{ 100 // the projection. 217 PROJECTION, // Projection
|
/developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/basicsyncadapter/ |
EntryListFragment.java | 90 * Projection for querying the content provider. 92 private static final String[] PROJECTION = new String[]{ 100 // the projection. 217 PROJECTION, // Projection
|
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/ |
EntryListFragment.java | 90 * Projection for querying the content provider. 92 private static final String[] PROJECTION = new String[]{ 100 // the projection. 217 PROJECTION, // Projection
|
/frameworks/base/cmds/content/src/com/android/commands/content/ |
Content.java | 57 * adb shell content query --uri content://settings/secure --projection name:value 97 + " [--projection <PROJECTION>] [--where <WHERE>] [--sort <SORT_ORDER>]\n" 98 + " <PROJECTION> is a list of colon separated column names and is formatted:\n" 104 + " adb shell content query --uri content://settings/secure --projection name:value" 124 private static final String ARGUMENT_PROJECTION = "--projection"; 279 String[] projection = null; local 292 projection = argumentValueRequired(argument).split("[\\s]*:[\\s]*"); 301 return new QueryCommand(uri, userId, projection, where, sort); 466 Uri uri, int userId, String[] projection, String where, String sortOrder) [all...] |
/packages/apps/Gallery2/src/com/android/photos/data/ |
PhotoProvider.java | 308 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 310 return query(uri, projection, selection, selectionArgs, sortOrder, null); 314 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 316 projection = replaceCount(projection); 321 Cursor c = query(table, projection, selection, selectionArgs, sortOrder, cancellationSignal); 529 protected static String[] replaceCount(String[] projection) { 530 if (projection != null && projection.length == 1 531 && BaseColumns._COUNT.equals(projection[0])) [all...] |
/developers/build/prebuilts/gradle/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/common/db/ |
SelectionBuilder.java | 52 * .query(db, projection, sortOrder) 251 * Process user-supplied projection (column list). 261 * @param columns User supplied projection (column list). 286 * <p>Using a null projection (column list) is not supported. 289 * @param columns Database projection (column list) to return, must be non-NULL. 303 * <p>Using a null projection (column list) is not supported. 306 * @param columns Database projection (column list) to return, must be non-null.
|
/developers/samples/android/common/src/java/com/example/android/common/db/ |
SelectionBuilder.java | 52 * .query(db, projection, sortOrder) 251 * Process user-supplied projection (column list). 261 * @param columns User supplied projection (column list). 286 * <p>Using a null projection (column list) is not supported. 289 * @param columns Database projection (column list) to return, must be non-NULL. 303 * <p>Using a null projection (column list) is not supported. 306 * @param columns Database projection (column list) to return, must be non-null.
|
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/ |
SelectionBuilder.java | 52 * .query(db, projection, sortOrder) 251 * Process user-supplied projection (column list). 261 * @param columns User supplied projection (column list). 286 * <p>Using a null projection (column list) is not supported. 289 * @param columns Database projection (column list) to return, must be non-NULL. 303 * <p>Using a null projection (column list) is not supported. 306 * @param columns Database projection (column list) to return, must be non-null.
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
UVCoordinatesGenerator.java | 75 // 2D texture mapping (projection) 88 * @param projection 89 * the projection type for 2D textures 98 public static VertexBuffer generateUVCoordinates(int texco, int projection, int textureDimension, int[] coordinatesSwappingIndexes, List<Geometry> geometries) { 148 switch (projection) { 164 throw new IllegalStateException("Unknown projection type: " + projection);
|
/frameworks/base/core/java/android/content/ |
SearchRecentSuggestionsProvider.java | 319 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 358 if (projection != null && projection.length > 0) { 359 useProjection = new String[projection.length + 1]; 360 System.arraycopy(projection, 0, useProjection, 0, projection.length); 361 useProjection[projection.length] = "_id AS _id";
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
BaseContactsProvider2Test.java | 532 protected Cursor queryContact(long contactId, String[] projection) { 534 projection, null, null, null); 616 final String[] projection = new String[] { local 621 Cursor c = mResolver.query(uri, projection, Data.MIMETYPE + "='" 1157 String[] projection = new String[values.size()]; local 1175 String[] projection = new String[] { local 1198 String[] projection = new String[] { local 1212 String[] projection = new String[] { local [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
LoaderThrottle.java | 168 // A projection map used to select columns from the database 190 // Create and initialize projection map for all columns. This is 211 public Cursor query(Uri uri, String[] projection, String selection, 243 Cursor c = qb.query(db, projection, selection, selectionArgs, 484 static final String[] PROJECTION = new String[] { 491 PROJECTION, null, null, null);
|
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
LoaderThrottleSupport.java | 169 // A projection map used to select columns from the database 191 // Create and initialize projection map for all columns. This is 212 public Cursor query(Uri uri, String[] projection, String selection, 244 Cursor c = qb.query(db, projection, selection, selectionArgs, 484 static final String[] PROJECTION = new String[] { 491 PROJECTION, null, null, null);
|
/frameworks/ex/common/java/com/android/common/contacts/ |
BaseEmailAddressAdapter.java | 114 public static final String[] PROJECTION = { 136 public static final String[] PROJECTION = { 169 DirectoryListQuery.URI, DirectoryListQuery.PROJECTION, null, null, null); 185 cursor = mContentResolver.query(uri, EmailQuery.PROJECTION, null, null, null); 239 uri, EmailQuery.PROJECTION, null, null, null); 539 MatrixCursor newCursor = new MatrixCursor(EmailQuery.PROJECTION);
|
/packages/apps/Camera2/src/com/android/camera/crop/ |
SaveImage.java | 348 public static void querySource(Context context, Uri sourceUri, String[] projection, 351 querySourceFromContentResolver(contentResolver, sourceUri, projection, callback); 355 ContentResolver contentResolver, Uri sourceUri, String[] projection, 359 cursor = contentResolver.query(sourceUri, projection, null, null, 501 final String[] projection = new String[] { local 506 SaveImage.querySource(context, sourceUri, projection,
|