Searched refs:projection (Results 1 - 25 of 27) sorted by relevance

12

/external/robolectric/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;
H A DShadowContentResolver.java118 public final Cursor query(Uri uri, String[] projection, String selection, argument
122 return provider.query(uri, projection, selection, selectionArgs, sortOrder);
129 returnCursor.setQuery(uri, projection, selection, selectionArgs,
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCursorLoaderTest.java18 String[] projection = new String[] { "_id", "TestColumn" };
24 projection,
30 assertThat(cursorLoader.getProjection(), equalTo(projection));
39 String[] projection = new String[] { "_id", "TestColumn" };
45 cursorLoader.setProjection(projection);
51 assertThat(cursorLoader.getProjection(), equalTo(projection));
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/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/eigen/test/eigen2/
H A Deigen2_parametrizedline.cpp41 VERIFY_IS_APPROX( (l0.projection(p1)-p1).norm(), l0.distance(p1) );
42 VERIFY_IS_MUCH_SMALLER_THAN( l0.distance(l0.projection(p1)), RealScalar(1) );
H A Deigen2_hyperplane.cpp46 VERIFY_IS_MUCH_SMALLER_THAN( pl1.signedDistance(pl1.projection(p0)), Scalar(1) );
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DTriangle.java56 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) { argument
248 this.projection = projection;
[all...]
/external/svox/pico/src/com/svox/pico/providers/
H A DSettingsProvider.java81 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/external/eigen/test/
H A Dgeo_parametrizedline.cpp42 VERIFY_IS_APPROX( (l0.projection(p1)-p1).norm(), l0.distance(p1) );
43 VERIFY_IS_MUCH_SMALLER_THAN( l0.distance(l0.projection(p1)), RealScalar(1) );
H A Dgeo_hyperplane.cpp47 VERIFY_IS_MUCH_SMALLER_THAN( pl1.signedDistance(pl1.projection(p0)), Scalar(1) );
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DLegacyCACFLayerTreeHost.cpp355 D3DXMATRIXA16 projection; local
356 D3DXMatrixOrthoOffCenterRH(&projection, x0, x1, y0, y1, -1.0f, 1.0f);
358 m_d3dDevice->SetTransform(D3DTS_PROJECTION, &projection);
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DParametrizedLine.h68 /** \returns the squared distance of a point \a p to its projection onto the line \c *this.
76 /** \returns the distance of a point \a p to its projection onto the line \c *this.
81 /** \returns the projection of a point \a p onto the line \c *this. */
82 VectorType projection(const VectorType& p) const function in class:Eigen::ParametrizedLine
H A DHyperplane.h129 /** \returns the projection of a point \a p onto the plane \c *this.
131 inline VectorType projection(const VectorType& p) const { return p - signedDistance(p) * normal(); } function in class:Eigen::Hyperplane
/external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/database/
H A DSimpleTestCursorTest.java39 contentResolver.query(uri, new String[]{"projection"}, "selection", new String[]{"selection"}, "sortOrder");
41 assertThat(cursor.projection[0], equalTo("projection"));
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DUVCoordinatesGenerator.java75 // 2D texture mapping (projection)
88 * @param projection
89 * the projection type for 2D textures
98 public static VertexBuffer generateUVCoordinates(int texco, int projection, int textureDimension, int[] coordinatesSwappingIndexes, List<Geometry> geometries) { argument
148 switch (projection) {
164 throw new IllegalStateException("Unknown projection type: " + projection);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eigen/Eigen/src/Geometry/
H A DHyperplane.h140 /** \returns the projection of a point \a p onto the plane \c *this.
142 inline VectorType projection(const VectorType& p) const { return p - signedDistance(p) * normal(); } function in class:Eigen::Hyperplane
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 VectorType projection(const VectorType& p) const function in class:Eigen::ParametrizedLine
/external/ceres-solver/docs/
H A Dchanges.tex44 II. This allows the user to use variable projection on separable and
82 \item Fixed the camera projection model in Ceres' implementation of
H A Dbundleadjustment.tex6 Given a set of measured image feature locations and correspondences, the goal of bundle adjustment is to find 3D point positions and camera parameters that minimize the reprojection error. This optimization problem is usually formulated as a non-linear least squares problem, where the error is the squared $L_2$ norm of the difference between the observed feature location and the projection of the corresponding 3D point on the image plane of the camera. Ceres has extensive support for solving bundle adjustment problems.
H A Dfaq.tex28 While it is often the case that problems have a natural blocking of parameters into parameter blocks, it is not always clear what a good residual block structure is. One rule of thumb for non-linear least squares problems since they often come from data fitting problems is to create one residual block per observation. So if you are solving a Structure from Motion problem, one 2 dimensional residual block per 2d image projection is a good idea.

Completed in 687 milliseconds

12