Searched refs:point (Results 101 - 125 of 2290) sorted by relevance

1234567891011>>

/external/valgrind/main/none/tests/ppc64/
H A Dtest_isa_2_06_part2.stdout.exp21 Test VSX floating point compare and basic arithmetic instructions
794 Test floating point convert [word | doubleword] unsigned, with round toward zero
946 Test floating point arithmetic instructions -- with a{d|s}p or m{d|s}p
1478 Test scalar floating point arithmetic instructions
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
H A DFontComplexTextMac.cpp47 FloatRect Font::selectionRectForComplexText(const TextRun& run, const FloatPoint& point, int h, argument
53 return shaper.selectionRect(point, h, from, to);
64 return FloatRect(floorf(point.x() + totalWidth - afterWidth), point.y(), roundf(point.x() + totalWidth - beforeWidth) - floorf(point.x() + totalWidth - afterWidth), h);
67 return FloatRect(floorf(point.x() + beforeWidth), point.y(), roundf(point.x() + afterWidth) - floorf(point
[all...]
/external/chromium_org/v8/benchmarks/spinning-balls/
H A Dv.js97 PointsList.prototype.add = function (point) {
98 if (this.head !== null) this.head.prev = point;
99 point.next = this.head;
100 this.head = point;
105 PointsList.prototype.remove = function (point) {
106 if (point.next !== null) {
107 point.next.prev = point.prev;
109 if (point.prev !== null) {
110 point
[all...]
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusTypes.h131 // (floating-point coordinates)
243 // (floating-point coordinates)
254 PointF(IN const PointF &point) argument
256 X = point.X;
257 Y = point.Y;
273 PointF operator+(IN const PointF& point) const
275 return PointF(X + point.X,
276 Y + point.Y);
279 PointF operator-(IN const PointF& point) const
281 return PointF(X - point
285 Equals(IN const PointF& point) argument
309 Point(IN const Point &point) argument
340 Equals(IN const Point& point) argument
476 Inflate(IN const PointF& point) argument
534 Offset(IN const PointF& point) argument
679 Inflate(IN const Point& point) argument
737 Offset(IN const Point& point) argument
[all...]
/external/openssl/crypto/x509v3/
H A Dv3_crld.c275 DIST_POINT *point = NULL; local
276 point = DIST_POINT_new();
277 if (!point)
283 ret = set_dist_point_name(&point->distpoint, ctx, cnf);
290 if (!set_reasons(&point->reasons, cnf->value))
295 point->CRLissuer =
297 if (!point->CRLissuer)
302 return point;
306 if (point)
307 DIST_POINT_free(point);
321 DIST_POINT *point; local
567 DIST_POINT *point; local
[all...]
/external/chromium_org/ash/wm/
H A Dcoordinate_conversion.h22 // Returns the RootWindow at |point| in the virtual screen coordinates.
24 // point.
25 ASH_EXPORT aura::Window* GetRootWindowAt(const gfx::Point& 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/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
/external/chromium_org/chrome/browser/ui/autofill/
H A Dpassword_generation_popup_view_tester.h9 #include "ui/gfx/geometry/point.h"
23 virtual void SimulateMouseMovementAt(const gfx::Point& point) = 0;
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dpassword_generation_popup_view_tester_views.h21 virtual void SimulateMouseMovementAt(const gfx::Point& point) OVERRIDE;
/external/chromium_org/content/browser/renderer_host/input/
H A Dtouch_emulator_client.h22 virtual void ShowContextMenuAtPoint(const gfx::Point& point) = 0;
/external/chromium_org/content/renderer/pepper/
H A Dgfx_conversion.h11 #include "ui/gfx/point.h"
30 return gfx::Rect(r.point.x, r.point.y, r.size.width, r.size.height);
34 return gfx::RectF(r.point.x, r.point.y, r.size.width, r.size.height);
/external/chromium_org/ppapi/c/private/
H A Dppp_pdf.h26 PP_Point point);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilter.h58 FloatPoint mapAbsolutePointToLocalPoint(const FloatPoint& point) const { return m_inverseTransform.mapPoint(point); }
70 virtual FloatPoint3D resolve3dPoint(const FloatPoint3D& point) const { return point; }
/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/gm/
H A Dinternal_links.cpp47 SkPoint point = SkPoint::Make(SkIntToScalar(100), SkIntToScalar(50)); local
48 drawLabeledRect(canvas, "Target A", point.x(), point.y());
49 SkAnnotateNamedDestination(canvas, point, name.get());
/external/chromium_org/ui/aura/test/
H A Devent_generator_delegate_aura.h28 // Returns the host for given point.
29 virtual WindowTreeHost* GetHostAt(const gfx::Point& point) const = 0;
44 gfx::Point* point) const OVERRIDE;
46 gfx::Point* point) const OVERRIDE;
48 gfx::Point* point) const OVERRIDE;
/external/chromium_org/ui/gfx/mac/
H A Dcoordinate_conversion.h22 GFX_EXPORT gfx::Rect ScreenRectFromNSRect(const NSRect& point);
/external/chromium_org/ui/views/
H A Dcontext_menu_controller.h32 // |point| is in screen coordinates.
34 const gfx::Point& point,
H A Drect_based_targeting_utils.h24 // Returns the square of the distance from |point| to the center of |rect|.
25 VIEWS_EXPORT int DistanceSquaredFromCenterToPoint(const gfx::Point& point,
/external/chromium_org/ui/views/controls/button/
H A Dmenu_button_listener.h22 virtual void OnMenuButtonClicked(View* source, const gfx::Point& point) = 0;
/external/chromium_org/ui/wm/core/
H A Dcoordinate_conversion.h20 // Converts the |point| from a given |window|'s coordinates into the screen
23 gfx::Point* point);
25 // Converts the |point| from the screen coordinates to a given |window|'s
/external/chromium_org/v8/src/
H A Ddtoa.h16 // Return a fixed number of digits after the decimal point.
30 // The result should be interpreted as buffer * 10^(point-length).
41 // 'requested_digits' digits after the decimal point. The produced digits
43 // Example: toFixed(0.001, 5) is allowed to return buffer="1", point=-2.
45 // toFixed(0.15, 2) thus returns buffer="2", point=0.
58 Vector<char> buffer, int* sign, int* length, int* point);
/external/skia/gm/
H A Dinternal_links.cpp47 SkPoint point = SkPoint::Make(SkIntToScalar(100), SkIntToScalar(50)); local
48 drawLabeledRect(canvas, "Target A", point.x(), point.y());
49 SkAnnotateNamedDestination(canvas, point, name.get());
/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...]

Completed in 2992 milliseconds

1234567891011>>