HomeSort by relevance Sort by last modified time
    Searched refs:altGraphKey (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/events/
KeyboardEvent.h 74 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
77 ctrlKey, altKey, shiftKey, metaKey, altGraphKey));
84 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey = false);
91 bool altGraphKey() const { return m_altGraphKey; }
111 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey);
KeyboardEvent.idl 37 readonly attribute boolean altGraphKey;
52 [Default=Undefined] optional boolean altGraphKey);
KeyboardEvent.cpp 130 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
134 , m_altGraphKey(altGraphKey)
146 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
159 m_altGraphKey = altGraphKey;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElementWin.cpp 41 || ((event->altGraphKey() || event->altKey()) && (event->keyIdentifier() == "Down" || event->keyIdentifier() == "Up"));
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
key_sequence_test.js 27 * @param {{altGraphKey: boolean=,
35 * altGraphKey: Whether or not the altGraph key was held down.
52 if (eventParams.hasOwnProperty('altGraphKey')) {
53 mockEvent.altGraphKey = eventParams.altGraphKey;
167 assertEqualsJSON([false], downKey.keys.altGraphKey);
187 assertEqualsJSON([false], downKey.keys.altGraphKey);
207 assertEqualsJSON([false], cvoxDownKey.keys.altGraphKey);
434 'searchKeyHeld': [false], 'altKey': [false], 'altGraphKey': [false],
441 'searchKeyHeld': [false], 'altKey': [false], 'altGraphKey': [false]
    [all...]
key_util.js 443 case 'altGraphKey':
key_sequence.js 86 altGraphKey: [],
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxKbExplorerScript.js 25 cvox.ChromeVox.entireDocumentIsHidden=!1;cvox.ChromeVox.storeOn=function(a){a.isStickyPrefOn=cvox.ChromeVox.isStickyPrefOn;cvox.ChromeVox.navigationManager.storeOn(a)};cvox.ChromeVox.readFrom=function(a){cvox.ChromeVox.isStickyPrefOn=a.isStickyPrefOn;cvox.ChromeVox.navigationManager.readFrom(a)};cvox.ChromeVox.isStickyModeOn=function(){return null!==cvox.ChromeVox.stickyOverride?cvox.ChromeVox.stickyOverride:cvox.ChromeVox.isStickyPrefOn};cvox.KeySequence=function(a,b,c,d){this.doubleTap=!!d;this.cvoxModifier=void 0==b?this.isCVoxModifierActive(a):b;this.stickyMode=!!a.stickyMode;this.prefixKey=!!a.keyPrefix;this.skipStripping=!!c;if(this.stickyMode&&this.prefixKey)throw"Prefix key and sticky mode cannot both be enabled: "+a;a=this.resolveChromeOSSpecialKeys_(a);this.keys={ctrlKey:[],searchKeyHeld:[],altKey:[],altGraphKey:[],shiftKey:[],metaKey:[],keyCode:[]};this.extractKey_(a)};
45 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)||
chromeVoxChromeBackgroundScript.js     [all...]
chromeVoxChromeOptionsScript.js 25 cvox.ChromeVox.entireDocumentIsHidden=!1;cvox.ChromeVox.storeOn=function(a){a.isStickyPrefOn=cvox.ChromeVox.isStickyPrefOn;cvox.ChromeVox.navigationManager.storeOn(a)};cvox.ChromeVox.readFrom=function(a){cvox.ChromeVox.isStickyPrefOn=a.isStickyPrefOn;cvox.ChromeVox.navigationManager.readFrom(a)};cvox.ChromeVox.isStickyModeOn=function(){return null!==cvox.ChromeVox.stickyOverride?cvox.ChromeVox.stickyOverride:cvox.ChromeVox.isStickyPrefOn};cvox.KeySequence=function(a,b,c,d){this.doubleTap=!!d;this.cvoxModifier=void 0==b?this.isCVoxModifierActive(a):b;this.stickyMode=!!a.stickyMode;this.prefixKey=!!a.keyPrefix;this.skipStripping=!!c;if(this.stickyMode&&this.prefixKey)throw"Prefix key and sticky mode cannot both be enabled: "+a;a=this.resolveChromeOSSpecialKeys_(a);this.keys={ctrlKey:[],searchKeyHeld:[],altKey:[],altGraphKey:[],shiftKey:[],metaKey:[],keyCode:[]};this.extractKey_(a)};
46 cvox.KeyUtil.keySequenceToString=function(a,b,c){for(var d="",e=a.length(),f=0;f<e;f++){""==d||c?""!=d&&(d+="+"):d+=">";var g="",h;for(h in a.keys)if(a.keys[h][f]){var k="";switch(h){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[h][f];a.isModifierKey(l)||
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp     [all...]

Completed in 851 milliseconds