HomeSort by relevance Sort by last modified time
    Searched refs:point1 (Results 1 - 25 of 28) sorted by null

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutPointTest.java 27 LayoutPoint point1 = LayoutPoint.create(mCanvas, 1, 1); local
39 assertFalse(point1.equals(point2));
40 assertFalse(point1.equals(point3));
42 assertFalse(point1.equals(point2));
ControlPointTest.java 56 ControlPoint point1 = ControlPoint.create(mCanvas, 1, 1); local
68 assertFalse(point1.equals(point2));
69 assertFalse(point1.equals(point3));
71 assertFalse(point1.equals(point2));
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/
MathsUtils.java 225 * @param point1 the mCoordinates of the first point.
229 public static float distanceCalculationOnXYPlane(float[] point1, float[] point2) {
230 float yDifference = point2[Y] - point1[Y];
231 float xDifference = point2[X] - point1[X];
238 * @param point1 the mCoordinates of the first point.
242 public static float distanceCalculationInXYZSpace(float[] point1, float[] point2) {
243 float zDifference = point2[Z] - point1[Z];
244 float yDifference = point2[Y] - point1[Y];
245 float xDifference = point2[X] - point1[X];
  /external/skia/src/utils/win/
SkDWriteGeometrySink.cpp 120 { beziers->point1.x, beziers->point1.y },
128 fPath->cubicTo(beziers->point1.x, beziers->point1.y,
  /external/opencv/cvaux/src/
cvmorphcontours.cpp 553 CvPoint* point1; // array of first contour point local
570 point1 = (CvPoint* )malloc( Ni*sizeof(CvPoint) );
574 cvCvtSeqToArray( contour1, point1, CV_WHOLE_SEQ );
578 point1[Ni-1] = point1[0];
596 point_output.x = cvRound(point1[i].x + param*( point2[corr_point].x - point1[i].x ));
597 point_output.y = cvRound(point1[i].y + param*( point2[corr_point].y - point1[i].y ));
633 CvPoint* point1; // array of first contour poin local
    [all...]
cvepilines.cpp 76 CvPoint3D64d point1,
82 icvGetPieceLength3D(pointCorner,point1,&len1);
90 pointSym2->x = pointCorner.x + alpha*(point1.x - pointCorner.x);
91 pointSym2->y = pointCorner.y + alpha*(point1.y - pointCorner.y);
92 pointSym2->z = pointCorner.z + alpha*(point1.z - pointCorner.z);
210 CvPoint2D64d point1; local
222 point1.x = (1.0 - alpha) * quad1[0][0] + alpha * quad1[3][0];
223 point1.y = (1.0 - alpha) * quad1[0][1] + alpha * quad1[3][1];
235 icvComCoeffForLine( point1,
339 int icvComCoeffForLine( CvPoint2D64d point1,
2051 CvPoint2D64d point1,point2; local
    [all...]
  /external/vulkan-validation-layers/libs/glm/gtx/
intersect.hpp 101 genType const & point0, genType const & point1,
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/
Utils.java 73 public static String formatDistanceBetween(LatLng point1, LatLng point2) {
74 if (point1 == null || point2 == null) {
79 double distance = Math.round(SphericalUtil.computeDistanceBetween(point1, point2));
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/
Utils.java 73 public static String formatDistanceBetween(LatLng point1, LatLng point2) {
74 if (point1 == null || point2 == null) {
79 double distance = Math.round(SphericalUtil.computeDistanceBetween(point1, point2));
  /development/samples/browseable/XYZTouristAttractions/Shared/src/com.example.android.xyztouristattractions.common/
Utils.java 73 public static String formatDistanceBetween(LatLng point1, LatLng point2) {
74 if (point1 == null || point2 == null) {
79 double distance = Math.round(SphericalUtil.computeDistanceBetween(point1, point2));
  /external/opencv/cvaux/include/
cvaux.h 559 CvPoint3D64f point1,
563 CVAPI(void) icvGetPieceLength3D(CvPoint3D64f point1,CvPoint3D64f point2,double* dist);
586 CVAPI(float) icvDefinePointPosition(CvPoint2D32f point1,CvPoint2D32f point2,CvPoint2D32f point);
601 CVAPI(int) icvComCoeffForLine( CvPoint2D64f point1,
638 CVAPI(int) icvGetAngleLine( CvPoint2D64f startPoint, CvSize imageSize,CvPoint2D64f *point1,CvPoint2D64f *point2);
654 CvPoint2D32f point1,
660 CvPoint2D32f* point1,
675 CVAPI(void) icvGetPieceLength(CvPoint2D64f point1,CvPoint2D64f point2,double* dist);
713 CvPoint2D64f point1,CvPoint2D64f point2,
718 CVAPI(double) icvGetVect(CvPoint2D64f basePoint,CvPoint2D64f point1,CvPoint2D64f point2)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 167 public static float[] getVectorFromPoints(float[] point1, float[] point2) {
169 point2[0] - point1[0], point2[1] - point1[1]
174 public static float[] getUnitVectorFromPoints(float[] point1, float[] point2) {
176 point2[0] - point1[0], point2[1] - point1[1]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d2d1helper.h 80 D2D1FORCEINLINE D2D1_BEZIER_SEGMENT BezierSegment(const D2D1_POINT_2F &point1, const D2D1_POINT_2F &point2, const D2D1_POINT_2F &point3) {
81 D2D1_BEZIER_SEGMENT r = {point1, point2, point3};
107 D2D1FORCEINLINE D2D1_QUADRATIC_BEZIER_SEGMENT QuadraticBezierSegment(const D2D1_POINT_2F &point1, const D2D1_POINT_2F &point2) {
108 D2D1_QUADRATIC_BEZIER_SEGMENT r = {point1, point2};
d2d1.h 451 D2D1_POINT_2F point1; member in struct:D2D1_BEZIER_SEGMENT
523 D2D1_POINT_2F point1; member in struct:D2D1_QUADRATIC_BEZIER_SEGMENT
560 D2D1_POINT_2F point1; member in struct:D2D1_TRIANGLE
777 STDMETHOD_(void, DrawLine)(D2D1_POINT_2F point0, D2D1_POINT_2F point1, ID2D1Brush *brush, FLOAT strokeWidth = 1.0f, ID2D1StrokeStyle *strokeStyle = NULL) PURE;
    [all...]
d2d1_1.h 457 STDMETHOD(DrawLine)(D2D1_POINT_2F point0, D2D1_POINT_2F point1, ID2D1Brush *brush, FLOAT strokeWidth,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusbrush.h 144 LinearGradientBrush(const PointF& point1, const PointF& point2,
149 &point1, &point2,
154 LinearGradientBrush(const Point& point1, const Point& point2,
159 &point1, &point2,
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityGestureDispatchTest.java 582 private float distance(MotionEvent.PointerCoords point1, MotionEvent.PointerCoords point2) {
583 return (float) Math.hypot((double) (point1.x - point2.x), (double) (point1.y - point2.y));
  /external/pdfium/core/fxcrt/
fx_coordinates.h 161 CFX_VTemplate(const CFX_PTemplate<BaseType>& point1,
163 : CFX_PTemplate<BaseType>(point2.x - point1.x, point2.y - point1.y) {}
  /external/pdfium/core/fxge/win32/
cfx_psrenderer.cpp 616 CFX_PointF point1 = TransformedPath.GetPoint(p + 1); local
618 buf << point.x << " " << point.y << " " << point1.x << " " << point1.y
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 515 static private Target.Floaty distance(double[] point1, double[] point2, Target t) {
517 for (int i = 0; i < point1.length; i++) {
518 Target.Floaty diff = t.subtract(t.newFloaty(point1[i]), t.newFloaty(point2[i]));
526 static private Target.Floaty distance(float[] point1, float[] point2, Target t) {
528 for (int i = 0; i < point1.length; i++) {
529 Target.Floaty diff = t.subtract(t.new32(point1[i]), t.new32(point2[i]));
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java     [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 

Completed in 694 milliseconds

1 2