Searched refs:point (Results 26 - 50 of 2290) sorted by relevance

1234567891011>>

/external/chromium_org/ui/gfx/geometry/
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/freetype/src/autofit/
H A Dafhints.c198 AF_Point point; local
205 for ( point = points; point < limit; point++ )
208 point - points,
209 point->fx,
210 point->fy,
211 point->ox / 64.0,
212 point->oy / 64.0,
213 point
639 AF_Point point; local
941 AF_Point point = hints->points; local
987 AF_Point point, first, last; local
1013 AF_Point point, first, last; local
1066 AF_Point point; local
1311 AF_Point point; local
1438 AF_Point point; local
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-fast-dtoa.cc60 int point; local
65 buffer, &length, &point);
68 CHECK_EQ(-323, point);
72 buffer, &length, &point);
75 CHECK_EQ(309, point);
78 buffer, &length, &point);
81 CHECK_EQ(10, point);
84 buffer, &length, &point);
87 CHECK_EQ(299, point);
90 buffer, &length, &point);
130 int point; local
232 int point; local
261 int point; local
[all...]
/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/lldb/test/benchmarks/expression/
H A Dmain.cpp24 Point point; member in class:Data
27 point(0, 0)
36 ptr[i]->point.x = i;
37 ptr[i]->point.y = i+1;
44 // expr ptr[j]->point.x
45 // expr ptr[j]->point.y
47 printf("data[%d] = %d (%d, %d)\n", j, ptr[j]->id, ptr[j]->point.x, ptr[j]->point.y);
/external/lldb/test/functionalities/non-overlapping-index-variable-i/
H A Dmain.cpp24 Point point; member in class:Data
27 point(0, 0)
36 ptr[i]->point.x = i;
37 ptr[i]->point.y = i+1;
44 // expr ptr[i]->point.x
45 // expr ptr[i]->point.y
47 printf("data[%d] = %d (%d, %d)\n", i, ptr[i]->id, ptr[i]->point.x, ptr[i]->point.y);
/external/chromium_org/ppapi/api/
H A Dpp_rect.idl20 PP_Point point;
35 PP_FloatPoint point;
53 * point, starting with 0 as the left-most coordinate.
54 * @param[in] y An int32_t value representing a vertical coordinate of a point,
64 ret.point.x = x;
65 ret.point.y = y;
76 * point, starting with 0 as the left-most coordinate.
77 * @param[in] y An float value representing a vertical coordinate of a point,
87 ret.point.x = x;
88 ret.point
[all...]
/external/chromium_org/ui/base/cursor/
H A Dcursors_aura.h29 gfx::Point* point);
36 gfx::Point* point);
39 // The cursor hot point location is set in |point|.
41 GetCursorBitmap(const Cursor& cursor, SkBitmap* bitmap, gfx::Point* point);
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dnew_tab_button.h17 // Returns YES if the given point is over the button. |point| is in the
19 - (BOOL)pointIsOverButton:(NSPoint)point;
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_Button.cpp34 FX_BOOL CPWL_Button::OnLButtonDown(const CPDF_Point & point, FX_DWORD nFlag) argument
36 CPWL_Wnd::OnLButtonDown(point, nFlag);
44 FX_BOOL CPWL_Button::OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag) argument
46 CPWL_Wnd::OnLButtonUp(point, nFlag);
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafhints.c186 AF_Point point; local
193 for ( point = points; point < limit; point++ )
196 point - points,
197 point->fx,
198 point->fy,
199 point->ox / 64.0,
200 point->oy / 64.0,
201 point
673 AF_Point point; local
804 AF_Point point = hints->points; local
850 AF_Point point, first, last; local
876 AF_Point point, first, last; local
929 AF_Point point; local
1174 AF_Point point; local
1304 AF_Point point; local
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathOpsQuadParameterizationTest.cpp11 static bool point_on_parameterized_curve(const SkDQuad& quad, const SkDPoint& point) { argument
13 double xx = q.x2() * point.fX * point.fX;
14 double xy = q.xy() * point.fX * point.fY;
15 double yy = q.y2() * point.fY * point.fY;
16 double x = q.x() * point.fX;
17 double y = q.y() * point.fY;
/external/skia/tests/
H A DPathOpsQuadParameterizationTest.cpp11 static bool point_on_parameterized_curve(const SkDQuad& quad, const SkDPoint& point) { argument
13 double xx = q.x2() * point.fX * point.fX;
14 double xy = q.xy() * point.fX * point.fY;
15 double yy = q.y2() * point.fY * point.fY;
16 double x = q.x() * point.fX;
17 double y = q.y() * point.fY;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dresource.hpp42 typedef clover::point<size_t, 3> point; typedef in class:clover::resource
47 void copy(command_queue &q, const point &origin, const point &region,
48 resource &src_resource, const point &src_origin);
51 const point &origin, const point &region);
73 point offset;
98 sub_resource(clover::resource &r, point offset);
108 bool blocking, const resource::point
[all...]
H A Dgeometry.hpp34 class point { class in namespace:clover
36 point() : a() { function in class:clover::point
39 point(std::initializer_list<T> v) { function in class:clover::point
44 point(const T *v) { function in class:clover::point
56 point operator+(const point &p) const {
57 point q;
63 T operator()(const point &p) const {
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dresource.hpp42 typedef clover::point<size_t, 3> point; typedef in class:clover::resource
47 void copy(command_queue &q, const point &origin, const point &region,
48 resource &src_resource, const point &src_origin);
51 const point &origin, const point &region);
73 point offset;
98 sub_resource(clover::resource &r, point offset);
108 bool blocking, const resource::point
[all...]
H A Dgeometry.hpp34 class point { class in namespace:clover
36 point() : a() { function in class:clover::point
39 point(std::initializer_list<T> v) { function in class:clover::point
44 point(const T *v) { function in class:clover::point
56 point operator+(const point &p) const {
57 point q;
63 T operator()(const point &p) const {
/external/chromium_org/chrome/browser/ui/cocoa/panels/
H A Dpanel_utils_cocoa.h9 #include "ui/gfx/point.h"
25 // Converts a point from the platform-independent screen coordinates (with the
28 NSPoint ConvertPointToCocoaCoordinates(const gfx::Point& point);
30 // Converts a point from the Cocoa screen coordinates (with (0,0) in the
33 gfx::Point ConvertPointFromCocoaCoordinates(NSPoint point);
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DShadowRootRareData.h89 inline void ShadowRootRareData::didAddInsertionPoint(InsertionPoint* point) argument
91 ASSERT(point);
92 if (isHTMLShadowElement(*point))
94 else if (isHTMLContentElement(*point))
100 inline void ShadowRootRareData::didRemoveInsertionPoint(InsertionPoint* point) argument
102 ASSERT(point);
103 if (isHTMLShadowElement(*point))
105 else if (isHTMLContentElement(*point))
/external/chromium_org/third_party/mozilla/
H A DNSScreen+Utils.h43 + (NSScreen*)screenForPoint:(NSPoint)point;
/external/libcxx/test/utilities/time/time.point/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/time/time.point/Android.mk
19 test_name := utilities/time/time.point/default_duration
/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/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.cc17 bool DesktopRect::Contains(const DesktopVector& point) const {
18 return point.x() >= left() && point.x() < right() &&
19 point.y() >= top() && point.y() < bottom();
/external/chromium_org/ui/events/test/
H A Dcocoa_test_event_utils.h21 NSEvent* MouseEventAtPoint(NSPoint point, NSEventType type,
23 NSEvent* LeftMouseDownAtPoint(NSPoint point);
24 NSEvent* LeftMouseDownAtPointInWindow(NSPoint point, NSWindow* window);
25 NSEvent* RightMouseDownAtPoint(NSPoint point);
26 NSEvent* RightMouseDownAtPointInWindow(NSPoint point, NSWindow* window);
/external/openssl/crypto/ec/
H A Dec_oct.c71 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, argument
80 if (group->meth != point->meth)
89 group, point, x, y_bit, ctx);
98 group, point, x, y_bit, ctx);
101 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
105 int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, argument
114 if (group->meth != point->meth)
123 group, point, x, y_bit, ctx);
126 group, point, x, y_bit, ctx);
128 return group->meth->point_set_compressed_coordinates(group, point,
132 EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
167 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]

Completed in 1376 milliseconds

1234567891011>>