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

1 2 3 4 5 6 78 91011>>

  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 65 private static final String[] PROJECTION = {
147 Cursor cursor = getContentResolver().query(Words.CONTENT_URI, PROJECTION,
UserDictionaryProvider.java 104 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
134 Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, orderBy);
  /development/samples/NotePad/src/com/example/android/notepad/
NoteEditor.java 57 * Creates a projection that returns the note ID and the note contents.
59 private static final String[] PROJECTION =
210 PROJECTION, // A projection that returns the note ID and note content for each note.
486 PROJECTION, // Get the columns referred to in the projection
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactDirectoryManagerTest.java 77 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
86 new String[] { "projection", "selection", "selectionArgs", "sortOrder",
89 Lists.newArrayList(projection).toString(),
99 return new MatrixCursor(projection);
483 assertEquals("[f1, f2]", cursor.getString(cursor.getColumnIndex("projection")));
516 // but the projection should be correctly populated by ContactProvider
GlobalSearchSupportTest.java 275 String[] projection = new String[] { local
282 return mResolver.query(refershUri, projection, null, null, null);
  /frameworks/base/core/java/android/provider/
CalendarContract.java 749 * @param projection the columns to return in the cursor
752 public static final Cursor query(ContentResolver cr, long eventId, String[] projection) {
754 return cr.query(CONTENT_URI, projection, ATTENDEES_WHERE, attArgs /* selection args */,
2086 String[] projection = new String[] { ALARM_TIME }; local
2121 String[] projection = new String[] { local
2208 String[] projection = new String[] { ALARM_TIME }; local
    [all...]
  /frameworks/base/opengl/libagl/
matrix.cpp 69 c->transforms.projection.init(OGLES_PROJECTION_STACK_DEPTH);
91 c->transforms.projection.uninit();
127 // Validate the projection stack (in fact, it's never needed)
128 if (dirty & transform_state_t::PROJECTION) {
129 c->transforms.projection.validate();
203 // find out if this is a 2D projection
499 case GL_PROJECTION: dirty |= PROJECTION | MVP; break;
509 matrixf_t::multiply(temp_mvp, projection.top(), modelview.top());
918 stack = &c->transforms.projection;
  /packages/apps/Calendar/src/com/android/calendar/
Event.java 68 // The projection to use when querying instances to build a list of events
93 // The indices for the projection array above.
294 * @param projection The columns to return
304 private static final Cursor instancesQuery(ContentResolver cr, String[] projection,
325 return cr.query(builder.build(), projection, selection, selectionArgs,
  /packages/apps/Calendar/tests/src/com/android/calendar/
AsyncQueryServiceTest.java 95 work[index].projection = TEST_PROJECTION;
105 work[index].projection, work[index].selection, work[index].selectionArgs,
570 public final Cursor query(Uri uri, String[] projection, String selection,
575 assertEquals(mWork[index].projection, projection);
  /frameworks/base/core/java/android/net/
Downloads.java 323 private static final String[] PROJECTION = {
335 return context.getContentResolver().query(downloadUri, PROJECTION, null, null, null);
558 * Column projection for the query to the download manager. This must match
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 125 "uniform mat4 projection;\n" +
128 " gl_Position = projection * position;\n" +
400 final int uniformProjection = glGetUniformLocation(program, "projection");
  /packages/apps/Browser/src/com/android/browser/
BrowserHistoryPage.java 88 static final String[] PROJECTION = new String[] {
122 HistoryQuery.PROJECTION, where, null, sort);
132 HistoryQuery.PROJECTION, where, null, Combined.VISITS + " DESC");
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectSyncedCalendarsMultiAccountAdapter.java 99 private static final String[] PROJECTION = new String[] {
109 //Keep these in sync with the projection
372 Calendars.CONTENT_URI, PROJECTION,
  /packages/apps/Camera/jni/feature_stab/src/dbreg/
vp_motionmodel.h 254 /* w' projection given a point x,y,0,f */
258 /* X Projection given a point x,y,0,f and w' */
262 /* Y Projection given a point x,y,0,f and the w' */
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MatrixPaletteRenderer.java 372 * Set our projection matrix. This doesn't have to be done
373 * each time we draw, but usually a new projection needs to
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
SpriteTextRenderer.java 247 * Set our projection matrix. This doesn't have to be done
248 * each time we draw, but usually a new projection needs to
  /frameworks/base/core/java/android/database/sqlite/
SQLiteCursor.java 63 * phone) would be in the projection argument and everything from
84 * phone) would be in the projection argument and everything from
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupNames.java 139 String[] projection = new String[] { Profile.DISPLAY_NAME }; local
141 AccountSetupNames.this, PROFILE_URI, projection, null, null, null, 0);
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListAdapter.java 49 static final String[] PROJECTION = new String[] {
79 // with above PROJECTION.
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 153 // with above PROJECTION.
297 // with above PROJECTION.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailContentProvider.java 109 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
114 return getTableDelegate(uriData).query(uriData, projection, selectionBuilder.build(),
  /frameworks/ex/carousel/java/com/android/ex/carousel/
carousel.rs 220 static bool updateCamera; // force a recompute of projection and lookat matrices
445 // Load a projection matrix for the given parameters. This is equivalent to gluPerspective()
776 * Convert projection from normalized coordinates to pixel coordinates.
810 rs_matrix4x4 projection, model;
811 rsMatrixLoadOrtho(&projection, 0.0f, width, 0.0f, height, 0.0f, 1.0f);
812 rsgProgramVertexLoadProjectionMatrix(&projection);
815 updateCamera = true; // we messed with the projection matrix. Reload on next pass...
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
RotationVectorDemo.java 142 // set projection matrix
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryProvider.java 89 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherDataProvider.java 85 public synchronized Cursor query(Uri uri, String[] projection, String selection,

Completed in 3545 milliseconds

1 2 3 4 5 6 78 91011>>