Searched refs:point (Results 1 - 25 of 537) 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/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/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/openssl/crypto/ec/
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...]
H A Dec_check.c64 EC_POINT *point = NULL; local
98 if ((point = EC_POINT_new(group)) == NULL) goto err;
106 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx)) goto err;
107 if (!EC_POINT_is_at_infinity(group, point))
120 if (point)
121 EC_POINT_free(point);
/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);
/external/v8/src/
H A Dbignum-dtoa.h39 // Return a fixed number of digits after the decimal point.
48 // The result should be interpreted as buffer * 10^(point-length).
61 // 'requested_digits' digits after the decimal point. The produced digits
63 // Example: toFixed(0.001, 5) is allowed to return buffer="1", point=-2.
65 // buffer="2", point=0.
77 Vector<char> buffer, int* length, int* point);
H A Ddtoa.cc54 Vector<char> buffer, int* sign, int* length, int* point) {
69 *point = 1;
82 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, length, point);
85 fast_worked = FastFixedDtoa(v, requested_digits, buffer, length, point);
89 buffer, length, point);
99 BignumDtoa(v, bignum_mode, requested_digits, buffer, length, point);
53 DoubleToAscii(double v, DtoaMode mode, int requested_digits, Vector<char> buffer, int* sign, int* length, int* point) argument
/external/chromium/chrome/browser/rlz/
H A Drlz.h40 // Records an RLZ event. Some events can be access point independent.
44 rlz_lib::AccessPoint point,
47 // Get the RLZ value of the access point.
50 static bool GetAccessPointRlz(rlz_lib::AccessPoint point, std::wstring* rlz);
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DFontWx.cpp71 int from, int numGlyphs, const FloatPoint& point) const
80 drawTextWithSpacing(graphicsContext, font, color, glyphBuffer, from, numGlyphs, point);
83 FloatRect Font::selectionRectForComplexText(const TextRun& run, const FloatPoint& point, int h, int from, int to) const argument
97 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
100 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
104 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
119 void Font::drawComplexText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, in argument
157 drawEmphasisMarksForComplexText(GraphicsContext* context, const TextRun& run, const AtomicString& mark, const FloatPoint& point, int from, int to) const argument
[all...]

Completed in 476 milliseconds

1234567891011>>