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

1234567891011>>

/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/chromium/chrome/browser/chromeos/frame/
H A Ddom_browser_view_layout.cc57 bool DOMBrowserViewLayout::IsPositionInWindowCaption(const gfx::Point& point) { argument
61 int DOMBrowserViewLayout::NonClientHitTest(const gfx::Point& point) { argument
63 gfx::Point point_in_browser_view_coords(point);
67 if (bv_bounds.Contains(point))
69 // If the point is somewhere else, delegate to the default implementation.
70 return browser_view_->views::ClientView::NonClientHitTest(point);
75 bool DOMBrowserViewLayout::IsPointInViewsInTitleArea(const gfx::Point& point)
77 gfx::Point point_in_status_area_coords(point);
H A Ddom_browser_view_layout.h51 virtual bool IsPositionInWindowCaption(const gfx::Point& point) OVERRIDE;
52 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
64 // Tests if the point is on one of views that are within the
66 bool IsPointInViewsInTitleArea(const gfx::Point& point) const;
H A Dbrowser_frame_view_chromeos.h19 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
22 const gfx::Point& point) OVERRIDE;
/external/chromium/chrome/browser/ui/cocoa/
H A Dtest_event_utils.h36 NSEvent* MouseEventAtPoint(NSPoint point, NSEventType type,
38 NSEvent* LeftMouseDownAtPoint(NSPoint point);
39 NSEvent* LeftMouseDownAtPointInWindow(NSPoint point, NSWindow* window);
/external/webkit/Source/WebCore/platform/efl/
H A DPlatformTouchEventEfl.cpp44 void* point; local
46 EINA_LIST_FREE(points, point) {
47 Ewk_Touch_Point* p = static_cast<Ewk_Touch_Point*>(point);
/external/webkit/LayoutTests/fast/events/touch/script-tests/
H A Dbasic-multi-touch-events-limited.js44 function verifyTouchPoint(list, point, x, y, id)
46 shouldBe("lastEvent." + list + "[" + point + "].pageX", x.toString());
47 shouldBe("lastEvent." + list + "[" + point + "].pageY", y.toString());
48 shouldBe("lastEvent." + list + "[" + point + "].clientX", x.toString());
49 shouldBe("lastEvent." + list + "[" + point + "].clientY", y.toString());
50 shouldBe("lastEvent." + list + "[" + point + "].identifier", id.toString());
99 description("This tests basic multi touch event support. This is a limited version of test basic-multi-touch-events.html that avoids the situation where one touch point is released while another is maintained.");
H A Dbasic-multi-touch-events.js44 function verifyTouchPoint(list, point, x, y, id)
46 shouldBe("lastEvent." + list + "[" + point + "].pageX", x.toString());
47 shouldBe("lastEvent." + list + "[" + point + "].pageY", y.toString());
48 shouldBe("lastEvent." + list + "[" + point + "].clientX", x.toString());
49 shouldBe("lastEvent." + list + "[" + point + "].clientY", y.toString());
50 shouldBe("lastEvent." + list + "[" + point + "].identifier", id.toString());
H A Dbasic-single-touch-events.js44 function verifyTouchPoint(list, point, x, y, id)
46 shouldBe("lastEvent." + list + "[" + point + "].pageX", x.toString());
47 shouldBe("lastEvent." + list + "[" + point + "].pageY", y.toString());
48 shouldBe("lastEvent." + list + "[" + point + "].clientX", x.toString());
49 shouldBe("lastEvent." + list + "[" + point + "].clientY", y.toString());
50 shouldBe("lastEvent." + list + "[" + point + "].identifier", id.toString());
/external/chromium/chrome/browser/ui/views/
H A Dprofile_menu_model.cc25 void ProfileMenuModel::RunMenuAt(const gfx::Point& point) { argument
26 menu_->RunMenuAt(point, views::Menu2::ALIGN_TOPRIGHT);
/external/webkit/Source/WebCore/platform/win/
H A DWebCoreTextRenderer.cpp49 static void doDrawTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& color, int underlinedIndex) argument
55 font.drawText(&context, run, point);
57 context.drawBidiText(font, run, point);
72 IntPoint underlinePoint(point);
80 void WebCoreDrawTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& color, int underlinedIndex) argument
84 doDrawTextAtPoint(context, text, point, font, color, underlinedIndex);
89 void WebCoreDrawDoubledTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& topColor, const Color& bottomColor, int underlinedIndex) argument
93 IntPoint textPos = point;
H A DPlatformMouseEventWin.cpp40 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local
41 return point;
46 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local
47 ClientToScreen(hWnd, &point);
48 return point;
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DFontComplexTextMac.cpp41 FloatRect Font::selectionRectForComplexText(const TextRun& run, const FloatPoint& point, int h, argument
53 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
56 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
83 void Font::drawComplexText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, int from, int to) const argument
88 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer);
94 // Draw the glyph buffer now at the starting point returned in startX.
95 FloatPoint startPoint(startX, point.y());
99 void Font::drawEmphasisMarksForComplexText(GraphicsContext* context, const TextRun& run, const AtomicString& mark, const FloatPoint& point, in argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontWin.cpp53 FloatRect Font::selectionRectForComplexText(const TextRun& run, const FloatPoint& point, int h, argument
66 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
69 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
97 void Font::drawComplexText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, argument
103 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer);
109 // Draw the glyph buffer now at the starting point returned in startX.
110 FloatPoint startPoint(startX, point.y());
114 void Font::drawEmphasisMarksForComplexText(GraphicsContext* context, const TextRun& run, const AtomicString& mark, const FloatPoint& point, in 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/WebKit2/WebProcess/WebPage/mac/
H A DAccessibilityWebPageObject.mm144 WebCore::IntPoint point = m_page->accessibilityPosition();
145 return [NSValue valueWithPoint:NSMakePoint(point.x(), point.y())];
162 - (id)accessibilityHitTest:(NSPoint)point
164 // Hit-test point comes in as bottom-screen coordinates. Needs to be normalized to the frame of the web page.
172 point.y = screenHeight - point.y;
174 // Re-center point into the web page's frame.
175 point.y -= remotePosition.y;
176 point
[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/chrome/browser/ui/views/tabs/
H A Dabstract_tab_strip_view.h29 // Returns true if the specified point(TabStrip coordinates) is
31 virtual bool IsPositionInWindowCaption(const gfx::Point& point) = 0;
H A Dnative_view_photobooth_win.cc10 #include "ui/gfx/point.h"
18 gfx::Point* point = reinterpret_cast<gfx::Point*>(data); local
19 if (monitor_rect->right > point->x() && monitor_rect->bottom > point->y()) {
20 point->set_x(monitor_rect->right);
21 point->set_y(monitor_rect->bottom);
34 gfx::Point point(0, 0);
36 reinterpret_cast<LPARAM>(&point));
37 return gfx::Point(point.x() - 1, point
[all...]
/external/openssl/crypto/ec/
H A Dec_lib.c727 void EC_POINT_free(EC_POINT *point) argument
729 if (!point) return;
731 if (point->meth->point_finish != 0)
732 point->meth->point_finish(point);
733 OPENSSL_free(point);
737 void EC_POINT_clear_free(EC_POINT *point) argument
739 if (!point) return;
741 if (point->meth->point_clear_finish != 0)
742 point
787 EC_POINT_method_of(const EC_POINT *point) argument
793 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
809 EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
826 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
843 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
860 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
877 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
894 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
911 EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
928 EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
945 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
962 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
1027 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
1043 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1075 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1128 EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx) argument
[all...]
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...]
/external/v8/src/
H A Ddtoa.h39 // Return a fixed number of digits after the decimal point.
53 // The result should be interpreted as buffer * 10^(point-length).
64 // 'requested_digits' digits after the decimal point. The produced digits
66 // Example: toFixed(0.001, 5) is allowed to return buffer="1", point=-2.
68 // toFixed(0.15, 2) thus returns buffer="2", point=0.
81 Vector<char> buffer, int* sign, int* length, int* point);
/external/freetype/src/base/
H A Dftoutln.c61 FT_Vector* point; local
68 FT_UInt first; /* index of first point in contour */
69 FT_Int tag; /* current point's state */
84 FT_Int last; /* index of last point in contour */
104 point = outline->points + first;
108 /* A contour cannot start with a cubic control point! */
112 /* check first point to determine origin */
115 /* first point is conic control. Yes, this happens. */
118 /* start at last point if it is on the curve */
132 point
989 FT_Vector* point; local
[all...]
/external/clang/test/Sema/
H A Ddesignated-initializers.c25 struct point { struct
30 struct point p1 = {
33 .a = 4.0, // expected-error{{field designator 'a' does not refer to any field in type 'struct point'}}
36 struct point p2 = {
40 struct point array[10] = {
43 [2].z = 3.0, // expected-error{{field designator 'z' does not refer to any field in type 'struct point'}}
46 struct point array2[10] = {
52 struct point array3[10] = {
57 struct point top_left;
58 struct point bottom_righ
[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);

Completed in 414 milliseconds

1234567891011>>