Home
last modified time | relevance | path

Searched refs:m_button (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
DPlatformMouseEvent.h48 , m_button(NoButton) in PlatformMouseEvent()
59 , m_button(button) in PlatformMouseEvent()
70 , m_button(button) in PlatformMouseEvent()
81 , m_button(button) in PlatformMouseEvent()
92 MouseButton button() const { return m_button; } in button()
102 MouseButton m_button; variable
/external/chromium_org/third_party/WebKit/Source/core/events/
DMouseEvent.cpp81 : m_button(0) in MouseEvent()
96 , m_button(button == (unsigned short)-1 ? 0 : button) in MouseEvent()
109 , m_button(initializer.button == (unsigned short)-1 ? 0 : initializer.button) in MouseEvent()
136 m_button = button == (unsigned short)-1 ? 0 : button; in initMouseEvent()
170 return m_button + 1; in which()
DMouseEvent.h79 unsigned short button() const { return m_button; } in button()
112 unsigned short m_button;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
DCSpinner.java57 private final Button m_button; field in CSpinner
69 m_button = new Button(this, SWT.ARROW | SWT.DOWN); in CSpinner()
347 int arrowWidth = m_button.computeSize(SWT.DEFAULT, SWT.DEFAULT).x; in layout()
398 int arrowWidth = m_button.computeSize(SWT.DEFAULT, SWT.DEFAULT).x; in layout()
498 int arrowWidth = m_button.computeSize(-1, -1).x; in layout()
512 int arrowWidth = m_button.computeSize(SWT.DEFAULT, SWT.DEFAULT).x; in computeSize()
534 int arrowWidth = m_button.computeSize(SWT.DEFAULT, SWT.DEFAULT).x; in layout()
DCComboBox.java68 private Button m_button; field in CComboBox
239 m_button = new Button(parent, SWT.ARROW | SWT.DOWN); in createButton()
240 m_button.addSelectionListener(new SelectionAdapter() { in createButton()
307 m_button.setBounds( in resizeInner()
445 || m_button.isFocusControl()
472 m_button.setEnabled(!value);
/external/chromium_org/third_party/WebKit/Source/web/
DWebInputEventConversion.cpp102 m_button = static_cast<MouseButton>(e.button); in PlatformMouseEventBuilder()