HomeSort by relevance Sort by last modified time
    Searched defs:projection (Results 1 - 25 of 75) sorted by null

1 2 3

  /development/samples/ApiDemos/src/com/example/android/apis/os/
SmsMessageReceiver.java 46 String[] projection; local
54 projection = new String[] { ContactsContract.PhoneLookup.DISPLAY_NAME };
57 Cursor cursor = context.getContentResolver().query(uri, projection, null, null, null);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlertDialogSamples.java 258 String[] projection = new String[] { field in class:AlertDialogSamples
264 projection, null, null, null);
  /development/samples/ContactManager/src/com/example/android/contactmanager/
ContactManager.java 105 String[] projection = new String[] { local
114 return managedQuery(uri, projection, selection, selectionArgs, sortOrder);
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
LegacyCACFLayerTreeHost.cpp 355 D3DXMATRIXA16 projection; local
356 D3DXMatrixOrthoOffCenterRH(&projection, x0, x1, y0, y1, -1.0f, 1.0f);
358 m_d3dDevice->SetTransform(D3DTS_PROJECTION, &projection);
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/
QueryService.java 32 [-e p OPTIONAL PROJECTION] [-e s OPTIONAL SELECTION] [-e s OPTIONAL ORDER BY] \
58 final String projection = intent.getStringExtra(EXTRA_PROJECTION); local
63 Log.i(TAG, "Projection: " + projection);
67 Cursor c = getContentResolver().query(uri, parseProjection(projection), selection, null,
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/bytecode/
TestProvider.class.data 
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtils_InsertHelperTest.java 88 final String[] projection = new String[] { local
100 Cursor cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
125 cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
157 cursor = mDatabase.query(TEST_TABLE_NAME, projection, "_id = " + id,
190 final String[] projection = new String[] { local
202 Cursor cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
221 cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
240 cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
267 cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Triangle.java 56 private float projection; field in class:Triangle
236 * obtains the projection of the vertices relative to the line origin.
237 * @return the projection of the triangle.
240 return this.projection;
244 * sets the projection of the vertices relative to the line origin.
245 * @param projection the projection of the triangle.
247 public void setProjection(float projection) {
248 this.projection = projection;
    [all...]
  /frameworks/base/core/java/android/content/
AsyncQueryHandler.java 51 public String[] projection; field in class:AsyncQueryHandler.WorkerArgs
79 cursor = resolver.query(args.uri, args.projection,
151 * @param projection A list of which columns to return. Passing null will
165 String[] projection, String selection, String[] selectionArgs,
174 args.projection = projection;
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQueryBuilder.java 125 * Sets the projection map for the query. The projection map maps
129 * could map "name" to "people.name". If a projection map is set
154 * non-numeric limits will raise an exception. If a projection map is specified, fields
166 * <li>Use a projection map</li>
447 String[] projection = computeProjection(projectionIn); local
469 mDistinct, mTables, projection, where.toString(),
613 String[] projection = new String[projectionIn.length]; local
621 projection[i] = column;
628 projection[i] = userColumn
642 String[] projection = new String[entrySet.size()]; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapCallLogComposer.java 60 /** 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/Browser/src/com/android/browser/
Bookmarks.java 175 final String[] projection = new String[] { Combined.URL }; local
176 return cr.query(Combined.CONTENT_URI, projection, QUERY_BOOKMARKS_WHERE, selArgs, null);
  /packages/apps/Camera/tests/src/com/android/camera/functional/
VideoCaptureIntentTest.java 59 String[] projection = new String[] {VideoColumns.DATA}; local
63 cursor = resolver.query(query, projection, null, null, null);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalAlbum.java 72 mProjection = LocalImage.PROJECTION;
79 mProjection = LocalVideo.PROJECTION;
162 String[] projection; local
166 projection = LocalImage.PROJECTION;
170 projection = LocalVideo.PROJECTION;
176 Cursor cursor = resolver.query(baseUri, projection, "_id BETWEEN ? AND ?",
214 String[] projection, int id) {
215 return resolver.query(uri, projection, "_id=?"
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
SaveCopyTask.java 112 private void querySource(String[] projection, ContentResolverQueryCallback callback) {
116 cursor = contentResolver.query(sourceUri, projection, null, null, null);
158 String[] projection = new String[] { local
163 querySource(projection, new ContentResolverQueryCallback() {
  /packages/apps/LegacyCamera/tests/src/com/android/camera/functional/
VideoCaptureIntentTest.java 66 String[] projection = new String[] {VideoColumns.DATA}; local
70 cursor = resolver.query(query, projection, null, null, null);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GlobalSearchSupportTest.java 253 String[] projection = new String[] { local
260 return mResolver.query(refershUri, projection, null, null, null);
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 83 * <h2>Projection syntax</h2>
84 * For every selected node, the projection will then extract actual data from this node and its
88 * with a child of the selected node. The implicit root of this projection pattern is the selected
92 * nodes match the projection pattern, their texts are appended as a result.</p>
94 * A projection can also fetch any node attribute by appending a <code>@attribute_name</code>
98 * <p>If a projection does not match any node/attribute, its associated value will be an empty
157 * <p>The number of columns of the resulting Cursor is equal to the size of the projection
159 * Cursor to be used with a {@link CursorAdapter}). The other columns' names are the projection
163 * @param projection A set of patterns that will be used to extract data from each selected
173 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs
362 String projection = projections[i + 1]; \/\/ +1 to skip the _ID column local
    [all...]
  /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/Camera/src/com/android/camera/
Thumbnail.java 210 String[] projection = new String[] {ImageColumns._ID, ImageColumns.ORIENTATION, local
218 cursor = resolver.query(query, projection, selection, null, order);
236 String[] projection = new String[] {VideoColumns._ID, MediaColumns.DATA, local
243 cursor = resolver.query(query, projection, selection, null, order);
  /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/Gallery/src/com/android/camera/
MovieViewControl.java 149 String[] projection = new String[] { local
155 mUri, projection, null, null, null);
  /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/Phone/src/com/android/phone/
BluetoothAtPhonebook.java 46 /** The projection to use when querying the call log database in response
54 /** The projection to use when querying the contacts database in response
111 String[] projection = {Calls.NUMBER}; local
112 Cursor cursor = mContext.getContentResolver().query(Calls.CONTENT_URI, projection,
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 55 * adb shell content query --uri content://settings/secure --projection name:value
93 + "usage: adb shell content query --uri <URI> [--projection <PROJECTION>]"
95 + " <PROJECTION> is a list of colon separated column names and is formatted:\n"
101 + " adb shell content query --uri content://settings/secure --projection name:value"
113 private static final String ARGUMENT_PROJECTION = "--projection";
221 String[] projection = null; local
232 projection = argumentValueRequired(argument).split("[\\s]*:[\\s]*");
241 return new QueryCommand(uri, projection, where, sort);
366 public QueryCommand(Uri uri, String[] projection, String where, String sortOrder)
    [all...]

Completed in 398 milliseconds

1 2 3