HomeSort by relevance Sort by last modified time
    Searched full:mousedown (Results 26 - 50 of 373) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/ui/cocoa/toolbar/
toolbar_button.mm 15 - (void)mouseDown:(NSEvent*)theEvent {
17 [super mouseDown:theEvent];
  /external/chromium_org/content/browser/renderer_host/input/
touchpad_tap_suppression_controller.h 33 // Should be called on arrival of MouseDown events. Returns true if the caller
34 // should stop normal handling of the MouseDown. In this case, the caller is
  /external/chromium_org/ui/message_center/cocoa/
status_item_view_unittest.mm 37 [view_ mouseDown:nil];
80 [view_ mouseDown:nil];
status_item_view.mm 87 - (void)mouseDown:(NSEvent*)event {
101 [self mouseDown:event];
109 [self mouseDown:event];
  /sdk/emulator/opengl/tests/emulator_test_renderer/
main.cpp 41 int mouseDown = 0;
124 if (!mouseDown) {
126 mouseDown = 1;
130 if (mouseDown) {
132 mouseDown = 0;
136 if (mouseDown)
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
image_buffer.js 59 * @param {boolean} mouseDown If mouse button is down.
62 ImageBuffer.prototype.getCursorStyle = function(x, y, mouseDown) {
64 var style = this.overlays_[i].getCursorStyle(x, y, mouseDown);
147 * @param {boolean} mouseDown If mouse button is down.
151 ImageBuffer.Overlay.prototype.getCursorStyle = function(x, y, mouseDown) {
  /external/chromium_org/chrome/browser/resources/file_manager/js/
combobutton.js 105 // Remove mousedown event listener created by MenuButton::decorate,
107 this.removeEventListener('mousedown', this);
108 this.trigger_.addEventListener('mousedown', this);
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginScrollbarImpl.cpp 242 case WebInputEvent::MouseDown:
281 WebMouseEvent mousedown = *static_cast<const WebMouseEvent*>(&event); local
282 if (!m_scrollbar->frameRect().contains(mousedown.x, mousedown.y))
285 mousedown.x -= m_scrollbar->x();
286 mousedown.y -= m_scrollbar->y();
287 m_scrollbar->mouseDown(PlatformMouseEventBuilder(m_scrollbar.get(), mousedown));
  /external/chromium_org/ui/webui/resources/js/cr/ui/
bubble_button.js 28 this.image.addEventListener('mousedown', this);
68 case 'mousedown':
menu_button.js 37 this.addEventListener('mousedown', this);
86 case 'mousedown':
99 // Prevent the button from stealing focus on mousedown.
124 // the focus ring will be hidden in the mousedown event handler,
168 this.showingEvents_.add(doc, 'mousedown', this, true);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
Events.py 4 mouseDown = 1
14 mDownMask = 1 << mouseDown
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/
menu_button.js 24 this.addEventListener('mousedown', this);
65 case 'mousedown':
77 // Prevent the button from stealing focus on mousedown.
113 this.showingEvents_.add(doc, 'mousedown', this, true);
context_menu_button.js 58 case 'mousedown':
  /external/chromium/chrome/browser/ui/cocoa/
draggable_button.mm 155 // Override if you want to do any extra work on mouseUp, after a mouseDown
190 - (void)mouseDown:(NSEvent*)theEvent {
206 [super mouseDown:theEvent];
214 [super mouseDown:theEvent];
floating_bar_backing_view.mm 32 - (void)mouseDown:(NSEvent*)event {}
draggable_button.h 42 // Override if you want to do any extra work on mouseUp, after a mouseDown
60 // instead call the mouseDown/mouseUp handler as appropriate.
tabpose_window_unittest.mm 55 [window mouseDown:nil];
116 [window mouseDown:nil];
  /external/chromium_org/chrome/browser/ui/cocoa/
floating_bar_backing_view.mm 32 - (void)mouseDown:(NSEvent*)event {}
tabpose_window_unittest.mm 60 [window mouseDown:nil];
124 [window mouseDown:nil];
  /external/chromium_org/chrome/browser/ui/cocoa/browser/
password_generation_bubble_controller.mm 83 - (BOOL)mouseDown:(NSEvent*)theEvent
125 - (void)mouseDown:(NSEvent*)theEvent {
127 if (![[self cell] mouseDown:theEvent inView:self]) {
129 [[self currentEditor] mouseDown:theEvent];
132 [super mouseDown:theEvent];
195 - (BOOL)mouseDown:(NSEvent*)theEvent
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field_unittest.mm 373 [field_ mouseDown:downEvent];
408 [field_ mouseDown:downEvent];
427 [field_ mouseDown:downEvent];
446 [field_ mouseDown:downEvent];
460 [field_ mouseDown:downEvent];
489 [field_ mouseDown:downEvent];
491 [field_ mouseDown:downEvent2];
514 [field_ mouseDown:downEvent];
516 [field_ mouseDown:downEvent2];
518 [field_ mouseDown:downEvent3]
    [all...]
autocomplete_text_field.mm 59 // editor is installed, it will get -mouseDown: events and handle
80 - (void)mouseDown:(NSEvent*)theEvent {
112 // NSTextField -mouseDown: because it does the right thing. The
119 [super mouseDown:theEvent];
127 // NSText subview, which will receive the -mouseDown: in that
143 if ([cell mouseDown:theEvent inRect:bounds ofView:self]) {
167 [editor mouseDown:theEvent];
298 // handled by a decoration or context menu (|-mouseDown:| will still
  /external/chromium_org/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field_unittest.mm 387 [field_ mouseDown:downEvent];
422 [field_ mouseDown:downEvent];
441 [field_ mouseDown:downEvent];
460 [field_ mouseDown:downEvent];
474 [field_ mouseDown:downEvent];
503 [field_ mouseDown:downEvent];
505 [field_ mouseDown:downEvent2];
528 [field_ mouseDown:downEvent];
530 [field_ mouseDown:downEvent2];
532 [field_ mouseDown:downEvent3]
    [all...]
autocomplete_text_field.mm 60 // editor is installed, it will get -mouseDown: events and handle
81 - (void)mouseDown:(NSEvent*)theEvent {
110 // NSTextField -mouseDown: because it does the right thing. The
117 [super mouseDown:theEvent];
125 // NSText subview, which will receive the -mouseDown: in that
141 if ([cell mouseDown:theEvent inRect:bounds ofView:self]) {
165 [editor mouseDown:theEvent];
348 // handled by a decoration or context menu (|-mouseDown:| will still
  /external/chromium/chrome/browser/resources/ntp/
drag_drop_controller.js 38 // Install the 'mousedown' handler, the entry point to drag and drop.
40 el.addEventListener('mousedown', this.handleMouseDown_.bind(this));
96 // Listen to mousedown to get the relative position of the cursor when
139 // Use the item that the mouse was above when 'mousedown' fired.

Completed in 503 milliseconds

12 3 4 5 6 7 8 91011>>