Searched refs:clientY (Results 1 - 25 of 43) sorted by relevance

12

/external/chromium/chrome/browser/resources/ntp4/
H A Dtouch_handler.js132 * @param {number} clientY The Y location of the touch.
136 TouchHandler.Event = function(type, bubbles, clientX, clientY,
152 event.clientY = clientY;
384 clientY: e.clientY,
511 this.startTouchY_ = this.lastTouchY_ = touch.clientY;
517 this.recentTouchesY_.push(touch.clientY, e.timeStamp);
559 var clientY = touch.clientY;
[all...]
/external/chromium/chrome/browser/resources/touch_ntp/
H A Dtouchhandler.js132 * @param {number} clientY The Y location of the touch.
136 TouchHandler.Event = function(type, bubbles, clientX, clientY,
152 event.clientY = clientY;
384 clientY: e.clientY,
511 this.startTouchY_ = this.lastTouchY_ = touch.clientY;
517 this.recentTouchesY_.push(touch.clientY, e.timeStamp);
559 var clientY = touch.clientY;
[all...]
/external/webkit/Source/WebCore/dom/
H A DWheelEvent.idl28 readonly attribute long clientY;
54 in long clientY,
68 in long clientY,
H A DMouseRelatedEvent.h40 int clientY() const { return m_clientY; } function in class:WebCore::MouseRelatedEvent
63 void initCoordinates(int clientX, int clientY);
H A DTouch.idl32 readonly attribute long clientY;
H A DMouseEvent.idl27 readonly attribute long clientY;
43 in long clientY,
H A DTouchEvent.cpp62 PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY,
79 initCoordinates(clientX, clientY);
60 initTouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DTouchEvent.idl47 in long clientY,
H A DMouseRelatedEvent.cpp130 void MouseRelatedEvent::initCoordinates(int clientX, int clientY) argument
135 m_clientY = clientY;
137 m_pageY = clientY + contentsY(view());
H A DTouch.h51 int clientY() const { return m_clientY; } function in class:WebCore::Touch
H A DTouchEvent.h58 int clientX, int clientY,
H A DMouseEvent.cpp71 int detail, int screenX, int screenY, int clientX, int clientY,
90 initCoordinates(clientX, clientY);
185 event()->detail(), event()->screenX(), event()->screenY(), event()->clientX(), event()->clientY(),
70 initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtr<EventTarget> relatedTarget) argument
H A DMouseEvent.h55 int detail, int screenX, int screenY, int clientX, int clientY,
/external/webkit/Source/WebKit/chromium/src/
H A DWebDOMMouseEvent.cpp55 int WebDOMMouseEvent::clientY() const function in class:WebKit::WebDOMMouseEvent
57 return constUnwrap<MouseEvent>()->clientY();
/external/webkit/Source/WebKit/chromium/public/
H A DWebDOMMouseEvent.h46 WEBKIT_API int clientY() const;
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dtimeline.js313 var loY = Math.min(eDown.clientY, eCur.clientY);
314 var hiY = Math.max(eDown.clientY, eCur.clientY);
338 y: e.clientY - canv.offsetTop
355 y: e.clientY - canv.offsetTop
378 var loY = Math.min(eDown.clientY, e.clientY);
379 var hiY = Math.max(eDown.clientY, e.clientY);
[all...]
/external/chromium-trace/trace-viewer/src/
H A Dtimeline_track_view.js563 e.clientY >= rect.top &&
564 e.clientY < rect.bottom &&
573 y: e.clientY - canv.offsetTop
592 y: e.clientY - canv.offsetTop
602 this.dragBoxYStart_ = this.dragBeginEvent_.clientY;
603 this.dragBoxYEnd_ = e.clientY;
631 loY = Math.min(eDown.clientY, e.clientY);
632 hiY = Math.max(eDown.clientY, e.clientY);
[all...]
H A Dtimeline_view.js452 var dy = this.lastMousePosY - e.clientY;
458 this.lastMousePosY = e.clientY;
462 this.lastMousePosY = e.clientY;
/external/chromium/chrome/browser/resources/ntp/
H A Ddrag_drop_controller.js110 this.startMouseXY_ = {x: e.clientX, y: e.clientY};
117 this.mouseXY_ = {x: e.clientX, y: e.clientY};
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestdomdomwindow.c158 glong clientX, clientY; local
173 clientY = webkit_dom_element_get_client_top(element);
176 fixture->domWindow, 0, 0, 0, clientX, clientY, local
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dcontext_menu_handler.js95 y = e.clientY;
/external/webkit/Source/WebKit/win/Interfaces/
H A DDOMEvents.idl246 //readonly attribute long clientY;
247 HRESULT clientY([out, retval] long* result);
275 // in long clientY,
282 HRESULT initMouseEvent([in] BSTR type, [in] BOOL canBubble, [in] BOOL cancelable, [in] IDOMWindow* view, [in] long detail, [in] long screenX, [in] long screenY, [in] long clientX, [in] long clientY, [in] BOOL ctrlKey, [in] BOOL altKey, [in] BOOL shiftKey, [in] BOOL metaKey, [in] unsigned short button, [in] IDOMEventTarget* relatedTarget);
426 //readonly attribute long clientY;
427 HRESULT clientY([out, retval] long* result);
472 // in long clientY,
477 HRESULT initWheelEvent([in] long wheelDeltaX, [in] long wheelDeltaY, [in] IDOMWindow* view, [in] long screenX, [in] long screenY, [in] long clientX, [in] long clientY, [in] BOOL ctrlKey, [in] BOOL altKey, [in] BOOL shiftKey, [in] BOOL metaKey);
/external/chromium/chrome/browser/resources/touch_ntp/standalone/
H A Dstandalone_hack.js391 y: event.touches[0].clientY
405 Math.abs(t.clientY - lastTouchStartPosition.y) > DRAG_DISTANCE) {
/external/chromium/chrome/browser/resources/options/
H A Dlanguage_list.js281 var dy = e.clientY - rect.top;
/external/webkit/Source/WebKit/win/
H A DDOMEventsClasses.cpp398 HRESULT STDMETHODCALLTYPE DOMMouseEvent::clientY( function in class:DOMMouseEvent
473 /* [in] */ long /*clientY*/,
641 HRESULT STDMETHODCALLTYPE DOMWheelEvent::clientY( function in class:DOMWheelEvent
726 /* [in] */ long /*clientY*/,

Completed in 3256 milliseconds

12