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

/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/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/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/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/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 VectorType projection(const VectorType& p) const function in class:Eigen::ParametrizedLine
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
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
H A DTestContentProvider.java183 public Cursor query(Uri uri, String[] projection, String selection, argument
/external/robolectric/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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp57 float4x4 projection; member in struct:cbuf_t
413 cbd.projection = proj;
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp57 float4x4 projection; member in struct:cbuf_t
413 cbd.projection = proj;
/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/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeBrowserProvider.java323 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
341 cursor = queryBookmarkFromAPI(projection, selection, selectionArgs, sortOrder);
344 cursor = queryBookmarkFromAPI(projection, buildWhereClause(bookmarkId, selection),
348 cursor = querySearchTermFromAPI(projection, selection, selectionArgs, sortOrder);
351 cursor = querySearchTermFromAPI(projection, buildWhereClause(bookmarkId, selection),
355 cursor = queryBookmarkFromAPI(projection, buildHistoryWhereClause(selection),
359 cursor = queryBookmarkFromAPI(projection,
363 cursor = queryBookmarkFromAPI(projection, buildBookmarkWhereClause(selection),
367 cursor = queryBookmarkFromAPI(projection,
1015 String[] projection
1317 nativeQueryBookmarkFromAPI(long nativeChromeBrowserProvider, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
1333 nativeQuerySearchTermFromAPI(long nativeChromeBrowserProvider, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
[all...]
/external/chromium_org/chrome/browser/android/provider/
H A Dchrome_browser_provider.cc1259 jobjectArray projection,
1263 // Converts the projection to array of ColumnID and column name.
1264 // Used to store the projection column ID according their sequence.
1266 // Used to store the projection column names according their sequence.
1268 if (projection) {
1269 jsize len = env->GetArrayLength(projection);
1272 env->GetObjectArrayElement(projection, i)));
1401 jobjectArray projection,
1405 // Converts the projection to array of ColumnID and column name.
1406 // Used to store the projection colum
1256 QueryBookmarkFromAPI( JNIEnv* env, jobject obj, jobjectArray projection, jstring selections, jobjectArray selection_args, jstring sort_order) argument
1398 QuerySearchTermFromAPI( JNIEnv* env, jobject obj, jobjectArray projection, jstring selections, jobjectArray selection_args, jstring sort_order) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Drenderer.c86 struct matrix projection; member in struct:renderer
146 * Set the model-view-projection matrix used by vertex shaders.
156 /* projection only */
158 mvp = &renderer->projection;
1339 struct matrix *proj = &renderer->projection;
1384 struct matrix mvp = renderer->projection;
1399 struct matrix mvp = renderer->projection;
/external/mesa3d/src/gallium/state_trackers/vega/
H A Drenderer.c86 struct matrix projection; member in struct:renderer
146 * Set the model-view-projection matrix used by vertex shaders.
156 /* projection only */
158 mvp = &renderer->projection;
1339 struct matrix *proj = &renderer->projection;
1384 struct matrix mvp = renderer->projection;
1399 struct matrix mvp = renderer->projection;
/external/deqp/modules/glshared/
H A DglsTextureTestUtil.cpp355 static float computeProjectedTriLod (LodMode mode, const tcu::Vec3& u, const tcu::Vec3& projection, float wx, float wy, float width, float height) argument
358 float dudx = triDerivateX(u, projection, wx, width, wy/height);
359 float dudy = triDerivateY(u, projection, wy, height, wx/width);
365 static float computeProjectedTriLod (LodMode mode, const tcu::Vec3& u, const tcu::Vec3& v, const tcu::Vec3& projection, float wx, float wy, float width, float height) argument
368 float dudx = triDerivateX(u, projection, wx, width, wy/height);
369 float dvdx = triDerivateX(v, projection, wx, width, wy/height);
370 float dudy = triDerivateY(u, projection, wy, height, wx/width);
371 float dvdy = triDerivateY(v, projection, wy, height, wx/width);
377 static float computeProjectedTriLod (LodMode mode, const tcu::Vec3& u, const tcu::Vec3& v, const tcu::Vec3& w, const tcu::Vec3& projection, float wx, float wy, float width, float height) argument
380 float dudx = triDerivateX(u, projection, w
[all...]
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...

Completed in 553 milliseconds