Searched refs:point (Results 1 - 25 of 640) sorted by relevance

1234567891011>>

/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
H A Dp2.cpp3 void point(int = 3, int = 4);
6 point(1,2);
7 point(1);
8 point();
/external/webkit/Source/WebCore/platform/graphics/brew/
H A DIntPointBrew.cpp33 IntPoint::IntPoint(const AEEPoint& point) argument
34 : m_x(point.x)
35 , m_y(point.y)
41 AEEPoint point; local
42 point.x = static_cast<int16>(m_x);
43 point.y = static_cast<int16>(m_y);
44 return point;
/external/clang/test/FixIt/
H A Dno-typo.c6 point p1; // expected-error{{unknown type name 'point'}}
/external/v8/test/cctest/
H A Dtest-fixed-dtoa.cc46 int point; local
48 CHECK(FastFixedDtoa(1.0, 1, buffer, &length, &point));
50 CHECK_EQ(1, point);
52 CHECK(FastFixedDtoa(1.0, 15, buffer, &length, &point));
54 CHECK_EQ(1, point);
56 CHECK(FastFixedDtoa(1.0, 0, buffer, &length, &point));
58 CHECK_EQ(1, point);
60 CHECK(FastFixedDtoa(0xFFFFFFFF, 5, buffer, &length, &point));
62 CHECK_EQ(10, point);
64 CHECK(FastFixedDtoa(4294967296.0, 5, buffer, &length, &point));
497 int point; local
[all...]
H A Dtest-bignum-dtoa.cc63 int point; local
65 BignumDtoa(1.0, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point);
67 CHECK_EQ(1, point);
69 BignumDtoa(1.0, BIGNUM_DTOA_FIXED, 3, buffer, &length, &point);
70 CHECK_GE(3, length - point);
73 CHECK_EQ(1, point);
75 BignumDtoa(1.0, BIGNUM_DTOA_PRECISION, 3, buffer, &length, &point);
79 CHECK_EQ(1, point);
81 BignumDtoa(1.5, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point);
83 CHECK_EQ(1, point);
261 int point; local
279 int point; local
300 int point; local
[all...]
H A Dtest-dtoa.cc63 int point; local
66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
68 CHECK_EQ(1, point);
70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
73 CHECK_EQ(1, point);
75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
78 CHECK_EQ(1, point);
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
82 CHECK_EQ(1, point);
84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point);
272 int point; local
292 int point; local
315 int point; local
[all...]
H A Dtest-fast-dtoa.cc35 int point; local
40 buffer, &length, &point);
43 CHECK_EQ(-323, point);
47 buffer, &length, &point);
50 CHECK_EQ(309, point);
53 buffer, &length, &point);
56 CHECK_EQ(10, point);
59 buffer, &length, &point);
62 CHECK_EQ(299, point);
65 buffer, &length, &point);
105 int point; local
207 int point; local
236 int point; local
[all...]
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DFloatPointHaiku.cpp36 FloatPoint::FloatPoint(const BPoint& point) argument
37 : m_x(point.x)
38 , m_y(point.y)
H A DIntPointHaiku.cpp36 IntPoint::IntPoint(const BPoint& point) argument
37 : m_x(static_cast<int>(point.x))
38 , m_y(static_cast<int>(point.y))
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformTouchPointQt.cpp30 PlatformTouchPoint::PlatformTouchPoint(const QTouchEvent::TouchPoint& point) argument
33 m_id = static_cast<unsigned>(point.id());
34 switch (point.state()) {
40 m_screenPos = point.screenPos().toPoint();
41 m_pos = point.pos().toPoint();
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterPointShape.java42 private Vector3f point; field in class:EmitterPointShape
47 public EmitterPointShape(Vector3f point) { argument
48 this.point = point;
55 clone.point = point.clone();
64 store.set(point);
68 * This method fills the point with data.
70 * @param store the variable to store the point data
75 store.set(point);
82 setPoint(Vector3f point) argument
[all...]
/external/chromium/ui/gfx/
H A Dpoint.cc5 #include "ui/gfx/point.h"
22 Point::Point(DWORD point) { argument
23 POINTS points = MAKEPOINTS(point);
28 Point::Point(const POINT& point) : x_(point.x), y_(point.y) { argument
31 Point& Point::operator=(const POINT& point) { argument
32 x_ = point.x;
33 y_ = point.y;
44 Point::Point(const CGPoint& point) argument
[all...]
/external/freetype/src/autofit/
H A Dafhints.c175 AF_Point point; local
182 for ( point = points; point < limit; point++ )
186 point - points,
187 point->fx,
188 point->fy,
189 point->ox / 64.0,
190 point->oy / 64.0,
191 point
651 AF_Point point; local
782 AF_Point point = hints->points; local
828 AF_Point point, first, last; local
854 AF_Point point, first, last; local
907 AF_Point point; local
1152 AF_Point point; local
1282 AF_Point point; local
[all...]
/external/skia/tests/
H A DPointTest.cpp17 SkPoint point; local
18 point.set(x, y);
19 SkScalar s1 = point.length();
28 SkPoint point; local
29 point.set(x, y);
30 SkScalar oldLength = point.length();
31 SkScalar returned = SkPoint::Normalize(&point);
32 SkScalar newLength = point.length();
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DViewfinderResultPointCallback.java30 public void foundPossibleResultPoint(ResultPoint point) { argument
31 viewfinderView.addPossibleResultPoint(point);
/external/openssl/crypto/ec/
H A Dec_oct.c71 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, argument
80 if (group->meth != point->meth)
89 group, point, x, y_bit, ctx);
98 group, point, x, y_bit, ctx);
101 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
105 int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, argument
114 if (group->meth != point->meth)
123 group, point, x, y_bit, ctx);
126 group, point, x, y_bit, ctx);
128 return group->meth->point_set_compressed_coordinates(group, point,
132 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
167 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
H A Dec_print.c60 const EC_POINT *point,
68 buf_len = EC_POINT_point2oct(group, point, form,
76 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
91 EC_POINT *point,
109 if (point == NULL)
118 ret = point;
122 if (point == NULL)
136 const EC_POINT *point,
144 buf_len = EC_POINT_point2oct(group, point, form,
152 if (!EC_POINT_point2oct(group, point, for
59 EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BIGNUM *ret, BN_CTX *ctx) argument
89 EC_POINT_bn2point(const EC_GROUP *group, const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx) argument
135 EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BN_CTX *ctx) argument
179 EC_POINT_hex2point(const EC_GROUP *group, const char *buf, EC_POINT *point, BN_CTX *ctx) argument
[all...]
/external/chromium/chrome/browser/chromeos/frame/
H A Dbrowser_frame_view_chromeos.cc35 int BrowserFrameViewChromeos::NonClientHitTest(const gfx::Point& point) { argument
36 if (point.y() < kTopPad)
38 return OpaqueBrowserFrameView::NonClientHitTest(point);
48 const gfx::Point& point) {
49 if (point.y() < kTopPad) {
50 gfx::Point nc_point(point.x(), kTopPad);
55 return OpaqueBrowserFrameView::GetEventHandlerForPoint(point);
47 GetEventHandlerForPoint( const gfx::Point& point) argument
/external/webkit/Source/WebCore/platform/win/
H A DWheelEventWin.cpp41 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local
42 ScreenToClient(hWnd, &point);
43 return point;
48 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local
49 return point;
82 POINT point = {location.x(), location.y()}; local
83 m_globalPosition = point;
86 ScreenToClient(hWnd, &point);
87 m_position = point;
/external/webkit/Source/WebKit/chromium/src/
H A DDragScrollTimer.cpp40 // Computes the distance from a point outside a rect to the nearest edge of the rect.
41 static IntSize distanceToRect(const IntPoint& point, const IntRect& rect) argument
44 if (point.x() < rect.x())
45 dx = point.x() - rect.x();
46 else if (rect.maxX() < point.x())
47 dx = point.x() - rect.maxX();
48 if (point.y() < rect.y())
49 dy = point.y() - rect.y();
50 else if (rect.maxY() < point.y())
51 dy = point
[all...]
/external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
H A DMovieControllerLayer.h71 - (void)handleMouseDown:(CGPoint)point;
72 - (void)handleMouseUp:(CGPoint)point;
73 - (void)handleMouseDragged:(CGPoint)point;
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8WebKitPointConstructor.cpp64 PassRefPtr<WebKitPoint> point = WebKitPoint::create(x, y); local
65 point->ref();
66 V8DOMWrapper::setDOMWrapper(args.Holder(), &info, point.get());
/external/freetype/src/pshinter/
H A Dpshalgo.c1044 /* we need at least 4 points to create an inflection point */
1183 /* load outline point coordinates into hinter glyph */
1189 PSH_Point point = glyph->points; local
1193 for ( ; count > 0; count--, point++, vec++ )
1195 point->flags2 = 0;
1196 point->hint = NULL;
1199 point->org_u = vec->x;
1200 point->org_v = vec->y;
1204 point->org_u = vec->y;
1205 point
1223 PSH_Point point = glyph->points; local
1290 PSH_Point point; local
1323 PSH_Point point = points; local
1402 PSH_Point point, before, after; local
1469 PSH_Point point, before, after; local
1517 psh_hint_table_find_strong_points( PSH_Hint_Table table, PSH_Point point, FT_UInt count, FT_Int threshold, FT_Int major_dir ) argument
1711 PSH_Point point = glyph->points + first; local
1727 PSH_Point point = glyph->points; local
1740 PSH_Point point = glyph->points; local
1760 PSH_Point point = glyph->points; local
1835 PSH_Point point = glyph->points; local
1896 PSH_Point point; local
2046 PSH_Point first, next, point; local
[all...]
/external/chromium/chrome/browser/ui/cocoa/
H A Dnew_tab_button.h23 // Returns YES if the given point is over the button. |point| is in the
25 - (BOOL)pointIsOverButton:(NSPoint)point;
/external/tremolo/Tremolo/
H A Dcodebook.h77 oggpack_buffer *b,int n,int point);
79 oggpack_buffer *b,int n,int point);
81 oggpack_buffer *b,int n,int point);
84 oggpack_buffer *b,int n,int point);

Completed in 6944 milliseconds

1234567891011>>