Searched refs:point (Results 51 - 75 of 537) sorted by relevance

1234567891011>>

/external/skia/src/core/
H A DSkConcaveToTriangles.cpp93 // point() provides the top of the Trapezoid, whereas the bottom, and the left
95 // their tail point; the head is the successive point modulo the number of
119 // depending on whether the trapezoid or point is to the left, on, or to the
145 // Determine whether the given point lies within any active trapezoid, and
173 const SkPoint &point() const { return fPoint; } function in class:Vertex
174 void setPoint(const SkPoint &point) { fPoint = point; } argument
220 // depending on whether the point is to the left, on, or to the right of the
239 SkPoint vPrev = prev()->point()
[all...]
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DFontCairo.cpp46 static void prepareContextForGlyphDrawing(cairo_t* context, const SimpleFontData* font, const FloatPoint& point) argument
51 cairo_matrix_t mat = {1, 0, syntheticObliqueSkew, 1, point.x(), point.y()};
54 cairo_translate(context, point.x(), point.y());
68 static void drawGlyphsShadow(GraphicsContext* graphicsContext, const FloatPoint& point, const SimpleFontData* font, GlyphBufferGlyph* glyphs, int numGlyphs) argument
82 prepareContextForGlyphDrawing(context, font, point);
90 FloatRect fontExtentsRect(point.x(), point.y() - extents.height, extents.width, extents.height);
93 prepareContextForGlyphDrawing(shadowContext, font, point);
[all...]
H A DPathCairo.cpp124 void Path::addQuadCurveTo(const FloatPoint& controlPoint, const FloatPoint& point) argument
130 double x2 = point.x();
131 double y2 = point.y();
209 // add infinite far away point
297 bool Path::contains(const FloatPoint& point, WindRule rule) const argument
299 if (!isfinite(point.x()) || !isfinite(point.y()))
304 bool contains = cairo_in_fill(cr, point.x(), point.y());
309 bool Path::strokeContains(StrokeStyleApplier* applier, const FloatPoint& point) cons
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DFontChromiumWin.cpp76 // may point to a temporary one.
98 const FloatPoint& point)
101 , m_point(point)
197 // drawing path we can use floating-point positioning, even though we have
219 const FloatPoint& point)
220 : TransparencyAwareFontPainter(context, point)
324 const FloatPoint& point)
325 : TransparencyAwareFontPainter(context, point)
382 const FloatPoint& point) {
385 TransparencyAwareGlyphPainter painter(graphicsContext, font, glyphBuffer, from, numGlyphs, point);
97 TransparencyAwareFontPainter(GraphicsContext* context, const FloatPoint& point) argument
214 TransparencyAwareGlyphPainter( GraphicsContext* context, const SimpleFontData* font, const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point) argument
319 TransparencyAwareUniscribePainter( GraphicsContext* context, const Font* font, const TextRun& run, int from, int to, const FloatPoint& point) argument
377 drawGlyphsWin(GraphicsContext* graphicsContext, const SimpleFontData* font, const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point) argument
461 selectionRectForComplexText(const TextRun& run, const FloatPoint& point, int h, int from, int to) const argument
480 drawComplexText(GraphicsContext* graphicsContext, const TextRun& run, const FloatPoint& point, int from, int to) const argument
[all...]
H A DFontLinux.cpp82 const FloatPoint& point) const {
86 SkScalar x = SkFloatToScalar(point.x());
87 SkScalar y = SkFloatToScalar(point.y());
169 // Harfbuzz uses 26.6 fixed point values for pixel offsets. However, we don't
184 const FloatPoint& point, int from, int to) const
209 ComplexTextController controller(run, point.x(), this);
218 controller.reset(point.x() + controller.widthOfFullRun());
228 canvas->drawPosTextH(controller.glyphs(), controller.length() << 1, controller.xPositions(), point.y(), fillPaint);
234 canvas->drawPosTextH(controller.glyphs(), controller.length() << 1, controller.xPositions(), point.y(), strokePaint);
239 void Font::drawEmphasisMarksForComplexText(GraphicsContext* /* context */, const TextRun& /* run */, const AtomicString& /* mark */, const FloatPoint& /* point */, in
183 drawComplexText(GraphicsContext* gc, const TextRun& run, const FloatPoint& point, int from, int to) const argument
326 selectionRectForComplexText(const TextRun& run, const FloatPoint& point, int height, int from, int to) const argument
[all...]
/external/chromium/chrome/browser/tab_contents/
H A Drender_view_context_menu_gtk.cc43 void RenderViewContextMenuGtk::Popup(const gfx::Point& point) { argument
44 menu_gtk_->PopupAsContext(point, triggering_event_time_);
H A Drender_view_context_menu_gtk.h12 #include "ui/gfx/point.h"
26 void Popup(const gfx::Point& point);
/external/chromium/chrome/browser/ui/views/frame/
H A Dpopup_non_client_frame_view.cc7 #include "ui/gfx/point.h"
32 int PopupNonClientFrameView::NonClientHitTest(const gfx::Point& point) { argument
33 return bounds().Contains(point) ? HTCLIENT : HTNOWHERE;
/external/icu4c/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/webkit/Source/WebCore/platform/graphics/haiku/
H A DFontHaiku.cpp74 const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point) const
85 float offset = point.x();
90 view->DrawString(out, sizeof(out), BPoint(offset, point.y()));
95 void Font::drawComplexText(GraphicsContext* ctx, const TextRun& run, const FloatPoint& point, argument
101 void Font::drawEmphasisMarksForComplexText(GraphicsContext* /* context */, const TextRun& /* run */, const AtomicString& /* mark */, const FloatPoint& /* point */, int /* from */, int /* to */) const
H A DPathHaiku.cpp70 // FIXME: implement safe way to return current point of subpath.
76 bool Path::contains(const FloatPoint& point, WindRule rule) const argument
78 return m_path->Contains(point);
91 void Path::moveTo(const FloatPoint& point) argument
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGMarkerData.h83 void updateOutslope(const FloatPoint& point) argument
86 m_outslopePoints[1] = point;
117 void updateInslope(const FloatPoint& point) argument
120 m_inslopePoints[1] = point;
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebContextMenuProxyWin.cpp85 POINT point = POINT(origin); local
86 if (!::ClientToScreen(m_window, &point))
90 int selectedCommand = ::TrackPopupMenuEx(m_menu, flags, point.x, point.y, m_window, 0);
/external/chromium/chrome/browser/ui/cocoa/
H A Durl_drop_target.h58 // at the given point (in that view's coordinates).
59 - (void)dropURLs:(NSArray*)urls inView:(NSView*)view at:(NSPoint)point;
61 // The given text was dropped in the given view at the given point (in that
63 - (void)dropText:(NSString*)text inView:(NSView*)view at:(NSPoint)point;
65 // Dragging is in progress over the owner view (at the given point, in view
68 - (void)indicateDropURLsInView:(NSView*)view at:(NSPoint)point;
/external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
H A Dnon-kerned-drawing.cpp44 void drawTextWithSpacing(GraphicsContext* graphicsContext, const SimpleFontData* font, const wxColour& color, const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point) argument
71 CGContextSetTextPosition(cgContext, point.x(), point.y());
/external/webkit/Source/WebCore/svg/
H A DSVGPathByteStreamBuilder.h79 void writeFloatPoint(const FloatPoint& point) argument
81 writeFloat(point.x());
82 writeFloat(point.y());
H A DSVGPointList.cpp41 const FloatPoint& point = at(i); local
42 builder.append(makeString(String::number(point.x()), ' ', String::number(point.y())));
/external/openssl/crypto/ec/
H A Decp_smpl.c347 int ec_GFp_simple_point_init(EC_POINT *point) argument
349 BN_init(&point->X);
350 BN_init(&point->Y);
351 BN_init(&point->Z);
352 point->Z_is_one = 0;
358 void ec_GFp_simple_point_finish(EC_POINT *point) argument
360 BN_free(&point->X);
361 BN_free(&point->Y);
362 BN_free(&point->Z);
366 void ec_GFp_simple_point_clear_finish(EC_POINT *point) argument
386 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
394 ec_GFp_simple_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
454 ec_GFp_simple_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
507 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
521 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
637 ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
766 ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
892 ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
1283 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1293 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
1299 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1501 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
[all...]
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSImageExtras.m63 NSPoint point = [self isFlipped] ? NSMakePoint(0, [self size].height) : NSZeroPoint;
69 [self dissolveToPoint:point fraction: delta];
73 [dissolvedImage compositeToPoint:point operation:NSCompositeCopy];
/external/chromium/chrome/browser/automation/
H A Dtesting_automation_provider_gtk.cc49 gfx::Point point = gtk_util::GetWidgetScreenPosition(widget); local
50 x = point.x();
51 y = point.y();
/external/chromium/chrome/browser/ui/views/bookmarks/
H A Dbookmark_context_menu.cc39 void BookmarkContextMenu::RunMenuAt(const gfx::Point& point) { argument
47 menu_->RunMenuAt(parent_window_, NULL, gfx::Rect(point.x(), point.y(), 0, 0),
/external/webkit/Source/WebCore/html/
H A DTimeRanges.h77 inline bool isPointInRange(float point) const
79 return m_start <= point && point < m_end;
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_edit_view_win.h279 void OnContextMenu(HWND window, const CPoint& point);
287 void OnLButtonDblClk(UINT keys, const CPoint& point);
288 void OnLButtonDown(UINT keys, const CPoint& point);
289 void OnLButtonUp(UINT keys, const CPoint& point);
290 void OnMButtonDblClk(UINT keys, const CPoint& point);
291 void OnMButtonDown(UINT keys, const CPoint& point);
292 void OnMButtonUp(UINT keys, const CPoint& point);
294 void OnMouseMove(UINT keys, const CPoint& point);
295 BOOL OnMouseWheel(UINT flags, short delta, CPoint point);
298 void OnRButtonDblClk(UINT keys, const CPoint& point);
[all...]
/external/chromium/chrome/browser/ui/touch/tabs/
H A Dtouch_tab_strip.cc52 bool TouchTabStrip::IsPositionInWindowCaption(const gfx::Point& point) { argument
200 void TouchTabStrip::BeginScroll(const gfx::Point& point ) {
201 initial_mouse_x_ = point.x();
203 initial_tab_ = static_cast<TouchTab*>(GetTabAtLocal(point));
206 void TouchTabStrip::ContinueScroll(const gfx::Point& point) { argument
207 int delta_x = point.x() - initial_mouse_x_;
216 void TouchTabStrip::EndScroll(const gfx::Point& point) { argument
217 int delta_x = point.x() - initial_mouse_x_;
225 TouchTab* tab = static_cast<TouchTab*>(GetTabAtLocal(point));
H A Dtouch_tab_strip.h30 virtual bool IsPositionInWindowCaption(const gfx::Point& point);
78 // given point. Sets an appropriate |initial_scroll_offset_|.
79 void BeginScroll(const gfx::Point& point);
82 // given point. If the scroll is not beyond the minimum threshold, the tabs
84 void ContinueScroll(const gfx::Point& point);
87 // scrolls to the final mouse release point or selects the current tab
89 void EndScroll(const gfx::Point& point);

Completed in 849 milliseconds

1234567891011>>