/frameworks/base/graphics/java/android/renderscript/ |
ProgramVertexFixedFunction.java | 178 * Helper class to store modelview, projection and texture 245 * Sets the projection matrix in the fixed function matrix buffer 247 * @param m projection matrix
|
/frameworks/base/test-runner/src/android/test/mock/ |
MockContentProvider.java | 94 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs, 96 return MockContentProvider.this.query(url, projection, selection, 186 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
|
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/ |
SelectVisibleCalendarsFragment.java | 49 private static final String[] PROJECTION = new String[] { 144 mService.startQuery(mQueryToken, null, Calendars.CONTENT_URI, PROJECTION, SELECTION, 168 mService.startQuery(mQueryToken, null, Calendars.CONTENT_URI, PROJECTION, SELECTION,
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
LocalVideo.java | 46 // the following PROJECTION array. 60 static final String[] PROJECTION = new String[] { 91 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...] |
/frameworks/base/docs/html/resources/articles/ |
live-folders.jd | 117 <p>Then we need to create a new projection map for the cursor. A projection map 137 projection map to the SQL query builder:</p> 139 <pre>public Cursor query(Uri uri, String[] projection, String selection, 155 Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, BooksStore.Book.DEFAULT_SORT_ORDER);
|
/cts/tests/tests/provider/src/android/provider/cts/ |
CalendarTest.java | 580 // indexes into projection 630 // indexes into projection 684 // indexes into projection 766 String[] projection = { columnName }; local 770 Cursor c = resolver.query(uri, projection, selection, selectionArgs, null); 1458 String[] projection = new String[] { Instances.BEGIN }; local 1834 String[] projection = { Instances.BEGIN, Instances.START_MINUTE, Instances.END_MINUTE }; local 2008 String[] projection = { Instances.BEGIN, Instances.START_MINUTE }; local 2102 String[] projection = { Instances.BEGIN, Instances.START_MINUTE, Instances.EVENT_ID }; local 2272 String[] projection = { Instances.BEGIN, Instances.START_MINUTE }; local 2364 String[] projection = { Instances.BEGIN, Instances.EVENT_LOCATION }; local 2710 String[] projection = { Instances.BEGIN, Instances.START_MINUTE }; local [all...] |
/frameworks/base/core/java/android/content/ |
SearchRecentSuggestionsProvider.java | 313 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 352 if (projection != null && projection.length > 0) { 353 useProjection = new String[projection.length + 1]; 354 System.arraycopy(projection, 0, useProjection, 0, projection.length); 355 useProjection[projection.length] = "_id AS _id";
|
IContentProvider.java | 36 public Cursor query(Uri url, String[] projection, String selection,
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
BaseContactsProvider2Test.java | 543 protected Cursor queryContact(long contactId, String[] projection) { 545 projection, null, null, null); 627 final String[] projection = new String[] { local 632 Cursor c = mResolver.query(uri, projection, Data.MIMETYPE + "='" 1079 String[] projection = new String[values.size()]; local 1097 String[] projection = new String[] { local 1120 String[] projection = new String[] { local 1134 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, 485 static final String[] PROJECTION = new String[] { 492 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/providers/ContactsProvider/src/com/android/providers/contacts/ |
SocialProvider.java | 85 // Contacts projection map 92 // Contacts projection map 98 // Activities projection map 116 // Activities, raw contacts, and contacts projection map for joins 323 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 380 final Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, sortOrder, limit);
|
/development/samples/NotePad/src/com/example/android/notepad/ |
TitleEditor.java | 43 // Creates a projection that returns the note ID and the note contents. 44 private static final String[] PROJECTION = new String[] { 87 PROJECTION, // The columns to retrieve
|
/external/chromium/chrome/browser/sync/sessions/ |
status_controller.h | 121 const OrderedCommitSet::Projection& commit_id_projection() { 123 << "No group restriction for projection."; 227 // Returns true iff the commit id projection for |group_restriction_|
|
/frameworks/base/libs/rs/scriptc/ |
rs_matrix.rsh | 232 * Load an Ortho projection matrix constructed from the 6 planes 246 * Load an Frustum projection matrix constructed from the 6 planes 260 * Load an perspective projection matrix constructed from the 6 planes
|
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/ |
torus_test.rs | 109 // Setup the projection matrix with 30 degree field of view 211 // Setup the projection matrix 242 // Setup the projection matrix
|
/packages/apps/Calendar/src/com/android/calendar/ |
EventLoader.java | 69 * The projection used by the EventDays query. 71 private static final String[] PROJECTION = { 94 Cursor cursor = EventDays.query(cr, startDay, numDays, PROJECTION);
|
/packages/apps/Email/src/com/android/email/ |
AttachmentInfo.java | 41 // Projection which can be used with the constructor taking a Cursor argument 42 public static final String[] PROJECTION = new String[] {Attachment.RECORD_ID, Attachment.SIZE, 44 // Offsets into PROJECTION
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
RetrieveTransaction.java | 66 static final String[] PROJECTION = new String[] { 71 // The indexes of the columns which must be consistent with above PROJECTION. 98 uri, PROJECTION, null, null, null);
|
/prebuilt/sdk/14/renderscript/include/ |
rs_matrix.rsh | 232 * Load an Ortho projection matrix constructed from the 6 planes 246 * Load an Frustum projection matrix constructed from the 6 planes 260 * Load an perspective projection matrix constructed from the 6 planes
|
/cts/tests/tests/content/src/android/content/cts/ |
ContentProviderTest.java | 367 public Cursor query(Uri url, String[] projection, String selection, 438 public Cursor query(Uri uri, String[] projection, String selection, 509 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 511 return mDb.query("files", projection, selection, selectionArgs, null, null, null);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
Projector.java | 57 * Get the current projection matrix. Has the side-effect of
|
/external/svox/pico/src/com/svox/pico/providers/ |
SettingsProvider.java | 81 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
|