Searched refs:point (Results 1 - 25 of 2290) sorted by relevance

1234567891011>>

/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
H A Dp2.cpp4 void point(int = 3, int = 4);
7 point(1,2);
8 point(1);
9 point();
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGGeometryElement.idl34 boolean isPointInFill(SVGPoint point);
35 boolean isPointInStroke(SVGPoint point);
/external/clang/test/FixIt/
H A Dno-typo.c6 point p1; // expected-error{{unknown type name 'point'}}
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DParameterization_Test.h10 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);
H A DQuadraticParameterization_TestUtility.cpp6 bool point_on_parameterized_curve(const Quadratic& quad, const _Point& point) { argument
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;
H A DCubicParameterization_TestUtility.cpp38 bool point_on_parameterized_curve(const Cubic& cubic, const _Point& point) { argument
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
[all...]
/external/skia/experimental/Intersection/
H A DParameterization_Test.h10 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);
H A DQuadraticParameterization_TestUtility.cpp6 bool point_on_parameterized_curve(const Quadratic& quad, const _Point& point) { argument
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;
H A DCubicParameterization_TestUtility.cpp38 bool point_on_parameterized_curve(const Cubic& cubic, const _Point& point) { argument
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
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-fixed-dtoa.cc46 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...]
H A Dtest-bignum-dtoa.cc63 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...]
H A Dtest-dtoa.cc63 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...]
/external/chromium_org/ui/gfx/geometry/
H A Dpoint_conversions.cc11 Point ToFlooredPoint(const PointF& point) { argument
12 int x = ToFlooredInt(point.x());
13 int y = ToFlooredInt(point.y());
17 Point ToCeiledPoint(const PointF& point) { argument
18 int x = ToCeiledInt(point.x());
19 int y = ToCeiledInt(point.y());
23 Point ToRoundedPoint(const PointF& point) { argument
24 int x = ToRoundedInt(point.x());
25 int y = ToRoundedInt(point.y());
H A Dpoint_conversions.h8 #include "ui/gfx/geometry/point.h"
14 GFX_EXPORT Point ToFlooredPoint(const PointF& point);
17 GFX_EXPORT Point ToCeiledPoint(const PointF& point);
20 GFX_EXPORT Point ToRoundedPoint(const PointF& point);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMPoint.cpp11 DOMPoint* DOMPoint::create(const DOMPointInit& point) argument
13 return new DOMPoint(point.x(), point.y(), point.z(), point.w());
/external/libcxx/test/utilities/time/time.point/time.point.arithmetic/
H A DAndroid.mk17 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/
H A DAndroid.mk17 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/
H A DAndroid.mk17 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/
H A DAndroid.mk17 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/
H A DAndroid.mk17 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
/external/libcxx/test/utilities/time/time.point/time.point.cast/
H A DAndroid.mk17 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/
H A DAndroid.mk17 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/
H A DFloatPointTestHelpers.h40 inline void PrintTo(const FloatPoint& point, ::std::ostream* os) argument
44 << std::setprecision(4) << point.x() << "f, "
45 << std::setprecision(4) << point.y() << "f)";
/external/chromium_org/rlz/lib/
H A Dlib_values_unittest.cc13 rlz_lib::SetExpectedAssertion("GetAccessPointFromName: point is NULL");
17 rlz_lib::AccessPoint point; local
18 EXPECT_FALSE(rlz_lib::GetAccessPointFromName(NULL, &point));
19 EXPECT_EQ(rlz_lib::NO_ACCESS_POINT, point);
21 EXPECT_TRUE(rlz_lib::GetAccessPointFromName("", &point));
22 EXPECT_EQ(rlz_lib::NO_ACCESS_POINT, point);
24 EXPECT_FALSE(rlz_lib::GetAccessPointFromName("i1", &point));
25 EXPECT_EQ(rlz_lib::NO_ACCESS_POINT, point);
27 EXPECT_TRUE(rlz_lib::GetAccessPointFromName("I7", &point));
28 EXPECT_EQ(rlz_lib::IE_DEFAULT_SEARCH, point);
38 rlz_lib::AccessPoint point = static_cast<rlz_lib::AccessPoint>(ap); local
[all...]
/external/chromium_org/chrome/utility/cloud_print/
H A Dbitmap_image.cc28 const uint8* BitmapImage::GetPixel(const gfx::Point& point) const {
29 DCHECK_LT(point.x(), size_.width());
30 DCHECK_LT(point.y(), size_.height());
31 return data_.get() + (point.y() * size_.width() + point.x()) * channels();

Completed in 455 milliseconds

1234567891011>>