HomeSort by relevance Sort by last modified time
    Searched full:projection (Results 226 - 250 of 792) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/svox/pico/src/com/svox/pico/providers/
SettingsProvider.java 81 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
  /frameworks/base/core/java/android/content/
ContentProviderClient.java 112 public Cursor query(Uri url, String[] projection, String selection,
114 return query(url, projection, selection, selectionArgs, sortOrder, null);
118 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs,
128 return mContentProvider.query(mPackageName, url, projection, selection, selectionArgs,
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/packages/DocumentsUI/src/com/android/documentsui/
RecentsProvider.java 172 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
178 return db.query(TABLE_RECENT, projection, RecentColumns.TIMESTAMP + ">" + cutoff,
184 return db.query(TABLE_STATE, projection, StateColumns.AUTHORITY + "=? AND "
189 return db.query(TABLE_RESUME, projection, ResumeColumns.PACKAGE_NAME + "=?",
  /frameworks/rs/scriptc/
rs_graphics.rsh 126 * Load the projection matrix for a currently bound fixed function
129 * @param proj projection matrix
150 * Get the projection matrix for a currently bound fixed function
153 * @param proj matrix to store the current projection matrix into
  /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/Dialer/src/com/android/dialer/calllog/
DefaultVoicemailNotifier.java 243 private static final String[] PROJECTION = {
263 cursor = mContentResolver.query(Calls.CONTENT_URI_WITH_VOICEMAIL, PROJECTION,
311 private static final String[] PROJECTION = { PhoneLookup.DISPLAY_NAME };
326 PROJECTION, null, null, null);
  /packages/apps/HTMLViewer/src/com/android/htmlviewer/
FileContentProvider.java 80 public Cursor query(Uri uri, String[] projection, String selection,
  /packages/apps/LegacyCamera/src/com/android/camera/
Thumbnail.java 199 String[] projection = new String[] {ImageColumns._ID, ImageColumns.ORIENTATION, local
207 cursor = resolver.query(query, projection, selection, null, order);
225 String[] projection = new String[] {VideoColumns._ID, MediaColumns.DATA, local
232 cursor = resolver.query(query, projection, selection, null, order);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/tests/
CrashingIconProvider.java 66 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
  /prebuilts/sdk/renderscript/include/
rs_graphics.rsh 126 * Load the projection matrix for a currently bound fixed function
129 * @param proj projection matrix
150 * Get the projection matrix for a currently bound fixed function
153 * @param proj matrix to store the current projection matrix into
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 605 // indexes into projection
662 // indexes into projection
764 // indexes into projection
900 String[] projection = { columnName }; local
2112 String[] projection = new String[] { Instances.BEGIN }; local
2520 String[] projection = { Instances.BEGIN, Instances.START_MINUTE, Instances.END_MINUTE }; local
2699 String[] projection = { Instances.BEGIN, Instances.START_MINUTE }; local
2795 String[] projection = { Instances.BEGIN, Instances.START_MINUTE, Instances.EVENT_ID }; local
2966 String[] projection = { Instances.BEGIN, Instances.START_MINUTE }; local
3060 String[] projection = { Instances.BEGIN, Instances.EVENT_LOCATION }; local
3561 String[] projection = { Instances.BEGIN, Instances.START_MINUTE }; local
    [all...]
ContactsContract_ContactsTest.java 131 String[] projection = new String[] {
136 projection);
ContactsContract_DataUsageTest.java 141 String[] projection = new String[]{ContactsContract.Data.TIMES_USED}; local
142 String[] record = DataUtil.queryById(mResolver, dataId, projection);
ContactsContract_RawContactsTest.java 102 String[] projection = new String[]{ local
107 projection);
SearchRecentSuggestionsTest.java 196 private void waitForCursorCount(final Uri uri, final String[] projection,
203 cursor = mTestSRSProvider.query(uri, projection, null, null, null);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 189 DirtyQuery.PROJECTION,
384 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION,
520 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION,
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 1238 String[] projection = new String[] { local
1306 String[] projection = new String[] { local
1432 String[] projection = new String[] { local
1956 String[] projection = new String[] { local
    [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);
  /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
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactDetailFragment.java 325 ContactDetailQuery.PROJECTION,
332 ContactAddressQuery.PROJECTION,
648 // The query projection (columns to fetch from the provider)
650 final static String[] PROJECTION = {
655 // The query column numbers which map to each value in the projection
668 // The query projection (columns to fetch from the provider)
669 final static String[] PROJECTION = {
681 // The query column numbers which map to each value in the projection
  /external/chromium_org/chrome/browser/android/provider/
chrome_browser_provider.h 82 jobjectArray projection,
118 jobjectArray projection,
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_matrix.h 65 MATRIX_3D_NO_ROT, /**< orthogonal projection and others... */
66 MATRIX_PERSPECTIVE, /**< perspective projection matrix */
  /external/mesa3d/src/mesa/math/
m_matrix.h 65 MATRIX_3D_NO_ROT, /**< orthogonal projection and others... */
66 MATRIX_PERSPECTIVE, /**< perspective projection matrix */

Completed in 1627 milliseconds

1 2 3 4 5 6 7 8 91011>>