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

1234567891011>>

/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/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/ash/wm/
H A Dcoordinate_conversion.cc11 #include "ui/gfx/point.h"
18 aura::Window* GetRootWindowAt(const gfx::Point& point) { argument
20 Shell::GetScreen()->GetDisplayNearestPoint(point);
/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.cc5 #include "ui/gfx/geometry/point.h"
18 Point::Point(DWORD point) : PointBase<Point, int, Vector2d>(0, 0){ argument
19 POINTS points = MAKEPOINTS(point);
24 Point::Point(const POINT& point) argument
25 : PointBase<Point, int, Vector2d>(point.x, point.y) {
28 Point& Point::operator=(const POINT& point) { argument
29 set_x(point.x);
30 set_y(point.y);
41 Point::Point(const CGPoint& point) argument
[all...]
/external/chromium_org/ui/wm/core/
H A Dcoordinate_conversion.cc8 #include "ui/gfx/point.h"
12 void ConvertPointToScreen(const aura::Window* window, gfx::Point* point) { argument
17 ConvertPointToScreen(window, point);
/external/openssl/crypto/ec/
H A Dec_check.c64 EC_POINT *point = NULL; local
98 if ((point = EC_POINT_new(group)) == NULL) goto err;
106 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx)) goto err;
107 if (!EC_POINT_is_at_infinity(group, point))
120 if (point)
121 EC_POINT_free(point);
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dpassword_generation_popup_view_tester_views.cc26 const gfx::Point& point) {
28 point,
25 SimulateMouseMovementAt( const gfx::Point& point) argument
/external/chromium_org/ppapi/tests/
H A Dtest_mouse_cursor.cc43 PP_Point point = { 0, 0 }; local
46 valid_image.pp_resource(), &point)));
55 valid_image.pp_resource(), &point)));
62 big_image.pp_resource(), &point)));
71 PP_Point point = { -1, 0 }; local
74 valid_image.pp_resource(), &point)));
76 point.x = 67;
77 point.y = 5;
80 valid_image.pp_resource(), &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/chromium_org/third_party/WebKit/public/web/
H A DWebActiveWheelFlingParameters.h40 WebPoint point; member in struct:blink::WebActiveWheelFlingParameters
/external/chromium_org/third_party/skia/experimental/Intersection/
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;
/external/chromium_org/ui/app_list/views/
H A Dapp_list_menu_views.cc31 const gfx::Point& point) {
34 gfx::Rect(point, gfx::Size()),
30 RunMenuAt(views::MenuButton* button, const gfx::Point& point) argument
/external/chromium_org/ui/gfx/
H A Dtransform_util_unittest.cc8 #include "ui/gfx/point.h"
142 Point3F point; local
144 point = Point3F(viewport.origin());
145 result.TransformPoint(&point);
146 EXPECT_EQ(Point3F(31.f, 20.f, 10.f), point) << "Transformed origin";
148 point = Point3F(viewport.top_right());
149 result.TransformPoint(&point);
150 EXPECT_EQ(Point3F(31.f, 1940.f, 10.f), point) << "Transformed top-right";
152 point = Point3F(viewport.bottom_left());
153 result.TransformPoint(&point);
[all...]
/external/chromium_org/ui/message_center/views/
H A Dmessage_view_context_menu_controller.cc25 const gfx::Point& point,
40 gfx::Rect(point, gfx::Size()),
23 ShowContextMenuForView( views::View* source, const gfx::Point& point, ui::MenuSourceType source_type) argument
/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...]
/external/skia/experimental/Intersection/
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;
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DViewfinderResultPointCallback.java30 public void foundPossibleResultPoint(ResultPoint point) { argument
31 viewfinderView.addPossibleResultPoint(point);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DWTauNafMultiplier.java19 protected ECPoint multiplyPositive(ECPoint point, BigInteger k) argument
21 if (!(point instanceof ECPoint.F2m))
27 ECPoint.F2m p = (ECPoint.F2m)point;
/external/chromium_org/ash/
H A Dscreen_util.cc29 gfx::Display ScreenUtil::FindDisplayContainingPoint(const gfx::Point& point) { argument
30 return GetDisplayManager()->FindDisplayContainingPoint(point);
58 gfx::Point point = rect.origin(); local
60 ConvertPointToScreen(window, &point);
61 return gfx::Rect(point, rect.size());
67 gfx::Point point = rect.origin(); local
69 ConvertPointFromScreen(window, &point);
70 return gfx::Rect(point, rect.size());
/external/chromium_org/content/common/input/
H A Dtouch_event_stream_validator.cc62 const WebTouchPoint* point = FindTouchPoint(event, previous_point.id); local
63 if (!point)
64 error_msg->append("Previously active touch point not in new event.\n");
69 const WebTouchPoint& point = event.touches[i]; local
71 FindTouchPoint(previous_event, point.id);
73 // The point should exist in the previous event if it is not a new point.
75 if (point.state != WebTouchPoint::StatePressed)
76 error_msg->append("Active touch point not found in previous event.\n");
78 if (point
[all...]
/external/chromium_org/crypto/
H A Dp224_unittest.cc16 // kBasePointExternal is the P224 base point in external representation.
27 // TestVector represents a test of scalar multiplication of the base point.
771 Point point; local
773 EXPECT_TRUE(point.SetFromString(base::StringPiece(
777 const std::string external = point.ToString();
785 Point point; local
788 p224::ScalarBaseMult(kNISTTestVectors[i].scalar, &point);
789 const std::string external = point.ToString();
/external/chromium_org/ppapi/c/
H A Dpp_rect.h35 struct PP_Point point; member in struct:PP_Rect
50 struct PP_FloatPoint point; member in struct:PP_FloatRect
69 * point, starting with 0 as the left-most coordinate.
70 * @param[in] y An int32_t value representing a vertical coordinate of a point,
80 ret.point.x = x;
81 ret.point.y = y;
92 * point, starting with 0 as the left-most coordinate.
93 * @param[in] y An float value representing a vertical coordinate of a point,
103 ret.point.x = x;
104 ret.point
[all...]
/external/chromium_org/ppapi/cpp/
H A Dtouch_point.h10 #include "ppapi/cpp/point.h"
19 TouchPoint(const PP_TouchPoint& point) : touch_point_(point) {} argument
22 /// in which the points were pressed. For example, the first point to be
24 /// reused when a touch point is released. For example, if two fingers are
/external/chromium_org/remoting/protocol/
H A Dmouse_input_filter_unittest.cc41 const Point& point = input_sequence[i]; local
42 input_stub->InjectMouseEvent(MouseMoveEvent(point.x, point.y));
45 const Point& point = input_sequence[i]; local
46 input_stub->InjectMouseEvent(MouseMoveEvent(point.y, point.x));

Completed in 4015 milliseconds

1234567891011>>