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

<<11121314151617181920>>

  /external/chromium_org/content/test/
mock_keyboard_driver_win.cc 122 bool MockKeyboardDriverWin::SetModifiers(int modifiers) {
145 if (modifiers & kModifierMasks[i].mask)
  /external/iproute2/include/linux/
netlink.h 57 /* Modifiers to GET request */
63 /* Modifiers to NEW request */
  /external/javassist/src/main/javassist/bytecode/
ClassFilePrinter.java 42 /* 0x0020 (SYNCHRONIZED) means ACC_SUPER if the modifiers
49 + " modifiers: " + Integer.toHexString(cf.getAccessFlags()));
  /external/kernel-headers/original/linux/
gfp.h 13 /* Zone modifiers in GFP_ZONEMASK (see linux/mmzone.h - low three bits) */
25 * Action modifiers - doesn't change the zoning
  /external/qemu/distrib/sdl-1.2.15/docs/html/
sdlkeysym.html 161 >Current key modifiers</TD
240 > stores the current state of the keyboard modifiers as explained in <A
  /frameworks/compile/mclinker/lib/LD/
Diagnostic.cpp 131 llvm::Twine("\nNo modifiers for strings yet\n"));
142 llvm::Twine("\nNo modifiers for strings yet\n"));
  /ndk/sources/host-tools/sed-4.2.1/sed/
regexp.c 38 "cannot specify modifiers on empty regexp";
42 #define END_ERRORS (BAD_MODIF + sizeof(N_("cannot specify modifiers on empty regexp")))
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/config/
user.hpp 85 // (this macro is used to turn on __declspec(dllimport) modifiers, so that
98 // modifiers, so that the compiler knows which symbols to look for in a dll
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
netlink.h 56 /* Modifiers to GET request */
62 /* Modifiers to NEW request */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
netlink.h 56 /* Modifiers to GET request */
62 /* Modifiers to NEW request */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
netlink.h 56 /* Modifiers to GET request */
62 /* Modifiers to NEW request */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
MiniAEFrame.py 69 what, message, when, where, modifiers = event
82 if modifiers & cmdKey:
  /external/chromium/chrome/browser/ui/cocoa/
browser_window_cocoa.mm 466 NSUInteger modifiers = [event.os_event modifierFlags];
467 const bool cmdKey = (modifiers & NSCommandKeyMask) != 0;
468 const bool shiftKey = (modifiers & NSShiftKeyMask) != 0;
469 const bool cntrlKey = (modifiers & NSControlKeyMask) != 0;
470 const bool optKey = (modifiers & NSAlternateKeyMask) != 0;
  /external/chromium_org/ui/views/focus/
focus_manager.cc 58 int modifiers = ui::EF_NONE; local
60 modifiers |= ui::EF_SHIFT_DOWN;
62 modifiers |= ui::EF_CONTROL_DOWN;
64 modifiers |= ui::EF_ALT_DOWN;
65 ui::Accelerator accelerator(event.key_code(), modifiers);
  /frameworks/base/core/java/android/view/
KeyEvent.java 45 * Meta states describe the pressed state of key modifiers
    [all...]
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_views.cc 78 int modifiers = 0; local
81 modifiers |= WebKit::WebInputEvent::ShiftKey;
83 modifiers |= WebKit::WebInputEvent::ControlKey;
85 modifiers |= WebKit::WebInputEvent::AltKey;
87 modifiers |= WebKit::WebInputEvent::CapsLockOn;
89 return modifiers;
138 wmevent->modifiers = WebInputEventFlagsFromViewsEvent(event);
926 wmevent.modifiers |= WebKit::WebInputEvent::MiddleButtonDown;
930 wmevent.modifiers |= WebKit::WebInputEvent::RightButtonDown;
934 wmevent.modifiers |= WebKit::WebInputEvent::LeftButtonDown
    [all...]
  /external/chromium_org/ppapi/api/
