HomeSort by relevance Sort by last modified time
    Searched refs:WKPoint (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/WebKit2/Shared/API/c/
WKGeometry.h 35 struct WKPoint {
39 typedef struct WKPoint WKPoint;
48 WKPoint origin;
WKSharedAPICast.h 202 inline WebCore::IntPoint toIntPoint(const WKPoint& wkPoint)
204 return WebCore::IntPoint(static_cast<int>(wkPoint.x), static_cast<int>(wkPoint.y));
241 inline WKPoint toAPI(const WebCore::IntPoint& point)
243 WKPoint wkPoint;
244 wkPoint.x = point.x();
245 wkPoint.y = point.y();
246 return wkPoint;
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePageOverlay.h 47 typedef bool (*WKBundlePageOverlayMouseDownCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint position, WKEventMouseButton mouseButton, const void* clientInfo);
48 typedef bool (*WKBundlePageOverlayMouseUpCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint position, WKEventMouseButton mouseButton, const void* clientInfo);
49 typedef bool (*WKBundlePageOverlayMouseMovedCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint position, const void* clientInfo);
50 typedef bool (*WKBundlePageOverlayMouseDraggedCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint position, WKEventMouseButton mouseButton, const void* clientInfo);
WKBundlePagePrivate.h 48 WK_EXPORT void WKBundlePageSetScaleAtOrigin(WKBundlePageRef page, double scale, WKPoint origin);
52 WK_EXPORT void WKBundlePageSimulateMouseDown(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time);
53 WK_EXPORT void WKBundlePageSimulateMouseUp(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time);
54 WK_EXPORT void WKBundlePageSimulateMouseMotion(WKBundlePageRef page, WKPoint position, double time);
WKBundlePage.cpp 200 void WKBundlePageSetScaleAtOrigin(WKBundlePageRef pageRef, double scale, WKPoint origin)
265 void WKBundlePageSimulateMouseDown(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time)
270 void WKBundlePageSimulateMouseUp(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time)
275 void WKBundlePageSimulateMouseMotion(WKBundlePageRef page, WKPoint position, double time)
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
EventSendingController.h 64 WKPoint m_position;
68 WKPoint m_clickPosition;
EventSendingController.cpp 40 static bool operator==(const WKPoint& a, const WKPoint& b)
197 WKPoint origin = { x, y };
InjectedBundlePage.cpp 276 WKPoint origin = { 0, 0 };
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.cpp 271 void WKPageSetScaleFactor(WKPageRef pageRef, double scale, WKPoint origin)
WKPage.h 328 WK_EXPORT void WKPageSetScaleFactor(WKPageRef page, double scale, WKPoint origin);

Completed in 1230 milliseconds