Searched defs:point (Results 51 - 75 of 602) sorted by relevance

1234567891011>>

/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/chromium_org/ui/gfx/geometry/
H A Dbox_f.cc56 void BoxF::ExpandTo(const Point3F& point) { argument
57 ExpandTo(point, point);
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_2.cc24 void Menu2::RunMenuAt(const gfx::Point& point, Alignment alignment) { argument
25 wrapper_->RunMenuAt(point, alignment);
28 void Menu2::RunContextMenuAt(const gfx::Point& point) { argument
29 RunMenuAt(point, ALIGN_TOPLEFT);
/external/chromium_org/v8/test/cctest/
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/icu/icu4c/source/layout/
H A DAnchorTables.cpp65 LEPoint point; local
67 if (! fontInstance->getGlyphPoint(glyphID, SWAPW(anchorPoint), point)) {
71 fontInstance->transformFunits(x, y, point);
75 fontInstance->pixelsToUnits(point, anchor);
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_triemit.h127 static __inline void TAG(point)( CTX_ARG, function
/external/openssl/crypto/ec/
H A Dec_print.c60 const EC_POINT *point,
68 buf_len = EC_POINT_point2oct(group, point, form,
76 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
91 EC_POINT *point,
109 if (point == NULL)
118 ret = point;
122 if (point == NULL)
136 const EC_POINT *point,
144 buf_len = EC_POINT_point2oct(group, point, form,
152 if (!EC_POINT_point2oct(group, point, for
59 EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BIGNUM *ret, BN_CTX *ctx) argument
89 EC_POINT_bn2point(const EC_GROUP *group, const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx) argument
135 EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BN_CTX *ctx) argument
179 EC_POINT_hex2point(const EC_GROUP *group, const char *buf, EC_POINT *point, BN_CTX *ctx) argument
[all...]
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_SpecialButton.cpp58 FX_BOOL CPWL_CheckBox::OnLButtonUp(const CPDF_Point & point) argument
87 FX_BOOL CPWL_RadioButton::OnLButtonUp(const CPDF_Point & point) argument
/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/ceres-solver/examples/
H A Dsnavely_reprojection_error.h51 // focal length and 2 for radial distortion. The principal point is not modeled
59 const T* const point,
63 ceres::AngleAxisRotatePoint(camera, point, p);
83 // Compute final projected point position.
109 // principal point is not modeled (i.e. it is assumed be located at
113 // center point.
120 const T* const point,
130 QuaternionRotatePoint(camera_rotation, point, p);
146 // Compute final projected point position.
58 operator ()(const T* const camera, const T* const point, T* residuals) const argument
118 operator ()(const T* const camera_rotation, const T* const camera_translation_and_intrinsics, const T* const point, T* residuals) const argument
/external/chromium_org/ash/system/web_notification/
H A Dash_popup_alignment_delegate_unittest.cc49 Position GetPositionInDisplay(const gfx::Point& point) { argument
53 if (work_area.x() > point.x() || work_area.y() > point.y() ||
54 work_area.right() < point.x() || work_area.bottom() < point.y()) {
58 if (center_point.x() < point.x())
59 return (center_point.y() < point.y()) ? BOTTOM_RIGHT : TOP_RIGHT;
61 return (center_point.y() < point.y()) ? BOTTOM_LEFT : TOP_LEFT;
/external/chromium_org/ash/wm/panels/
H A Dpanel_frame_view.cc103 int PanelFrameView::NonClientHitTest(const gfx::Point& point) { argument
107 caption_button_container_, point);
/external/chromium_org/athena/main/
H A Dathena_frame_view.cc53 int AthenaFrameView::NonClientHitTest(const gfx::Point& point) { argument
54 if (!bounds().Contains(point))
56 int client_hit_test = frame_->client_view()->NonClientHitTest(point);
60 GetHTComponentForFrame(point, 0, NonClientBorderThickness(), 0, 0, false);
/external/chromium_org/cc/blink/
H A Dweb_layer_impl_fixed_bounds_unittest.cc33 const gfx::Point3F& point) {
34 gfx::Point3F result = point;
49 // An arbitrary point to check the scale and transforms.
150 // geometries. Simple case: identity transforms and zero anchor point.
163 // geometries. Complex case: complex transforms and non-zero anchor point.
173 // With non-zero anchor point, WebLayerImplFixedBounds will fall back to
32 TransformPoint(const gfx::Transform& transform, const gfx::Point3F& point) argument
/external/chromium_org/cc/test/
H A Dfake_content_layer_client.h23 gfx::Point point; member in struct:cc::FakeContentLayerClient::BitmapData
46 const gfx::Point& point,
50 data.point = point;
45 add_draw_bitmap(const SkBitmap& bitmap, const gfx::Point& point, const SkPaint& paint) argument
H A Dfake_picture_pile_impl.h37 void add_draw_bitmap(const SkBitmap& bitmap, const gfx::Point& point) { argument
38 client_.add_draw_bitmap(bitmap, point, default_paint_);
46 const gfx::Point& point,
48 client_.add_draw_bitmap(bitmap, point, paint);
45 add_draw_bitmap_with_paint(const SkBitmap& bitmap, const gfx::Point& point, const SkPaint& paint) argument
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dautofill_popup_base_view_browsertest.cc61 ui::GestureEvent CreateGestureEvent(ui::EventType type, gfx::Point point) { argument
62 return ui::GestureEvent(point.x(),
63 point.y(),
87 gfx::Point point = bounds.CenterPoint(); local
95 EXPECT_CALL(mock_delegate_, SetSelectionAtPoint(point)).Times(2);
102 point);
107 ui::GestureEvent tap_event = CreateGestureEvent(ui::ET_GESTURE_TAP, point);
118 gfx::Point point = bounds.CenterPoint(); local
/external/chromium_org/chrome/browser/ui/views/
H A Dmenu_test_base.cc77 const gfx::Point& point) {
76 OnMenuButtonClicked(views::View* source, const gfx::Point& point) argument
/external/chromium_org/chrome/browser/ui/views/message_center/
H A Dmessage_center_frame_view.cc44 int MessageCenterFrameView::NonClientHitTest(const gfx::Point& point) { argument
47 if (!frame_bounds.Contains(point))
50 return GetWidget()->client_view()->NonClientHitTest(point);
/external/chromium_org/chrome/browser/ui/views/profiles/
H A Davatar_menu_button.cc103 const gfx::Point& point) {
102 OnMenuButtonClicked(views::View* source, const gfx::Point& point) argument
/external/chromium_org/content/browser/renderer_host/input/
H A Dtouch_action_browsertest.cc121 // Generate touch events for a synthetic scroll from |point| for |distance|.
124 bool DoTouchScroll(const gfx::Point& point, const gfx::Vector2d& distance) { argument
133 params.anchor = point;
/external/chromium_org/content/browser/renderer_host/
H A Dui_events_helper.cc124 const blink::WebTouchPoint& point = touch.touches[i]; local
125 if (WebTouchPointStateToEventType(point.state) != type)
130 location = point.position;
132 location = point.screenPosition;
136 point.id,
138 point.radiusX,
139 point.radiusY,
140 point.rotationAngle,
141 point.force);
249 blink::WebTouchPoint* point local
[all...]
/external/chromium_org/content/renderer/
H A Dtext_input_client_observer.cc48 void TextInputClientObserver::OnStringAtPoint(gfx::Point point) { argument
52 webview(), point, baselinePoint);
63 void TextInputClientObserver::OnCharacterIndexForPoint(gfx::Point point) { argument
64 blink::WebPoint web_point(point);
/external/chromium_org/mojo/aura/
H A Dscreen_mojo.cc34 gfx::NativeWindow ScreenMojo::GetWindowAtScreenPoint(const gfx::Point& point) { argument
52 gfx::Display ScreenMojo::GetDisplayNearestPoint(const gfx::Point& point) const {

Completed in 4148 milliseconds

1234567891011>>