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

12 3 4 5 6 7 8 91011>>

  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreTest.java 29 private static final String[] PROJECTION = new String[] { MediaStore.MEDIA_SCANNER_VOLUME };
41 Cursor c = mContentResolver.query(mScannerUri, PROJECTION, null, null, null);
67 assertNull(mContentResolver.query(mScannerUri, PROJECTION,
76 Cursor c = mContentResolver.query(mScannerUri, PROJECTION,
85 assertNull(mContentResolver.query(mScannerUri, PROJECTION, null, null, null));
  /external/opencv/cvaux/src/
cvlevmartrif.cpp 96 /* This is for function with 3 projection matrices */
97 /* vector X consists of projection matrices and points3D */
99 /* each projection matrices has 3x4 coeffs */
147 /* fill derivate by projection matrix */
169 /* Computers project points using 3 projection matrices and points 3D */
171 /* vector X consists of projection matrices and points3D */
172 /* each projection matrices has 3x4 coeffs */
175 /* result of function is projection of N 3D points using 3 projection matrices */
176 /* projected points store as (projection by matrix P1),(projection by matrix P2),(projection by matrix P3) *
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
RawContactUtil.java 65 long rawContactId, String[] projection) {
67 Cursor cursor = resolver.query(uri, projection, null, null, null);
77 String[] projection) {
79 Cursor cursor = resolver.query(uri, projection, null, null, null);
93 String[] projection = new String[]{ local
97 projection);
  /external/chromium/chrome/browser/sync/sessions/
ordered_commit_set.h 30 typedef std::vector<size_t> Projection;
63 // Get the projection of commit ids onto the space of commit ids
66 // indices contained in the returned Projection can be used.
67 const Projection& GetCommitIdProjection(browser_sync::ModelSafeGroup group) {
85 typedef std::map<browser_sync::ModelSafeGroup, Projection> Projections;
106 // projection. We could store it in commit_ids_, but sometimes we want
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
UniformBinding.java 50 * The projection matrix. Converts View space to Clip/Projection space.
69 * The world view projection matrix. Converts Model space to Clip/Projection
76 * The view projection matrix. Converts World space to Clip/Projection
  /packages/apps/Contacts/src/com/android/contacts/
GroupMemberLoader.java 38 private static final String[] PROJECTION = new String[] {
54 private static final String[] PROJECTION = new String[] {
78 return new GroupMemberLoader(context, groupId, GroupEditorQuery.PROJECTION);
86 return new GroupMemberLoader(context, groupId, GroupDetailQuery.PROJECTION);
89 private GroupMemberLoader(Context context, long groupId, String[] projection) {
93 setProjection(projection);
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/database/
NoNullCursorAsyncQueryHandlerTest.java 37 private static final String[] PROJECTION = new String[]{"column1", "column2"};
45 public Cursor query(Uri uri, String[] projection, String selection,
76 handler.startQuery(1, null, URI, PROJECTION, null, null, null);
103 handler.startQuery(1, cookie, URI, PROJECTION, null, null, null);
130 handler.startQuery(1, cookie, URI, PROJECTION, null, null, null);
135 assertSame(PROJECTION, cursorHolder.obj.getColumnNames());
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
RawContactUtil.java 44 long rawContactId, String[] projection) {
47 Cursor cursor = resolver.query(uri, projection, null, null, null);
57 String[] projection) {
59 Cursor cursor = resolver.query(uri, projection, null, null, null);
73 String[] projection = new String[]{ local
77 projection);
  /frameworks/ex/common/java/com/android/common/content/
ProjectionMap.java 24 * A convenience wrapper for a projection map. Makes it easier to create and use projection maps.
73 * Returns a sorted array of all column names in the projection map.
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMapView.java 11 import com.google.android.maps.Projection;
22 * Shadow of {@code MapView} that simulates the internal state of a {@code MapView}. Supports {@code Projection}s,
38 private Projection projection; field in class:ShadowMapView
103 public com.google.android.maps.Projection getProjection() {
104 if (projection == null) {
105 projection = new Projection() {
127 return projection;
  /frameworks/base/core/tests/coretests/apks/version/src/com/android/frameworks/coretests/version_test/
NullProvider.java 15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
  /frameworks/base/core/tests/coretests/apks/version_nosys/src/com/android/frameworks/coretests/version_test/
NullProvider.java 15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadStorageProvider.java 74 private static String[] resolveRootProjection(String[] projection) {
75 return projection != null ? projection : DEFAULT_ROOT_PROJECTION;
78 private static String[] resolveDocumentProjection(String[] projection) {
79 return projection != null ? projection : DEFAULT_DOCUMENT_PROJECTION;
92 public Cursor queryRoots(String[] projection) throws FileNotFoundException {
93 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection));
157 public Cursor queryDocument(String docId, String[] projection) throws FileNotFoundException {
158 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection));
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaDocumentsProvider.java 181 private static String[] resolveRootProjection(String[] projection) {
182 return projection != null ? projection : DEFAULT_ROOT_PROJECTION;
185 private static String[] resolveDocumentProjection(String[] projection) {
186 return projection != null ? projection : DEFAULT_DOCUMENT_PROJECTION;
190 public Cursor queryRoots(String[] projection) throws FileNotFoundException {
191 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection));
199 public Cursor queryDocument(String docId, String[] projection) throws FileNotFoundException {
201 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection));
    [all...]
  /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...]
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
MeshNode.h 27 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
PerspectiveMeshNode.h 28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
PerspectiveProgram.cpp 32 void PerspectiveProgram::before(Matrix& model, Matrix& view, Matrix& projection) {
33 Program::before(model, view, projection);
TexturedMeshNode.cpp 21 void TexturedMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
39 void TexturedMeshNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
TexturedMeshNode.h 28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
TransformationNode.cpp 25 Matrix& projection) {
33 Matrix& projection) {
TransformationNode.h 27 Matrix& projection);
29 Matrix& projection);
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/flocking/
WaterMeshNode.h 28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/glowing/
BlurMeshNode.h 28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
  /packages/apps/Gallery2/src/com/android/photos/data/
AlbumSetLoader.java 17 public static final String[] PROJECTION = {
31 MatrixCursor c = new MatrixCursor(PROJECTION, count);

Completed in 5317 milliseconds

12 3 4 5 6 7 8 91011>>