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

1234567891011>>

/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/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/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DBoundingVolume.java206 * point.
208 * @param point
209 * The point to get the distance to
212 public final float distanceTo(Vector3f point) { argument
213 return center.distance(point);
218 * given point.
220 * @param point
221 * The point to get the distance to
224 public final float distanceSquaredTo(Vector3f point) { argument
225 return center.distanceSquared(point);
236 distanceToEdge(Vector3f point) argument
298 contains(Vector3f point) argument
305 intersects(Vector3f point) argument
[all...]
/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/webkit/Source/WebCore/platform/win/
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/mdnsresponder/mDNSPosix/
H A Dparselog.py189 for point in plotPoints:
190 #c.addArc((point[0]-minTime)*scale,point[1]*typesize+6,5,0,2*math.pi,1)
191 c.addArc((point[0]-minTime)*scale,point[1]*typesize+6,typesize/4,0,2*math.pi,1)
192 theColour = colourLookup[(point[2])[0]]
193 if (((point[2])[0]) != "L") and (((point[2])[0]) != "Q") and (((point[2])[0]) != "P") and (((point[
[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/openssl/crypto/ec/
H A Decp_smpl.c354 int ec_GFp_simple_point_init(EC_POINT *point) argument
356 BN_init(&point->X);
357 BN_init(&point->Y);
358 BN_init(&point->Z);
359 point->Z_is_one = 0;
365 void ec_GFp_simple_point_finish(EC_POINT *point) argument
367 BN_free(&point->X);
368 BN_free(&point->Y);
369 BN_free(&point->Z);
373 void ec_GFp_simple_point_clear_finish(EC_POINT *point) argument
393 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
401 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
461 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
514 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
528 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
924 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
934 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
940 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1142 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
[all...]
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
959 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
975 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1007 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1060 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...]
/external/webkit/LayoutTests/fast/events/touch/script-tests/
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/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/skia/src/core/
H A DSkConcaveToTriangles.cpp86 // point() provides the top of the Trapezoid, whereas the bottom, and the left
88 // their tail point; the head is the successive point modulo the number of
112 // depending on whether the trapezoid or point is to the left, on, or to the
138 // Determine whether the given point lies within any active trapezoid, and
166 const SkPoint &point() const { return fPoint; } function in class:Vertex
167 void setPoint(const SkPoint &point) { fPoint = point; } argument
213 // depending on whether the point is to the left, on, or to the right of the
232 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...]
/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...]
/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_);
/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/chromium/ui/gfx/
H A Dpoint.h23 // A point has an x and y coordinate.
29 // |point| is a DWORD value that contains a coordinate. The x-coordinate is
32 explicit Point(DWORD point);
33 explicit Point(const POINT& point);
34 Point& operator=(const POINT& point);
36 explicit Point(const CGPoint& point);
81 // A point is less than another point if its y-value is closer
82 // to the origin. If the y-values are the same, then point with
97 // Returns a string representation of point
[all...]
/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
/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());

Completed in 627 milliseconds

1234567891011>>