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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p2.cpp 4 void point(int = 3, int = 4);
7 point(1,2);
8 point(1);
9 point();
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGGeometryElement.idl 34 boolean isPointInFill(SVGPoint point);
35 boolean isPointInStroke(SVGPoint point);
  /external/clang/test/FixIt/
no-typo.c 4 } Point;
6 point p1; // expected-error{{unknown type name 'point'}}
  /external/chromium_org/third_party/skia/experimental/Intersection/
Parameterization_Test.h 10 bool point_on_parameterized_curve(const Cubic& cubic, const _Point& point);
11 bool point_on_parameterized_line(const _Line& line, const _Point& point);
12 bool point_on_parameterized_curve(const Quadratic& quad, const _Point& point);
QuadraticParameterization_TestUtility.cpp 6 bool point_on_parameterized_curve(const Quadratic& quad, const _Point& point) {
8 double xx = q.x2() * point.x * point.x;
9 double xy = q.xy() * point.x * point.y;
10 double yy = q.y2() * point.y * point.y;
11 double x = q.x() * point.x;
12 double y = q.y() * point.y;
CubicParameterization_TestUtility.cpp 38 bool point_on_parameterized_curve(const Cubic& cubic, const _Point& point) {
41 double xxx = coeffs[xxx_coeff] * point.x * point.x * point.x;
42 double xxy = coeffs[xxy_coeff] * point.x * point.x * point.y;
43 double xyy = coeffs[xyy_coeff] * point.x * point.y * point.y
    [all...]
  /external/skia/experimental/Intersection/
Parameterization_Test.h 10 bool point_on_parameterized_curve(const Cubic& cubic, const _Point& point);
11 bool point_on_parameterized_line(const _Line& line, const _Point& point);
12 bool point_on_parameterized_curve(const Quadratic& quad, const _Point& point);
QuadraticParameterization_TestUtility.cpp 6 bool point_on_parameterized_curve(const Quadratic& quad, const _Point& point) {
8 double xx = q.x2() * point.x * point.x;
9 double xy = q.xy() * point.x * point.y;
10 double yy = q.y2() * point.y * point.y;
11 double x = q.x() * point.x;
12 double y = q.y() * point.y;
CubicParameterization_TestUtility.cpp 38 bool point_on_parameterized_curve(const Cubic& cubic, const _Point& point) {
41 double xxx = coeffs[xxx_coeff] * point.x * point.x * point.x;
42 double xxy = coeffs[xxy_coeff] * point.x * point.x * point.y;
43 double xyy = coeffs[xyy_coeff] * point.x * point.y * point.y
    [all...]
  /external/chromium_org/v8/test/cctest/
test-fixed-dtoa.cc 46 int point; local
48 CHECK(FastFixedDtoa(1.0, 1, buffer, &length, &point));
50 CHECK_EQ(1, point);
52 CHECK(FastFixedDtoa(1.0, 15, buffer, &length, &point));
54 CHECK_EQ(1, point);
56 CHECK(FastFixedDtoa(1.0, 0, buffer, &length, &point));
58 CHECK_EQ(1, point);
60 CHECK(FastFixedDtoa(0xFFFFFFFF, 5, buffer, &length, &point));
62 CHECK_EQ(10, point);
64 CHECK(FastFixedDtoa(4294967296.0, 5, buffer, &length, &point));
497 int point; local
    [all...]
test-bignum-dtoa.cc 63 int point; local
65 BignumDtoa(1.0, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point);
67 CHECK_EQ(1, point);
69 BignumDtoa(1.0, BIGNUM_DTOA_FIXED, 3, buffer, &length, &point);
70 CHECK_GE(3, length - point);
73 CHECK_EQ(1, point);
75 BignumDtoa(1.0, BIGNUM_DTOA_PRECISION, 3, buffer, &length, &point);
79 CHECK_EQ(1, point);
81 BignumDtoa(1.5, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point);
83 CHECK_EQ(1, point);
261 int point; local
279 int point; local
300 int point; local
    [all...]
test-dtoa.cc 63 int point; local
66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
68 CHECK_EQ(1, point);
70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
73 CHECK_EQ(1, point);
75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
78 CHECK_EQ(1, point);
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
82 CHECK_EQ(1, point);
84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point);
272 int point; local
292 int point; local
315 int point; local
    [all...]
  /frameworks/base/core/java/android/gesture/
OrientedBoundingBox.java 57 float[] point = new float[2]; local
58 point[0] = -width / 2;
59 point[1] = height / 2;
63 matrix.mapPoints(point);
64 path.moveTo(point[0], point[1]);
66 point[0] = -width / 2;
67 point[1] = -height / 2;
68 matrix.mapPoints(point);
69 path.lineTo(point[0], point[1])
    [all...]
  /external/chromium_org/ui/gfx/geometry/
point_conversions.cc 11 Point ToFlooredPoint(const PointF& point) {
12 int x = ToFlooredInt(point.x());
13 int y = ToFlooredInt(point.y());
14 return Point(x, y);
17 Point ToCeiledPoint(const PointF& point) {
18 int x = ToCeiledInt(point.x());
19 int y = ToCeiledInt(point.y());
20 return Point(x, y)
    [all...]
point_conversions.h 8 #include "ui/gfx/geometry/point.h"
13 // Returns a Point with each component from the input PointF floored.
14 GFX_EXPORT Point ToFlooredPoint(const PointF& point);
16 // Returns a Point with each component from the input PointF ceiled.
17 GFX_EXPORT Point ToCeiledPoint(const PointF& point);
19 // Returns a Point with each component from the input PointF rounded.
20 GFX_EXPORT Point ToRoundedPoint(const PointF& point);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMPoint.cpp 11 DOMPoint* DOMPoint::create(const DOMPointInit& point)
13 return new DOMPoint(point.x(), point.y(), point.z(), point.w());
  /external/libcxx/test/utilities/time/time.point/time.point.arithmetic/
Android.mk 17 test_makefile := external/libcxx/test/utilities/time/time.point/time.point.arithmetic/Android.mk
19 test_name := utilities/time/time.point/time.point.arithmetic/op_+=
23 test_name := utilities/time/time.point/time.point.arithmetic/op_-=
  /external/libcxx/test/utilities/time/time.point/time.point.comparisons/
Android.mk 17 test_makefile := external/libcxx/test/utilities/time/time.point/time.point.comparisons/Android.mk
19 test_name := utilities/time/time.point/time.point.comparisons/op_less
23 test_name := utilities/time/time.point/time.point.comparisons/op_equal
  /external/libcxx/test/utilities/time/time.point/time.point.special/
Android.mk 17 test_makefile := external/libcxx/test/utilities/time/time.point/time.point.special/Android.mk
19 test_name := utilities/time/time.point/time.point.special/min
23 test_name := utilities/time/time.point/time.point.special/max
  /external/libcxx/test/utilities/time/time.point/time.point.cons/
Android.mk 17 test_makefile := external/libcxx/test/utilities/time/time.point/time.point.cons/Android.mk
19 test_name := utilities/time/time.point/time.point.cons/default
23 test_name := utilities/time/time.point/time.point.cons/convert
27 test_name := utilities/time/time.point/time.point.cons/duration
  /external/libcxx/test/utilities/time/time.point/time.point.nonmember/
Android.mk 17 test_makefile := external/libcxx/test/utilities/time/time.point/time.point.nonmember/Android.mk
19 test_name := utilities/time/time.point/time.point.nonmember/op_+
23 test_name := utilities/time/time.point/time.point.nonmember/op_-duration
27 test_name := utilities/time/time.point/time.point.nonmember/op_-time_point
  /cts/tests/tests/gesture/src/android/gesture/cts/
GesturePointTest.java 37 GesturePoint point = new GesturePoint(expected_x, expected_y, expected_timestamp); local
38 assertEquals(expected_x, point.x);
39 assertEquals(expected_y, point.y);
40 assertEquals(expected_timestamp, point.timestamp);
  /external/libcxx/test/utilities/time/time.point/time.point.cast/
Android.mk 17 test_makefile := external/libcxx/test/utilities/time/time.point/time.point.cast/Android.mk
19 test_name := utilities/time/time.point/time.point.cast/time_point_cast
  /external/libcxx/test/utilities/time/time.point/time.point.observer/
Android.mk 17 test_makefile := external/libcxx/test/utilities/time/time.point/time.point.observer/Android.mk
19 test_name := utilities/time/time.point/time.point.observer/tested_elsewhere
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FloatPointTestHelpers.h 40 inline void PrintTo(const FloatPoint& point, ::std::ostream* os)
44 << std::setprecision(4) << point.x() << "f, "
45 << std::setprecision(4) << point.y() << "f)";

Completed in 1790 milliseconds

1 2 3 4 5 6 7 8 91011>>