/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
menu.js | 27 this.addEventListener('mouseout', this.handleMouseOut_); 60 * Handles mouseout events and deselects any selected item. 61 * @param {Event} e The mouseout event.
|
/external/chromium_org/third_party/flot/ |
jquery.flot.crosshair.min.js | 1 (function(b){var a={crosshair:{mode:null,color:"rgba(170, 0, 0, 0.80)",lineWidth:1}};function c(h){var j={x:-1,y:-1,locked:false};h.setCrosshair=function e(l){if(!l){j.x=-1}else{var k=h.p2c(l);j.x=Math.max(0,Math.min(k.left,h.width()));j.y=Math.max(0,Math.min(k.top,h.height()))}h.triggerRedrawOverlay()};h.clearCrosshair=h.setCrosshair;h.lockCrosshair=function f(k){if(k){h.setCrosshair(k)}j.locked=true};h.unlockCrosshair=function g(){j.locked=false};function d(k){if(j.locked){return}if(j.x!=-1){j.x=-1;h.triggerRedrawOverlay()}}function i(k){if(j.locked){return}if(h.getSelection&&h.getSelection()){j.x=-1;return}var l=h.offset();j.x=Math.max(0,Math.min(k.pageX-l.left,h.width()));j.y=Math.max(0,Math.min(k.pageY-l.top,h.height()));h.triggerRedrawOverlay()}h.hooks.bindEvents.push(function(l,k){if(!l.getOptions().crosshair.mode){return}k.mouseout(d);k.mousemove(i)});h.hooks.drawOverlay.push(function(m,k){var n=m.getOptions().crosshair;if(!n.mode){return}var l=m.getPlotOffset();k.save();k.translate(l.left,l.top);if(j.x!=-1){k.strokeStyle=n.color;k.lineWidth=n.lineWidth;k.lineJoin="round";k.beginPath();if(n.mode.indexOf("x")!=-1){k.moveTo(j.x,0);k.lineTo(j.x,m.height())}if(n.mode.indexOf("y")!=-1){k.moveTo(0,j.y);k.lineTo(m.width(),j.y)}k.stroke()}k.restore()});h.hooks.shutdown.push(function(l,k){k.unbind("mouseout",d);k.unbind("mousemove",i)})}b.plot.plugins.push({init:c,options:a,name:"crosshair",version:"1.0" (…)
|
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
menu.js | 39 this.addEventListener('mouseout', this.handleMouseOut_); 113 * Handles mouseout events and deselects any selected item. 114 * @param {Event} e The mouseout event.
|
repeating_button.js | 64 this.addEventListener('mouseout', this.buttonUp_.bind(this));
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Event.idl | 38 const unsigned short MOUSEOUT = 8;
|
Event.h | 60 MOUSEOUT = 8,
|
EventNames.h | 98 macro(mouseout) \
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
StatusBarButton.js | 208 this.element.addEventListener("mouseout", mouseUp.bind(this), false); 275 var boundMouseOut = mouseOut.bind(this); 278 buttons[i].element.addEventListener("mouseout", boundMouseOut, false); 291 function mouseOut(e)
|
DOMPresentationUtils.js | 101 link.addEventListener("mouseout", WebInspector.domAgent.hideDOMNodeHighlight.bind(WebInspector.domAgent), false);
|
Popover.js | 112 this.element.addEventListener("mouseout", this._popoverHelper._popoverMouseOut.bind(this._popoverHelper), true); 243 panelElement.addEventListener("mouseout", this._mouseOut.bind(this), false);
|
SoftContextMenu.js | 140 menuItemElement.addEventListener("mouseout", this._menuItemMouseOut.bind(this), false); 171 menuItemElement.addEventListener("mouseout", this._menuItemMouseOut.bind(this), false);
|
/external/chromium/chrome/browser/resources/picasaweb_uploader/ |
notification.html | 59 this.cancelButton_.addEventListener('mouseout', 178 * Event handler for cancel button mouseout.
|
/external/chromium_org/chrome/browser/resources/file_manager/js/media/ |
util.js | 50 tools[i].addEventListener('mouseout', this.onToolMouseOut_.bind(this));
|
media_controls.js | 812 'mouseout', this.onMouseOut_.bind(this)); 896 * 'mouseout' event handler. 920 * 'mouseout' event handler. [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGElementInstance.cpp | 58 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(SVGElementInstance, correspondingElement(), mouseout);
|
SVGElementInstance.h | 119 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), mouseout); member in class:WebCore::SVGElementInstance
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebInputEventConversion.h | 100 // NOTE: This is only implemented for mousemove, mouseover, mouseout,
|
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
pixelzoomer.js | 165 document.addEventListener('mouseout', handleMouseOut, false);
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
waterfall_row.js | 212 'mouseout', this.clearPopup_.bind(this, newNode), true);
|
/external/chromium/chrome/browser/resources/ |
menu.js | 264 this.addEventListener('mouseout', this.onMouseout_.bind(this)); 274 up.addEventListener('mouseout', this.stopScroll_.bind(this)); 275 down.addEventListener('mouseout', this.stopScroll_.bind(this));
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
menu.js | 258 this.addEventListener('mouseout', this.onMouseout_.bind(this)); 268 up.addEventListener('mouseout', this.stopScroll_.bind(this)); 269 down.addEventListener('mouseout', this.stopScroll_.bind(this));
|
/external/chromium/chrome/browser/ui/gtk/ |
status_bubble_gtk.cc | 31 // Milliseconds before we hide the status bubble widget when you mouseout.
|
/external/chromium_org/chrome/browser/ui/gtk/ |
status_bubble_gtk.cc | 34 // Milliseconds before we hide the status bubble widget when you mouseout.
|
/external/chromium_org/third_party/WebKit/Source/core/Resources/pagepopups/ |
suggestionPicker.js | 40 this._element.addEventListener("mouseout", this._handleMouseOut.bind(this), false);
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
DOMWindow.h | 292 DEFINE_ATTRIBUTE_EVENT_LISTENER(mouseout);
|