HomeSort by relevance Sort by last modified time
    Searched full:ctrl (Results 451 - 475 of 1577) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_hippi.h 145 __u8 ctrl; /* always 0x03 */ member in struct:hippi_snap_hdr
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
snd_wavefront.h 105 struct pnp_dev *ctrl; member in struct:_snd_wavefront_card
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_hippi.h 145 __u8 ctrl; /* always 0x03 */ member in struct:hippi_snap_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
snd_wavefront.h 105 struct pnp_dev *ctrl; member in struct:_snd_wavefront_card
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/sgi/
pi1.h 26 volatile u8 ctrl; member in struct:pi1_regs
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/sgi/
pi1.h 26 volatile u8 ctrl; member in struct:pi1_regs
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/sgi/
pi1.h 26 volatile u8 ctrl; member in struct:pi1_regs
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/sgi/
pi1.h 26 volatile u8 ctrl; member in struct:pi1_regs
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/sgi/
pi1.h 26 volatile u8 ctrl; member in struct:pi1_regs
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
ascii.py 77 def ctrl(c): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
ascii.py 77 def ctrl(c): function
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/
command.js 33 case 'ctrl':
118 * "U+0041-Ctrl" for Control A
  /external/chromium_org/chrome/browser/extensions/
extension_view_host.cc 112 // Handle lower priority browser shortcuts such as Ctrl-f.
202 // Handle higher priority browser shortcuts such as Ctrl-w.
  /external/chromium_org/chrome/browser/ui/ash/
