Searched defs:point (Results 1 - 25 of 236) sorted by relevance

12345678910

/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/openssl/crypto/ec/
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);
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/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/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/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/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...]
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
H A DWTauNafMultiplier.java19 public ECPoint multiply(ECPoint point, BigInteger k, PreCompInfo preCompInfo) argument
21 if (!(point instanceof ECPoint.F2m))
27 ECPoint.F2m p = (ECPoint.F2m)point;
/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/
H A Dprofile_menu_model.cc25 void ProfileMenuModel::RunMenuAt(const gfx::Point& point) { argument
26 menu_->RunMenuAt(point, views::Menu2::ALIGN_TOPRIGHT);
/external/v8/src/
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/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/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;
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/WebCore/svg/
H A DSVGPointList.cpp41 const FloatPoint& point = at(i); local
42 builder.append(makeString(String::number(point.x()), ' ', String::number(point.y())));
H A DSVGPathByteStreamBuilder.h79 void writeFloatPoint(const FloatPoint& point) argument
81 writeFloat(point.x());
82 writeFloat(point.y());
/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/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/ec/
H A DEC5Util.java110 ECPoint point,
113 return convertPoint(convertCurve(ecSpec.getCurve()), point, withCompression);
118 ECPoint point,
121 return curve.createPoint(point.getAffineX(), point.getAffineY(), withCompression);
108 convertPoint( ECParameterSpec ecSpec, ECPoint point, boolean withCompression) argument
116 convertPoint( ECCurve curve, ECPoint point, boolean withCompression) argument
/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/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/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/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());

Completed in 573 milliseconds

12345678910