HomeSort by relevance Sort by last modified time
    Searched full:projection (Results 101 - 125 of 377) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/libs/hwui/
Program.h 80 * Binds the program with the specified projection, modelView and
  /frameworks/base/libs/rs/scriptc/
rs_graphics.rsh 123 * Load the projection matrix for a currently bound fixed function
126 * @param proj projection matrix
147 * Get the projection matrix for a currently bound fixed function
150 * @param proj matrix to store the current projection matrix into
  /packages/apps/Browser/src/com/android/browser/homepages/
HomeProvider.java 61 public Cursor query(Uri uri, String[] projection, String selection,
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryServiceHelper.java 58 public String[] projection; field in class:AsyncQueryServiceHelper.OperationInfo
121 builder.append(",\n\t projection= ");
122 builder.append(Arrays.toString(projection));
287 cursor = resolver.query(args.uri, args.projection, args.selection,
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertActivity.java 56 private static final String[] PROJECTION = new String[] {
104 values.put(PROJECTION[INDEX_STATE], CalendarAlerts.STATE_DISMISSED);
112 values.put(PROJECTION[INDEX_STATE], CalendarAlerts.STATE_DISMISSED);
259 mQueryHandler.startQuery(0, null, uri, PROJECTION, SELECTION,
  /packages/apps/Camera/src/com/android/camera/
Thumbnail.java 191 String[] projection = new String[] {ImageColumns._ID, ImageColumns.ORIENTATION, local
199 cursor = resolver.query(query, projection, selection, null, order);
217 String[] projection = new String[] {VideoColumns._ID, MediaColumns.DATA, local
224 cursor = resolver.query(query, projection, selection, null, order);
  /packages/apps/Contacts/src/com/android/contacts/calllog/
DefaultVoicemailNotifier.java 226 private static final String[] PROJECTION = {
245 cursor = mContentResolver.query(Calls.CONTENT_URI_WITH_VOICEMAIL, PROJECTION,
289 private static final String[] PROJECTION = { PhoneLookup.DISPLAY_NAME };
304 PROJECTION, null, null, null);
  /packages/apps/Email/src/com/android/email/activity/
MailboxFragmentAdapter.java 86 * {@link #ROW_TYPE} specified in {@link #PROJECTION} and {@link #SUBMAILBOX_PROJECTION}.
105 * Projection for a typical mailbox or account row.
106 * <p><em>NOTE</em> This projection contains two ID columns. The first, named "_id", is used
111 private static final String[] PROJECTION = new String[] { MailboxColumns.ID,
117 * Projection used to retrieve immediate children for a mailbox. The columns need to
118 * be identical to those in {@link #PROJECTION}. We are only changing the constant
131 /** Project to use for matrix cursors; rows MUST be identical to {@link #PROJECTION} */
514 : PROJECTION,
550 Mailbox.CONTENT_URI, PROJECTION, SYSTEM_MAILBOX_SELECTION,
  /packages/apps/HTMLViewer/src/com/android/htmlviewer/
FileContentProvider.java 81 public Cursor query(Uri uri, String[] projection, String selection,
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/tests/
CrashingIconProvider.java 66 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
  /prebuilt/sdk/14/renderscript/include/
rs_graphics.rsh 120 * Load the projection matrix for a currently bound fixed function
123 * @param proj projection matrix
144 * Get the projection matrix for a currently bound fixed function
147 * @param proj matrix to store the current projection matrix into
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 180 DirtyQuery.PROJECTION,
338 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION,
474 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION,
600 UserIdQuery.PROJECTION,
628 resolver.query(Data.CONTENT_URI, ProfileQuery.PROJECTION, ProfileQuery.SELECTION,
647 public static final String[] PROJECTION = new String[] {
691 public final static String[] PROJECTION = new String[] {Data._ID};
709 public final static String[] PROJECTION = new String[] {
734 public final static String[] PROJECTION = new String[] {
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsProvider.java 110 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
137 return query.query(db, projection, selection, selectionArgs, null, null, sortOrder);
  /cts/tests/src/android/content/cts/
DummyProvider.java 118 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
125 Cursor c = db.query(tbName, projection, selection, selectionArgs, null, null, sortOrder);
  /cts/tests/tests/provider/src/android/provider/cts/
SearchRecentSuggestionsTest.java 228 private void waitForCursorCount(final Uri uri, final String[] projection,
234 cursor = mTestSRSProvider.query(uri, projection, null, null, null);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchRotateActivity.java 140 * Set our projection matrix. This doesn't have to be done
141 * each time we draw, but usually a new projection needs to
  /external/mesa3d/test/
m_matrix.h 58 MATRIX_3D_NO_ROT, /**< orthogonal projection and others... */
59 MATRIX_PERSPECTIVE, /**< perspective projection matrix */
  /frameworks/base/core/java/android/content/
ContentProviderClient.java 48 public Cursor query(Uri url, String[] projection, String selection,
50 return mContentProvider.query(url, projection, selection, selectionArgs, sortOrder);
ContentProviderOperation.java 228 String[] projection = null; local
230 // Build projection map from expected values
235 projection = projectionList.toArray(new String[projectionList.size()]);
237 final Cursor cursor = provider.query(mUri, projection, mSelection, selectionArgs, null);
240 if (projection != null) {
242 for (int i = 0; i < projection.length; i++) {
244 final String expectedValue = values.getAsString(projection[i]);
250 + projection[i]);
  /frameworks/base/opengl/tests/gldual/src/com/android/gldual/
TriangleRenderer.java 95 * Set our projection matrix. This doesn't have to be done
96 * each time we draw, but usually a new projection needs to
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientAlternatesAdapter.java 79 Cursor c = context.getContentResolver().query(Email.CONTENT_URI, EmailQuery.PROJECTION,
112 super(context, context.getContentResolver().query(Email.CONTENT_URI, EmailQuery.PROJECTION,
  /frameworks/ex/common/java/com/android/common/content/
SyncStateContentProviderHelper.java 81 public Cursor query(SQLiteDatabase db, String[] projection,
83 return db.query(SYNC_STATE_TABLE, projection, selection, selectionArgs,
  /packages/apps/Browser/src/com/android/browser/
SnapshotTab.java 152 static final String[] PROJECTION = new String[] {
174 return mContentResolver.query(uri, PROJECTION, null, null, null);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncFragment.java 61 private static final String[] PROJECTION = new String[] {
171 getActivity(), Calendars.CONTENT_URI, PROJECTION, SELECTION, mArgs, SORT_ORDER);
SelectSyncedCalendarsMultiAccountActivity.java 43 private static final String[] PROJECTION = new String[] {
58 mCursor = managedQuery(Calendars.CONTENT_URI, PROJECTION,

Completed in 1032 milliseconds

1 2 3 45 6 7 8 91011>>