Searched defs:projection (Results 1 - 25 of 63) sorted by relevance

123

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
H A DMmsFileProvider.java41 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCursorLoader.java14 private String[] projection; field in class:ShadowCursorLoader
23 public void __constructor__(Context context, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
26 this.projection = projection;
44 return projection;
48 public void setProjection(String[] projection) { argument
49 this.projection = projection;
H A DShadowMapView.java38 private Projection projection; field in class:ShadowMapView
104 if (projection == null) {
105 projection = new Projection() {
127 return projection;
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/database/
H A DSimpleTestCursor.java10 public String[] projection; field in class:SimpleTestCursor
20 public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
22 this.projection = projection;
H A DTestCursor.java208 * Mimics ContentResolver.query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder)
210 public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/
H A DApiProvider.java94 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
H A DTelephonyTestProvider.java50 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
H A DScriptProvider.java92 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DFieldVector.java225 /** Find the orthogonal projection of this vector onto another vector.
227 * @return projection of the instance onto v
230 FieldVector<T> projection(FieldVector<T> v) method in interface:FieldVector
233 /** Find the orthogonal projection of this vector onto another vector.
235 * @return projection of the instance onto v
238 FieldVector<T> projection(T[] v) method in interface:FieldVector
H A DArrayFieldVector.java592 public FieldVector<T> projection(FieldVector<T> v) { method in class:ArrayFieldVector
597 public FieldVector<T> projection(T[] v) { method in class:ArrayFieldVector
598 return projection(new ArrayFieldVector<T>(v, false));
601 /** Find the orthogonal projection of this vector onto another vector.
603 * @return projection of the instance onto v
606 public ArrayFieldVector<T> projection(ArrayFieldVector<T> v) { method in class:ArrayFieldVector
H A DSparseFieldVector.java449 public FieldVector<T> projection(FieldVector<T> v) method in class:SparseFieldVector
456 public FieldVector<T> projection(T[] v) throws IllegalArgumentException { method in class:SparseFieldVector
458 return projection(new SparseFieldVector<T>(field,v));
H A DArrayRealVector.java918 public RealVector projection(RealVector v) { method in class:ArrayRealVector
924 public RealVector projection(double[] v) { method in class:ArrayRealVector
925 return projection(new ArrayRealVector(v, false));
928 /** Find the orthogonal projection of this vector onto another vector.
930 * @return projection of the instance onto v
933 public ArrayRealVector projection(ArrayRealVector v) { method in class:ArrayRealVector
H A DOpenMapRealVector.java628 public RealVector projection(RealVector v) throws IllegalArgumentException { method in class:OpenMapRealVector
635 public OpenMapRealVector projection(double[] v) throws IllegalArgumentException { method in class:OpenMapRealVector
637 return (OpenMapRealVector) projection(new OpenMapRealVector(v));
/external/eigen/Eigen/src/Geometry/
H A DParametrizedLine.h79 /** \returns the squared distance of a point \a p to its projection onto the line \c *this.
87 /** \returns the distance of a point \a p to its projection onto the line \c *this.
92 /** \returns the projection of a point \a p onto the line \c *this. */
93 EIGEN_DEVICE_FUNC VectorType projection(const VectorType& p) const function in class:Eigen::ParametrizedLine
H A DHyperplane.h150 /** \returns the projection of a point \a p onto the plane \c *this.
152 EIGEN_DEVICE_FUNC inline VectorType projection(const VectorType& p) const { return p - signedDistance(p) * normal(); } function in class:Eigen::Hyperplane
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
H A DEABProvider.java264 protected Cursor queryInternal(SQLiteDatabase db, Uri uri, String[] projection, argument
301 return getContext().getContentResolver().query(Contacts.CONTENT_URI, projection,
321 return qb.query(db, projection, selection, selectionArgs, groupBy, having, sortOrder);
413 String[] projection = new String[] {
429 projection, whereClause, selectionArgs, null);
486 String[] projection = new String[] {
493 projection, selection, selectionArgs, null);
H A DDatabaseContentProvider.java313 * @param projection
319 protected abstract Cursor queryInternal(final SQLiteDatabase db, Uri uri, String[] projection, argument
323 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
332 return queryInternal(db, uri, projection, selection, selectionArgs, sortOrder);
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/controller/
H A DContentProviderControllerTest.java132 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/interpreter/
H A DInterpreterProvider.java95 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DContentResolverTest.java157 String[] projection = {};
165 Cursor cursor = shadowContentResolver.query(uri21, projection, selection, selectionArgs, sortOrder);
168 assertThat(testCursor.projection, equalTo(projection));
325 @Override public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
357 public String[] projection; field in class:ContentResolverTest.QueryParamTrackingTestCursor
363 public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
365 this.projection = projection;
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/fakes/
H A DBaseCursor.java221 * Mimics ContentResolver.query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder)
223 public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
H A DRoboCursor.java14 public String[] projection; field in class:RoboCursor
25 public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
27 this.projection = projection;
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowContentProviderClient.java51 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs, argument
53 return provider.query(url, projection, selection, selectionArgs, sortOrder);
57 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs, argument
59 return provider.query(url, projection, selection, selectionArgs, sortOrder, cancellationSignal);
/external/tensorflow/tensorflow/contrib/image/kernels/
H A Dimage_ops.h60 float projection = transform[6] * output_x + transform[7] * output_y + 1.f; local
63 projection;
66 projection;
/external/v8/src/compiler/
H A Dmachine-graph-verifier.cc42 MachineRepresentation GetProjectionType(Node const* projection) { argument
43 size_t index = ProjectionIndexOf(projection->op());
44 Node* input = projection->InputAt(0);

Completed in 550 milliseconds

123