Searched refs:KeyMap (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/
H A Dkey_map.js23 goog.provide('cvox.KeyMap');
35 cvox.KeyMap = function(commandsAndKeySequences) {
60 cvox.KeyMap.KEYMAP_PATH = 'chromevox/background/keymaps/';
72 cvox.KeyMap.AVAILABLE_MAP_INFO = {
86 * The index of the default key map info in cvox.KeyMap.AVAIABLE_KEYMAP_INFO.
90 cvox.KeyMap.DEFAULT_KEYMAP = 0;
97 cvox.KeyMap.prototype.length = function() {
106 cvox.KeyMap.prototype.keys = function() {
122 cvox.KeyMap.prototype.bindings = function() {
128 * This method is called when cvox.KeyMap instance
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
H A Dprefs.js15 goog.require('cvox.KeyMap');
39 * @type {!cvox.KeyMap}
42 this.keyMap_ = cvox.KeyMap.fromLocalStorage() || cvox.KeyMap.fromDefaults();
43 this.keyMap_.merge(cvox.KeyMap.fromDefaults());
67 'currentKeyMap' : cvox.KeyMap.DEFAULT_KEYMAP,
106 * cvox.KeyMap.AVAIABLE_KEYMAP_INFO.
112 this.keyMap_ = cvox.KeyMap.fromCurrentKeyMap();
140 var currentKeyMap = cvox.KeyMap.fromLocalStorage();
142 currentKeyMap = cvox.KeyMap
[all...]
H A Doptions.js22 goog.require('cvox.KeyMap');
128 for (var id in cvox.KeyMap.AVAILABLE_MAP_INFO) {
129 var info = cvox.KeyMap.AVAILABLE_MAP_INFO[id];
/external/chromium_org/components/policy/core/common/
H A Dregistry_dict_win.h37 CaseInsensitiveStringCompare> KeyMap; typedef in class:policy::RegistryDict
79 const KeyMap& keys() const { return keys_; }
83 KeyMap keys_;
H A Dpreg_parser_win_unittest.cc24 RegistryDict::KeyMap::const_iterator iter_key_a(a.keys().begin());
25 RegistryDict::KeyMap::const_iterator iter_key_b(b.keys().begin());
H A Dregistry_dict_win.cc150 KeyMap::iterator entry = keys_.find(name);
155 KeyMap::const_iterator entry = keys_.find(name);
173 KeyMap::iterator entry = keys_.find(name);
222 for (KeyMap::const_iterator entry(other.keys_.begin());
309 for (RegistryDict::KeyMap::const_iterator entry(keys_.begin());
H A Dregistry_dict_win_unittest.cc110 RegistryDict::KeyMap::const_iterator entry = test_dict.keys().begin();
H A Dpolicy_loader_win.cc622 for (RegistryDict::KeyMap::const_iterator component(
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dkeyboard_handler.js10 goog.require('cvox.KeyMap');
24 * @type {cvox.KeyMap}
40 cvox.KeyMap.fromJSON(keyToFunctionsTable);
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_lowvideo.h74 KeyMap last_keys;
H A DSDL_macevents.c161 KeyMap keys;
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A DSDL_epocevents.cpp37 SDLKey* KeyMap() function
/external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
H A DSDL_main.cpp33 extern SDLKey* KeyMap();
898 return KeyMap()[aScanCode];
920 KeyMap()[aScanCode] = static_cast<SDLKey>(aSDLCode);
/external/chromium_org/chrome/third_party/chromevox/
H A DchromeVoxChromeOptionsScript.js47 c||(g=b?g+cvox.KeyUtil.getReadableNameForKeyCode(l):g+cvox.KeyUtil.keyCodeToString(l))}-1==d.indexOf(k)&&(g+=k+"+")}d+=g;"+"==d[d.length-1]&&(d=d.slice(0,-1))}a.cvoxModifier||a.prefixKey?d=""!=d?"Cvox+"+d:"Cvox":a.stickyMode&&(">"==d[d.length-1]&&(d=d.slice(0,-1)),d=d+"+"+d);return d};cvox.KeyUtil.isDoubleTapKey=function(a){var b=!1,c=a.doubleTap;a.doubleTap=!0;for(var d=0,e;e=cvox.KeySequence.doubleTapCache[d];d++)if(e.equals(a)){b=!0;break}a.doubleTap=c;return b};cvox.PlatformUtil={};cvox.PlatformFilter={NONE:0,WINDOWS:1,MAC:2,LINUX:4,WML:7,CHROMEOS:8,ANDROID:16};cvox.PlatformUtil.matchesPlatform=function(a){var b=navigator.userAgent;return void 0==a?!0:-1!=b.indexOf("Android")?0!=(a&cvox.PlatformFilter.ANDROID):-1!=b.indexOf("Win")?0!=(a&cvox.PlatformFilter.WINDOWS):-1!=b.indexOf("Mac")?0!=(a&cvox.PlatformFilter.MAC):-1!=b.indexOf("Linux")?0!=(a&cvox.PlatformFilter.LINUX):-1!=b.indexOf("CrOS")?0!=(a&cvox.PlatformFilter.CHROMEOS):!1};cvox.KeyMap=function(a){this.bindings_=a;this.commandToKey_={};this.buildCommandToKey_()};cvox.KeyMap.KEYMAP_PATH="chromevox/background/keymaps/";cvox.KeyMap.AVAILABLE_MAP_INFO={keymap_classic:{file:"classic_keymap.json"},keymap_flat:{file:"flat_keymap.json"},keymap_experimental:{file:"experimental.json"}};cvox.KeyMap.DEFAULT_KEYMAP=0;cvox.KeyMap.prototype.length=function(){return this.bindings_.length};cvox.KeyMap.prototype.keys=function(){return this.bindings_.map(function(a){return a.sequence})};
48 cvox.KeyMap.prototype.bindings=function(){return this.bindings_};cvox.KeyMap.prototype.toJSON=function(){return JSON.stringify({bindings:this.bindings_})};cvox.KeyMap.prototype.toLocalStorage=function(){localStorage.keyBindings=this.toJSON()};cvox.KeyMap
[all...]
H A DchromeVoxChromePageScript.js1434 document.body.appendChild(b)};cvox.KeyMap=function(a){this.bindings_=a;this.commandToKey_={};this.buildCommandToKey_()};cvox.KeyMap.KEYMAP_PATH="chromevox/background/keymaps/";cvox.KeyMap.AVAILABLE_MAP_INFO={keymap_classic:{file:"classic_keymap.json"},keymap_flat:{file:"flat_keymap.json"},keymap_experimental:{file:"experimental.json"}};cvox.KeyMap.DEFAULT_KEYMAP=0;cvox.KeyMap.prototype.length=function(){return this.bindings_.length};cvox.KeyMap.prototype.keys=function(){return this.bindings_.map(function(a){return a.sequence})};
1435 cvox.KeyMap.prototype.bindings=function(){return this.bindings_};cvox.KeyMap.prototype.toJSON=function(){return JSON.stringify({bindings:this.bindings_})};cvox.KeyMap.prototype.hasKey=function(a){for(var b=0;b<this.bindings_.length;b++){var c=this.bindings_[b];if(c.sequence.equals(a))return!0}return!1};cvox.KeyMap
[all...]
H A DchromeVoxChromeBackgroundScript.js1153 c||(g=b?g+cvox.KeyUtil.getReadableNameForKeyCode(l):g+cvox.KeyUtil.keyCodeToString(l))}-1==d.indexOf(k)&&(g+=k+"+")}d+=g;"+"==d[d.length-1]&&(d=d.slice(0,-1))}a.cvoxModifier||a.prefixKey?d=""!=d?"Cvox+"+d:"Cvox":a.stickyMode&&(">"==d[d.length-1]&&(d=d.slice(0,-1)),d=d+"+"+d);return d};cvox.KeyUtil.isDoubleTapKey=function(a){var b=!1,c=a.doubleTap;a.doubleTap=!0;for(var d=0,e;e=cvox.KeySequence.doubleTapCache[d];d++)if(e.equals(a)){b=!0;break}a.doubleTap=c;return b};cvox.KeyMap=function(a){this.bindings_=a;this.commandToKey_={};this.buildCommandToKey_()};cvox.KeyMap.KEYMAP_PATH="chromevox/background/keymaps/";cvox.KeyMap.AVAILABLE_MAP_INFO={keymap_classic:{file:"classic_keymap.json"},keymap_flat:{file:"flat_keymap.json"},keymap_experimental:{file:"experimental.json"}};cvox.KeyMap.DEFAULT_KEYMAP=0;cvox.KeyMap.prototype.length=function(){return this.bindings_.length};cvox.KeyMap.prototype.keys=function(){return this.bindings_.map(function(a){return a.sequence})};
1154 cvox.KeyMap.prototype.bindings=function(){return this.bindings_};cvox.KeyMap.prototype.toJSON=function(){return JSON.stringify({bindings:this.bindings_})};cvox.KeyMap.prototype.toLocalStorage=function(){localStorage.keyBindings=this.toJSON()};cvox.KeyMap
[all...]
/external/qemu/distrib/sdl-1.2.15/src/main/macos/
H A DSDL_main.c67 KeyMap theKeyMap;

Completed in 369 milliseconds