event_rewriter.h 178 // * Ctrl+Alt+Up -> Home
179 // * Ctrl+Alt+Down -> End
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxKbExplorerScript.js 23 cvox.ChromeVox.isMac=-1!=navigator.platform.indexOf("Mac");cvox.ChromeVox.modKeyStr=cvox.ChromeVox.isChromeOS?"Shift+Search":cvox.ChromeVox.isMac?"Ctrl+Cmd":"Ctrl+Meta";cvox.ChromeVox.sequenceSwitchKeyCodes=[];cvox.ChromeVox.visitedUrls={};cvox.ChromeVox.markInUserCommand=function(){};cvox.ChromeVox.syncToNode=function(){};cvox.ChromeVox.speakNode=function(){};cvox.ChromeVox.executeUserCommand=function(){};cvox.ChromeVox.entireDocumentIsHidden=!1;
27 cvox.KeySequence.prototype.rationalizeKeys_=function(){if(!this.skipStripping){var a=cvox.ChromeVox.modKeyStr.split(/\+/g),b=this.keys.keyCode.length-1;-1!=a.indexOf("Ctrl")&&(this.keys.ctrlKey[b]=!1);-1!=a.indexOf("Alt")&&(this.keys.altKey[b]=!1);-1!=a.indexOf("Shift")&&(this.keys.shiftKey[b]=!1);var c=this.getMetaKeyName_();if(-1!=a.indexOf(c))if("Search"==c)this.keys.searchKeyHeld[b]=!1;else if("Cmd"==c||"Win"==c)this.keys.metaKey[b]=!1}};
29 cvox.KeySequence.prototype.isCVoxModifierActive=function(a){var b=cvox.ChromeVox.modKeyStr.split(/\+/g);this.isKeyModifierActive(a,"ctrlKey")&&(b=b.filter(function(a){return"Ctrl"!=a}));this.isKeyModifierActive(a,"altKey")&&(b=b.filter(function(a){return"Alt"!=a}));this.isKeyModifierActive(a,"shiftKey")&&(b=b.filter(function(a){return"Shift"!=a}));if(this.isKeyModifierActive(a,"metaKey")||this.isKeyModifierActive(a,"searchKeyHeld"))var c=this.getMetaKeyName_(),b=b.filter(function(a){return a!=c});
33 e);d&&b.addKeyEvent(c);return b};cvox.KeySequence.setModifiersOnEvent_=function(a,b){"Ctrl"==a?(b.ctrlKey=!0,b.keyCode=17):"Alt"==a?(b.altKey=!0,b.keyCode=18):"Shift"==a?(b.shiftKey=!0,b.keyCode=16):"Search"==a?(b.searchKeyHeld=!0,b.keyCode=91):"Cmd"==a?(b.metaKey=!0,b.keyCode=91):"Win"==a?(b.metaKey=!0,b.keyCode=91):"Insert"==a&&(b.keyCode=45)};
38 cvox.KeyUtil.keyCodeToString=function(a){return 17==a?"Ctrl":18==a?"Alt":16==a?"Shift":91==a||93==a?cvox.ChromeVox.isChromeOS?"Search":cvox.ChromeVox.isMac?"Cmd":"Win":45==a?"Insert":65<=a&&90>=a?String.fromCharCode(a):48<=a&&57>=a?String.fromCharCode(a):"#"+a};cvox.KeyUtil.modStringToKeyCode=function(a){switch(a){case "Ctrl":return 17;case "Alt":return 18;case "Shift":return 16;case "Cmd":case "Win":return 91}return-1};
44 cvox.KeyUtil.keySequenceToString=function(a,b,c){for(var d="",e=a.length(),h=0;h<e;h++){""==d||c?""!=d&&(d+="+"):d+=">";var f="",g;for(g in a.keys)if(a.keys[g][h]){var k="";switch(g){case "ctrlKey":k="Ctrl";break;case "searchKeyHeld":k=cvox.KeyUtil.getReadableNameForKeyCode(91);break;case "altKey":k="Alt";break;case "altGraphKey":k="AltGraph";break;case "shiftKey":k="Shift";break;case "metaKey":k=cvox.KeyUtil.getReadableNameForKeyCode(91);break;case "keyCode":var l=a.keys[g][h];a.isModifierKey(l)||
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
evp_err.c 176 {ERR_REASON(EVP_R_CTRL_NOT_IMPLEMENTED) ,"ctrl not implemented"},
177 {ERR_REASON(EVP_R_CTRL_OPERATION_NOT_IMPLEMENTED),"ctrl operation not implemented"},
  /external/chromium_org/ui/views/controls/
message_box_view.cc 153 // We only accepts Ctrl-C.
156 // We must not intercept Ctrl-C when we have a text box and it's focused.
  /external/chromium_org/ui/webui/resources/js/cr/ui/
list_selection_controller.js 129 // On Windows, we only clear the selection if neither Shift nor Ctrl are
205 // Ctrl/Meta+A
menu_item.js 147 case 'CTRL':
167 ['CTRL', 'ALT', 'SHIFT', 'META'].forEach(function(mod) {
  /external/openssl/crypto/evp/
evp_err.c 167 {ERR_REASON(EVP_R_CTRL_NOT_IMPLEMENTED) ,"ctrl not implemented"},
168 {ERR_REASON(EVP_R_CTRL_OPERATION_NOT_IMPLEMENTED),"ctrl operation not implemented"},
  /external/chromium_org/tools/gen_keyboard_overlay_data/
gen_keyboard_overlay_data.py 228 'Ctrl - 9' => '9<>CTRL'
229 'Ctrl - Shift - Tab' => 'tab<>CTRL<>SHIFT'
233 if value in ['Shift', 'Ctrl', 'Alt', 'Search'])
235 if value not in ['Shift', 'Ctrl', 'Alt', 'Search']]
  /external/bluetooth/bluedroid/btif/src/
btif_media_task.c 160 * CONGESTION COMPENSATION CTRL ::
363 ** A2DP CTRL PATH
422 /* detach on ctrl channel means audioflinger process was terminated */
425 APPL_TRACE_EVENT0("CTRL CH DETACHED");
428 do send additional commands the ctrl channel would be reestablished */
433 APPL_TRACE_DEBUG1("a2dp-ctrl-cmd : %s", dump_a2dp_ctrl_event(cmd));
515 APPL_TRACE_DEBUG1("a2dp-ctrl-cmd : %s DONE", dump_a2dp_ctrl_event(cmd));
520 APPL_TRACE_DEBUG1("A2DP-CTRL-CHANNEL EVENT %s", dump_uipc_event(event));
530 /* restart ctrl server unless we are shutting down */
540 APPL_TRACE_ERROR1("### A2DP-CTRL-CHANNEL EVENT %d NOT HANDLED ###", event)
    [all...]
  /frameworks/base/docs/html/tools/help/
emulator.jd 79 <td>KEYPAD_PLUS, Ctrl-F5</td>
84 <td>KEYPAD_MINUS, Ctrl-F6</td>
88 <td>Ctrl-KEYPAD_5, Ctrl-F3</td>
92 <td>KEYPAD_7, Ctrl-F11</td>
96 <td>KEYPAD_9, Ctrl-F12</td>
264 Pressing Ctrl-c from the shell stops the emulator instead of the shell.</td>
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_browsertest.cc 382 // Try ctrl-w to close a Tab.
386 // Try ctrl-l to focus location bar.
398 // Try ctrl-x to cut text.
430 // Try ctrl-w to close the popup.
549 // Test ctrl-Enter.
553 // ctrl-Enter triggers desired_tld feature, thus www.bar.com shall be
    [all...]
  /external/chromium/chrome/browser/
browser_focus_uitest.cc 312 // Try the above, but with ctrl+tab. Since tab normally changes focus,
323 // As above, but with ctrl+shift+tab.
740 // Press Ctrl+F, which will make the Find box open and request focus.
759 // Now press Ctrl+F again and focus should move to the Find box.
773 // Now press Ctrl+F again and focus should move to the Find box.
    [all...]

Completed in 368 milliseconds

<<11121314151617181920>>