HomeSort by relevance Sort by last modified time
    Searched full:modifiers (Results 126 - 150 of 1309) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/cocoa/
accelerator_utils_cocoa.mm 31 NSUInteger modifiers =
39 modifierFlags:modifiers
accelerators_cocoa.mm 18 NSUInteger modifiers;
52 new ui::PlatformAcceleratorCocoa(entry.key, entry.modifiers));
browser_window_utils.mm 79 NSUInteger modifiers = [event.os_event modifierFlags];
80 const bool cmdKey = (modifiers & NSCommandKeyMask) != 0;
81 const bool shiftKey = (modifiers & NSShiftKeyMask) != 0;
82 const bool cntrlKey = (modifiers & NSControlKeyMask) != 0;
83 const bool optKey = (modifiers & NSAlternateKeyMask) != 0;
nsmenuitem_additions.mm 30 // Menu item key equivalents are nearly all stored without modifiers. The
31 // exception is shift, which is included in the key and not in the modifiers
57 // Make sure "shift" is not removed from modifiers below.
65 // Make sure "shift" is not removed from modifiers below.
96 // Clear all non-interesting modifiers
  /external/chromium_org/ppapi/shared_impl/
ppb_input_event_shared.cc 258 uint32_t modifiers,
270 data.event_modifiers = modifiers;
288 uint32_t modifiers,
303 data.event_modifiers = modifiers;
317 uint32_t modifiers,
324 data.event_modifiers = modifiers;
338 uint32_t modifiers) {
348 data.event_modifiers = modifiers;
  /external/chromium_org/third_party/WebKit/public/web/
WebActiveWheelFlingParameters.h 41 int modifiers; member in struct:blink::WebActiveWheelFlingParameters
47 : modifiers(0)
  /external/jdiff/src/jdiff/
MemberDiff.java 46 * A string describing the changes in modifiers.
64 /** Add a change in the modifiers. */
APIHandler.java 311 /** Extra modifiers which are common to all program elements. */
312 public Modifiers getModifiers(Attributes attributes) {
313 Modifiers modifiers = new Modifiers(); local
314 modifiers.isStatic = false;
316 modifiers.isStatic = true;
317 modifiers.isFinal = false;
319 modifiers.isFinal = true;
320 modifiers.isDeprecated = false
    [all...]
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_keysym.3 24 Current key modifiers
52 \fBmod\fR stores the current state of the keyboard modifiers as explained in \fI\fBSDL_GetModState\fP\fR\&. The \fBunicode\fR is only used when UNICODE translation is enabled with \fI\fBSDL_EnableUNICODE\fP\fR\&. If \fBunicode\fR is non-zero then this a the UNICODE character corresponding to the keypress\&. If the high 9 bits of the character are 0, then this maps to the equivalent ASCII character:
  /libcore/luni/src/main/java/java/lang/reflect/
Member.java 50 * Returns the modifiers for this member. The {@link Modifier} class should
53 * @return the modifiers for this member
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
modifier.hpp 12 // Description : parameter modifiers
31 // ************** environment variable modifiers ************** //
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t042ast.g 166 : modifiers! statement
170 : modifiers! r34a[$modifiers.tree]
171 //| modifiers! r33b[$modifiers.tree]
342 modifiers
  /external/antlr/antlr-3.4/runtime/Python/tests/
t042ast.g 160 : modifiers! statement
164 : modifiers! r34a[$modifiers.tree]
165 //| modifiers! r33b[$modifiers.tree]
336 modifiers
  /external/chromium_org/ui/events/cocoa/
events_mac.mm 71 NSUInteger modifiers = [native_event modifierFlags];
73 if (modifiers & NSAlphaShiftKeyMask)
76 if (modifiers & NSShiftKeyMask)
79 if (modifiers & NSControlKeyMask)
82 if (modifiers & NSAlternateKeyMask)
85 if (modifiers & NSCommandKeyMask)
  /external/chromium_org/content/browser/renderer_host/input/
web_input_event_builders_gtk.cc 70 int modifiers = 0; local
72 modifiers |= WebInputEvent::ShiftKey;
74 modifiers |= WebInputEvent::ControlKey;
76 modifiers |= WebInputEvent::AltKey;
78 modifiers |= WebInputEvent::MetaKey;
80 modifiers |= WebInputEvent::LeftButtonDown;
82 modifiers |= WebInputEvent::MiddleButtonDown;
84 modifiers |= WebInputEvent::RightButtonDown;
86 modifiers |= WebInputEvent::CapsLockOn;
88 modifiers |= WebInputEvent::NumLockOn
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventFactoryGtk.cpp 101 int modifiers = 0; local
103 modifiers |= WebInputEvent::ShiftKey;
105 modifiers |= WebInputEvent::ControlKey;
107 modifiers |= WebInputEvent::AltKey;
109 modifiers |= WebInputEvent::MetaKey;
111 modifiers |= WebInputEvent::LeftButtonDown;
113 modifiers |= WebInputEvent::MiddleButtonDown;
115 modifiers |= WebInputEvent::RightButtonDown;
117 modifiers |= WebInputEvent::CapsLockOn;
119 modifiers |= WebInputEvent::NumLockOn
    [all...]
  /external/chromium_org/chrome/browser/resources/extensions/
extension_command_list.js 36 * Enum for whether we require modifiers of a keycode.
39 var Modifiers = {
46 * char or not. This is restricted to A-Z and 0-9 (ignoring modifiers) at
139 * Returns whether the passed in |keyCode| require modifiers. Currently only
143 * @return {Modifiers} Returns whether the keycode require modifiers.
145 function modifiers(keyCode) {
151 return Modifiers.ARE_NOT_ALLOWED;
153 return Modifiers.ARE_REQUIRED;
159 * modifiers: "Ctrl", "Alt", "Cmd" on Mac, and "Shift" when th
    [all...]
  /external/llvm/docs/CommandGuide/
llvm-ar.rst 50 However, there are a few modifiers (*R*) that are not found in other ``ar``
52 perform on the archive, a variety of modifiers for that operation, the name of
56 The Operations and Modifiers are explained in the sections below. The minimal
70 Delete files from the archive. No modifiers are applicable to this operation.
80 *i* modifiers apply to this operation. The *files* will all be moved
81 to the location given by the modifiers. If no modifiers are used, the files
110 modifiers apply to this operation. This operation will replace existing
118 Print the table of contents. Without any modifiers, this operation just prints
138 Modifiers (operation specific
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
keybindingDialog.py 29 self.SetModifiersForPlatform() # set self.modifiers, self.modifier_label
31 for modifier in self.modifiers:
80 for modifier, variable in zip(self.modifiers, self.modifier_vars):
128 """Determine list of names of key modifiers for this platform.
137 self.modifiers = ['Shift', 'Control', 'Option', 'Command']
139 self.modifiers = ['Control', 'Alt', 'Shift']
161 keyList = modifiers = self.GetModifiers()
164 finalKey = self.TranslateKey(finalKey, modifiers)
194 def TranslateKey(self, key, modifiers):
208 if 'Shift' in modifiers and key in string.ascii_lowercase
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
keybindingDialog.py 29 self.SetModifiersForPlatform() # set self.modifiers, self.modifier_label
31 for modifier in self.modifiers:
80 for modifier, variable in zip(self.modifiers, self.modifier_vars):
128 """Determine list of names of key modifiers for this platform.
137 self.modifiers = ['Shift', 'Control', 'Option', 'Command']
139 self.modifiers = ['Control', 'Alt', 'Shift']
161 keyList = modifiers = self.GetModifiers()
164 finalKey = self.TranslateKey(finalKey, modifiers)
194 def TranslateKey(self, key, modifiers):
208 if 'Shift' in modifiers and key in string.ascii_lowercase
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
keycode_text_conversion_x.cc 181 ui::KeyboardCode key_code, int modifiers, std::string* text,
202 if (modifiers & kShiftKeyModifierMask)
204 if (modifiers & kControlKeyModifierMask)
207 // Make a best attempt for non-standard modifiers.
209 if (modifiers & kAltKeyModifierMask &&
213 if (modifiers & kMetaKeyModifierMask &&
217 if (modifiers & kNumLockKeyModifierMask &&
  /external/chromium_org/content/browser/renderer_host/
ime_adapter_android.cc 31 // type, |modifiers|, |time_ms|, |key_code|, |unicode_char| is used to create
38 int modifiers,
48 return NativeWebKeyboardEvent(java_key_event, type, modifiers,
100 0 /* modifiers */, time_ms / 1000.0, key_code,
108 int action, int modifiers,
112 env, original_key_event, action, modifiers,
124 NativeWebKeyboardEvent char_event(blink::WebInputEvent::Char, modifiers,
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ElementsPanelDescriptor.js 163 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Tab, WebInspector.KeyboardShortcut.Modifiers.Shift)
176 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Up, WebInspector.KeyboardShortcut.Modifiers.Shift)
181 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Down, WebInspector.KeyboardShortcut.Modifiers.Shift)
185 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.PageUp, WebInspector.KeyboardShortcut.Modifiers.Shift)
189 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.PageDown, WebInspector.KeyboardShortcut.Modifiers.Shift)
193 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.PageUp, WebInspector.KeyboardShortcut.Modifiers.Alt)
197 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.PageDown, WebInspector.KeyboardShortcut.Modifiers.Alt)
  /cts/tools/signature-tools/src/signature/model/impl/
SigClassDefinition.java 44 private Set<Modifier> modifiers = Uninitialized.unset(); field in class:SigClassDefinition
86 return modifiers;
89 public void setModifiers(Set<Modifier> modifiers) {
90 this.modifiers = modifiers;
  /external/chromium/chrome/browser/ui/cocoa/
nsmenuitem_additions.mm 30 // Menu item key equivalents are nearly all stored without modifiers. The
31 // exception is shift, which is included in the key and not in the modifiers
57 // Make sure "shift" is not removed from modifiers below.
65 // Make sure "shift" is not removed from modifiers below.
96 // Clear all non-interesting modifiers

Completed in 2379 milliseconds

1 2 3 4 56 7 8 91011>>