/external/chromium/chrome/browser/resources/ntp4/ |
D | touch_handler.js | 136 TouchHandler.Event = function(type, bubbles, clientX, clientY, argument 152 event.clientY = clientY; 384 clientY: e.clientY, property 511 this.startTouchY_ = this.lastTouchY_ = touch.clientY; 517 this.recentTouchesY_.push(touch.clientY, e.timeStamp); 559 var clientY = touch.clientY; 562 var moveY = this.lastTouchY_ - clientY; 566 this.lastTouchY_ = clientY; 588 this.startTouchY_ = clientY; 605 this.recentTouchesY_.push(clientY, e.timeStamp); [all …]
|
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
D | touch_handler.js | 140 TouchHandler.Event = function(type, bubbles, clientX, clientY, argument 156 event.clientY = clientY; 398 clientY: e.clientY, property 526 this.startTouchY_ = this.lastTouchY_ = touch.clientY; 532 this.recentTouchesY_.push(touch.clientY, e.timeStamp); 574 var clientY = touch.clientY; 577 var moveY = this.lastTouchY_ - clientY; 581 this.lastTouchY_ = clientY; 607 this.startTouchY_ = clientY; 624 this.recentTouchesY_.push(clientY, e.timeStamp); [all …]
|
/external/chromium/chrome/browser/resources/touch_ntp/ |
D | touchhandler.js | 136 TouchHandler.Event = function(type, bubbles, clientX, clientY, argument 152 event.clientY = clientY; 384 clientY: e.clientY, property 511 this.startTouchY_ = this.lastTouchY_ = touch.clientY; 517 this.recentTouchesY_.push(touch.clientY, e.timeStamp); 559 var clientY = touch.clientY; 562 var moveY = this.lastTouchY_ - clientY; 566 this.lastTouchY_ = clientY; 588 this.startTouchY_ = clientY; 605 this.recentTouchesY_.push(clientY, e.timeStamp); [all …]
|
/external/chromium/chrome/browser/resources/gpu_internals/ |
D | timeline.js | 313 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);
|
/external/chromium-trace/trace-viewer/src/ui/ |
D | quad_view.js | 257 selectQuadsAtCanvasClientPoint: function(clientX, clientY) { argument 259 clientY *= ui.RASTER_SCALE; 261 clientX, clientY); 268 findQuadsAtCanvasClientPoint: function(clientX, clientY) { argument 271 clientY - bounds.top); 297 this.selectQuadsAtCanvasClientPoint(e.clientX, e.clientY); 306 this.selectQuadsAtCanvasClientPoint(e.clientX, e.clientY); 310 this.selectQuadsAtCanvasClientPoint(e.clientX, e.clientY);
|
D | mouse_tracker.js | 73 remade.clientY = e.clientY;
|
D | drag_handle.js | 130 var curMousePos = this.horizontal_ ? e.clientY : e.clientX; 144 this.lastMousePos_ = this.horizontal_ ? e.clientY : e.clientX;
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | GestureEvent.cpp | 76 …assRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bo… in initGestureEvent() argument 91 initCoordinates(IntPoint(clientX, clientY)); in initGestureEvent() 113 …assRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bo… in GestureEvent() argument 114 …type, true, true, view, 0, IntPoint(screenX, screenY), IntPoint(clientX, clientY), IntPoint(0, 0),… in GestureEvent()
|
D | GestureEvent.h | 42 …pe, PassRefPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bo… 53 …pe, PassRefPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bo…
|
D | MouseEvent.cpp | 39 , clientY(0) in MouseEventInit() 130 initCoordinates(IntPoint(initializer.clientX, initializer.clientY)); in MouseEvent() 138 int detail, int screenX, int screenY, int clientX, int clientY, in initMouseEvent() argument 156 initCoordinates(IntPoint(clientX, clientY)); in initMouseEvent() 280 … event()->detail(), event()->screenX(), event()->screenY(), event()->clientX(), event()->clientY(), in dispatchEvent()
|
D | TouchEvent.cpp | 63 PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, in initTouchEvent() argument 79 initCoordinates(IntPoint(clientX, clientY)); in initTouchEvent()
|
D | MouseEvent.h | 42 int clientY; member 77 int detail, int screenX, int screenY, int clientX, int clientY,
|
D | MouseEvent.idl | 26 [InitializedByEventConstructor] readonly attribute long clientY; 44 [Default=Undefined] optional long clientY,
|
D | MouseRelatedEvent.h | 41 int clientY() const { return m_clientLocation.y(); } in clientY() function
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebDOMMouseEvent.cpp | 55 int WebDOMMouseEvent::clientY() const in clientY() function in blink::WebDOMMouseEvent 57 return constUnwrap<MouseEvent>()->clientY(); in clientY()
|
/external/chromium-trace/trace-viewer/src/tracing/ |
D | timeline_track_view.js | 643 y: e.clientY - canv.offsetTop 736 mouseEvent.clientY >= rect.top && 737 mouseEvent.clientY < rect.bottom && 760 this.dragBoxYStart_ = this.dragBeginEvent_.clientY; 761 this.dragBoxYEnd_ = mouseEvent.clientY; 780 var loY = Math.min(eDown.clientY, mouseEvent.clientY); 781 var hiY = Math.max(eDown.clientY, mouseEvent.clientY);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | Touch.h | 53 int clientY() const { return m_clientY; } in clientY() function 70 Touch(EventTarget*, unsigned identifier, int clientX, int clientY,
|
D | Touch.cpp | 76 Touch::Touch(EventTarget* target, unsigned identifier, int clientX, int clientY, int screenX, int s… in Touch() argument 80 , m_clientY(clientY) in Touch()
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/media/ |
D | util.js | 133 if (this.clientX_ == e.clientX && this.clientY_ == e.clientY) { 139 this.clientY_ = e.clientY;
|
/external/chromium/chrome/browser/resources/ntp/ |
D | drag_drop_controller.js | 110 this.startMouseXY_ = {x: e.clientX, y: e.clientY}; 117 this.mouseXY_ = {x: e.clientX, y: e.clientY};
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebDOMMouseEvent.h | 46 BLINK_EXPORT int clientY() const;
|
/external/chromium_org/chrome/browser/resources/standalone/ |
D | standalone_hack.js | 192 y: event.touches[0].clientY 206 Math.abs(t.clientY - lastTouchStartPosition.y) > DRAG_DISTANCE) {
|
/external/chromium_org/chrome/test/functional/perf/endure_graphs/js/ |
D | dom_utils.js | 41 'y': event.clientY + document.body.scrollTop +
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
D | mouse_over_help.js | 42 this.node_.style.top = event.clientY.toFixed(0) + 'px';
|
/external/chromium_org/chrome/test/chromedriver/js/ |
D | dispatch_context_menu_event.js | 32 clientY: y, property
|