ppb_input_event.idl 184 * bit. Retrieve the modifiers from an input event using the GetEventModifiers
448 * GetModifiers() returns a bitfield indicating which modifiers were down
455 * @return The modifiers associated with the event, or 0 if the given
482 * @param[in] modifiers A bit field combination of the
497 [in] uint32_t modifiers,
517 * @param[in] modifiers A bit field combination of the
535 [in] uint32_t modifiers,
616 * @param[in] modifiers A bit field combination of the
632 [in] uint32_t modifiers,
732 * @param[in] modifiers A bit field combination of th
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
x86id.c 39 /* Opcode modifiers. */
250 /* Opcode modifiers for variations of instruction. As each modifier reads
254 * only be a maximum of 3 modifiers.
256 unsigned char modifiers[3]; member in struct:x86_insn_info
465 /* Apply modifiers */
466 for (i=0; i<NELEMS(info->modifiers); i++) {
467 switch (info->modifiers[i]) {
548 for (i=0; i<NELEMS(jinfo->modifiers); i++) {
549 if (jinfo->modifiers[i] == MOD_AdSizeR)
583 for (i=0; i<NELEMS(info->modifiers); i++)
    [all...]
  /docs/source.android.com/src/devices/tech/input/
key-character-map-files.jd 20 of Android key codes with modifiers to Unicode characters.</p>
148 <p><code>base</code>: Specifies the behavior (character that should be typed) when no modifiers
154 specified modifiers are active.</p>
158 when the both RIGHT SHIFT and RIGHT ALT modifiers are pressed together.</p>
161 <p>The following modifiers are recognized in modifier properties:</p>
255 the combination of that key press and the currently pressed modifiers.</p>
269 a key, no matter what modifiers are pressed. It essentially specifies the default
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SourceFrame.js 60 this.addShortcut(WebInspector.KeyboardShortcut.makeKey("s", WebInspector.KeyboardShortcut.Modifiers.CtrlOrMeta), this._commitEditing.bind(this));
68 * @param {string=} modifiers
71 WebInspector.SourceFrame.createSearchRegex = function(query, modifiers)
74 modifiers = modifiers || "";
79 regex = new RegExp(query.substring(1, query.length - 1), modifiers);
88 regex = createPlainTextSearchRegex(query, "i" + modifiers);
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 73 Options(cl::Positional, cl::Required, cl::desc("{operation}[modifiers]..."));
81 // modifiers of llvm-ar. This object instructs the CommandLine library
111 Move, ///< Move members to end or as given by {a,b,i} modifiers
119 // Modifiers to follow operation to vary behavior
151 // the [relpos] argument associated with a, b, and i modifiers
175 // operation specified. Process all modifiers and check to make sure that
183 // Keep track of the number of positional modifiers (a,b,i). Only
254 show_help("You may only specify one of a, b, and i modifiers");
257 show_help("The 'a', 'b' and 'i' modifiers can only be specified with "
  /external/proguard/src/proguard/
ConfigurationParser.java 429 // Read the keep modifiers.
438 // Not a comma. Stop parsing the keep modifiers.
508 // Clear the class access modifiers.
512 // Parse the class annotations and access modifiers until the class keyword.
532 // Parse the class access modifiers.
576 throw new ParseException("Conflicting class access modifiers for '" + strippedWord +
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_browsertest.cc 179 int modifiers) {
182 (modifiers & ui::EF_CONTROL_DOWN) != 0,
183 (modifiers & ui::EF_SHIFT_DOWN) != 0,
184 (modifiers & ui::EF_ALT_DOWN) != 0,
185 (modifiers & ui::EF_COMMAND_DOWN) != 0));
188 void SendKey(ui::KeyboardCode key, int modifiers) {
189 SendKeyForBrowser(browser(), key, modifiers); local
199 int modifiers,
204 (modifiers & ui::EF_CONTROL_DOWN) != 0,
205 (modifiers & ui::EF_SHIFT_DOWN) != 0
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
web_dialog_window_controller.mm 267 // presence of other modifiers (as long as it's not an app-level
268 // shortcut, e.g. Commmand-Esc for Front Row) but no other modifiers
276 event.modifiers == NativeWebKeyboardEvent::MetaKey))) {
  /external/chromium_org/content/renderer/
render_view_browsertest.cc 77 // Converts MockKeyboard::Modifiers to ui::EventFlags.
78 int ConvertMockKeyboardModifier(MockKeyboard::Modifiers modifiers) {
80 MockKeyboard::Modifiers src;
92 if (kModifierMap[i].src & modifiers) {
146 MockKeyboard::Modifiers modifiers,
150 // key-code, and modifiers).
156 int length = mock_keyboard_->GetCharacters(layout, key_code, modifiers,
199 const int flags = ConvertMockKeyboardModifier(modifiers);
1230 MockKeyboard::Modifiers modifiers; member in struct:content::__anon8244
1266 MockKeyboard::Modifiers modifiers = kModifierData[j].modifiers; local
1513 MockKeyboard::Modifiers modifiers = kModifiers[j]; local
    [all...]

Completed in 2396 milliseconds

<<11121314151617181920>>