Searched defs:point (Results 76 - 100 of 236) sorted by relevance

12345678910

/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontCGWin.cpp131 int from, int numGlyphs, const FloatPoint& point)
153 // We have to convert CG's two-dimensional floating point advances to just horizontal integer advances.
172 textRect = IntRect(point.x() - (fontMetrics.ascent() + fontMetrics.descent()) / 2,
173 point.y() - fontMetrics.ascent() - lineGap,
220 xform.eDx = point.x();
221 xform.eDy = point.y();
249 CGContextTranslateCTM(cgContext, point.x() + glyphBuffer.offsetAt(from).width(), -(point.y() + glyphBuffer.offsetAt(from).height()));
301 int from, int numGlyphs, const FloatPoint& point) const
331 drawGDIGlyphs(graphicsContext, font, glyphBuffer, from, numGlyphs, point);
130 drawGDIGlyphs(GraphicsContext* graphicsContext, const SimpleFontData* font, const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point) argument
[all...]
H A DGraphicsContextCGWin.cpp120 void GraphicsContext::drawWindowsBitmap(WindowsBitmap* image, const IntPoint& point) argument
128 CGContextDrawImage(m_data->m_cgContext.get(), CGRectMake(point.x(), point.y(), image->size().width(), image->size().height()), cgImage.get());
183 void GraphicsContext::drawLineForTextChecking(const FloatPoint& point, float width, TextCheckingLineStyle style) argument
214 wkSetPatternPhaseInUserSpace(context, point);
218 const CGPoint upperPoints [] = {{point.x(), point.y() + patternHeight - 2.5 }, {point.x() + width, point.y() + patternHeight - 2.5}};
219 const CGPoint middlePoints [] = {{point
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPathWinCE.cpp56 bool Path::contains(const FloatPoint& point, WindRule rule) const argument
58 return m_path->contains(point, rule);
71 void Path::moveTo(const FloatPoint& point) argument
73 m_path->moveTo(point);
76 void Path::addLineTo(const FloatPoint& point) argument
78 m_path->addLineTo(point);
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DPathWx.cpp78 bool Path::contains(const FloatPoint& point, const WindRule rule) const argument
83 return m_path->Contains(point.x(), point.y(), static_cast<wxPolygonFillMode>(getWxWindRuleForWindRule(rule)));
85 return m_path->Contains(point.x(), point.y(), getWxWindRuleForWindRule(rule));
140 void Path::moveTo(const FloatPoint& point) argument
144 m_path->MoveToPoint(point.x(), point.y());
148 void Path::addLineTo(const FloatPoint& point) argument
152 m_path->AddLineToPoint(point
188 addArc(const FloatPoint& point, float radius, float startAngle, float endAngle, bool clockwise) argument
[all...]
/external/webkit/Source/WebCore/platform/qt/
H A DClipboardQt.cpp224 void ClipboardQt::setDragImage(CachedImage* image, const IntPoint& point) argument
226 setDragImage(image, 0, point);
229 void ClipboardQt::setDragImageElement(Node* node, const IntPoint& point) argument
231 setDragImage(0, node, point);
/external/webkit/Source/WebCore/rendering/
H A DHitTestResult.cpp63 HitTestResult::HitTestResult(const IntPoint& point) argument
64 : m_point(point)
93 , m_point(other.point())
120 m_point = other.point();
198 // Return the tool tip string associated with this point, if any. Only markers associated with bad grammar
214 // Return the replaced string associated with this point, if any. This marker is created when a string is autocorrected,
616 IntRect HitTestResult::rectForPoint(const IntPoint& point, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
618 IntPoint actualPoint(point);
H A DInlineBox.cpp311 FloatPoint InlineBox::flipForWritingMode(const FloatPoint& point) argument
314 return point;
315 return root()->block()->flipForWritingMode(point);
325 IntPoint InlineBox::flipForWritingMode(const IntPoint& point) argument
328 return point;
329 return root()->block()->flipForWritingMode(point);
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGInlineText.cpp171 VisiblePosition RenderSVGInlineText::positionForPoint(const IntPoint& point) argument
181 // Map local point to absolute point, as the character origins stored in the text fragments use absolute coordinates.
182 FloatPoint absolutePoint(point);
H A DRenderSVGPath.cpp81 bool RenderSVGPath::fillContains(const FloatPoint& point, bool requiresFill, WindRule fillRule) argument
83 if (!m_fillBoundingBox.contains(point))
90 return m_path.contains(point, fillRule);
93 bool RenderSVGPath::strokeContains(const FloatPoint& point, bool requiresStroke) argument
95 if (!m_strokeAndMarkerBoundingBox.contains(point))
103 return m_path.strokeContains(&strokeStyle, point);
136 // At this point LayoutRepainter already grabbed the old bounds,
H A DRenderSVGResourceClipper.cpp301 FloatPoint point = nodeAtPoint; local
302 if (!SVGRenderSupport::pointInClippingArea(this, point))
309 point = transform.inverse().mapPoint(point);
320 if (renderer->nodeAtFloatPoint(HitTestRequest(HitTestRequest::SVGClipContent), result, point, HitTestForeground))
H A DSVGRenderSupport.cpp75 ASSERT(useTransforms); // Mapping a point through SVG w/o respecting transforms is useless.
302 bool SVGRenderSupport::pointInClippingArea(RenderObject* object, const FloatPoint& point) argument
306 // We just take clippers into account to determine if a point is on the node. The Specification may
313 return clipper->hitTestClipContent(object->objectBoundingBox(), point);
H A DSVGRootInlineBox.cpp207 InlineBox* SVGRootInlineBox::closestLeafChildForPosition(const IntPoint& point) argument
219 if (point.y() < leaf->m_y)
221 if (point.y() > leaf->m_y + leaf->virtualLogicalHeight())
225 if (point.x() < leaf->m_x + leaf->m_logicalWidth)
/external/webkit/Source/WebCore/svg/
H A DSVGAnimateMotionElement.cpp130 static bool parsePoint(const String& s, FloatPoint& point) argument
148 point = FloatPoint(x, y);
/external/webkit/Source/WebKit/qt/tests/qgraphicswebview/
H A Dtst_qgraphicswebview.cpp109 void fireMouseClick(QPointF point) { argument
111 presEv.setPos(point);
115 relEv.setPos(point);
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKSharedAPICast.h241 inline WKPoint toAPI(const WebCore::IntPoint& point) argument
244 wkPoint.x = point.x();
245 wkPoint.y = point.y();
/external/webkit/Source/WebKit2/Shared/win/
H A DWebEventFactory.cpp44 POINT point = { -1, -1 }; local
45 ::GetCursorPos(&point);
46 ::ScreenToClient(hwnd, &point);
47 return MAKELPARAM(point.x, point.y);
50 static inline POINT point(LPARAM lParam) function in namespace:WebKit
52 POINT point = { GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam) }; local
53 return point;
386 POINT position = point(lParam);
403 POINT globalPosition = point(lPara
[all...]
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/
H A DWebPageWin.cpp359 void WebPage::gestureWillBegin(const WebCore::IntPoint& point, bool& canBeginPanning) argument
379 HitTestResult result = scollView->windowToContents(point);
/external/chromium/chrome/browser/chromeos/frame/
H A Dbrowser_view.cc118 virtual bool IsPositionInWindowCaption(const gfx::Point& point) { argument
119 return ::BrowserViewLayout::IsPositionInWindowCaption(point)
120 && !IsPointInViewsInTitleArea(point);
123 virtual int NonClientHitTest(const gfx::Point& point) { argument
124 gfx::Point point_in_browser_view_coords(point);
129 HTCLIENT : ::BrowserViewLayout::NonClientHitTest(point);
137 // Tests if the point is on one of views that are within the
139 bool IsPointInViewsInTitleArea(const gfx::Point& point)
141 gfx::Point point_in_status_area_coords(point);
333 // Only show context menu if point i
[all...]
/external/chromium/chrome/browser/ui/gtk/tabs/
H A Dtab_gtk.cc45 void RunMenu(const gfx::Point& point, guint32 event_time) { argument
46 menu_->PopupAsContext(point, event_time);
/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));
/external/chromium/chrome/browser/ui/views/
H A Dpage_info_bubble_view.cc356 // Find where to point the bubble at.
359 gfx::Point point; local
362 point = gfx::Point(width - kIconHorizontalOffset, 0);
364 point.Offset(0, kIconVerticalOffset);
366 &point);
368 bounds.set_origin(point);
/external/chromium/chrome/browser/ui/views/tabs/
H A Dbrowser_tab_strip_controller.cc58 void RunMenuAt(const gfx::Point& point) { argument
59 menu_->RunMenuAt(point, views::Menu2::ALIGN_TOPLEFT);
/external/clang/test/CodeGen/
H A Dstruct.c6 } point; variable in typeref:struct:__anon3377
9 point.x = 42;
/external/icu4c/common/
H A Dubidiln.c80 * the paragraph's levels array that we just point into.
685 Point *point, *start=pBiDi->insertPoints.points, local
688 for(point=start; point<limit; point++) {
689 runIndex=getRunFromLogicalIndex(pBiDi, point->pos, pErrorCode);
690 pBiDi->runs[runIndex].insertRemove|=point->flag;
/external/openssl/crypto/ec/
H A Dec2_smpl.c295 int ec_GF2m_simple_point_init(EC_POINT *point) argument
297 BN_init(&point->X);
298 BN_init(&point->Y);
299 BN_init(&point->Z);
305 void ec_GF2m_simple_point_finish(EC_POINT *point) argument
307 BN_free(&point->X);
308 BN_free(&point->Y);
309 BN_free(&point->Z);
314 void ec_GF2m_simple_point_clear_finish(EC_POINT *point) argument
316 BN_clear_free(&point
338 ec_GF2m_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
349 ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
376 ec_GF2m_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
424 ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
498 ec_GF2m_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
630 ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
853 ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
865 ec_GF2m_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
875 ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
975 ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
[all...]

Completed in 439 milliseconds

12345678910