HomeSort by relevance Sort by last modified time
    Searched defs:KeyMap (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/
key_map.js 12 * A caller is responsible for providing a JSON keymap (a simple Object key
23 goog.provide('cvox.KeyMap');
35 cvox.KeyMap = function(commandsAndKeySequences) {
56 * Path to dir containing ChromeVox keymap json definitions.
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;
94 * The number of mappings in the keymap.
97 cvox.KeyMap.prototype.length = function()
    [all...]
  /frameworks/av/drm/mediadrm/plugins/clearkey/
ClearKeyTypes.h 34 android::Vector<uint8_t> > KeyMap;
  /frameworks/native/libs/input/
Keyboard.cpp 33 // --- KeyMap ---
35 KeyMap::KeyMap() {
38 KeyMap::~KeyMap() {
41 status_t KeyMap::load(const InputDeviceIdentifier& deviceIdenfifier,
95 bool KeyMap::probeKeyMap(const InputDeviceIdentifier& deviceIdentifier,
106 status_t KeyMap::loadKeyLayout(const InputDeviceIdentifier& deviceIdentifier,
123 status_t KeyMap::loadKeyCharacterMap(const InputDeviceIdentifier& deviceIdentifier,
141 String8 KeyMap::getPath(const InputDeviceIdentifier& deviceIdentifier
    [all...]
  /external/chromium_org/components/policy/core/common/
registry_dict_win.h 37 CaseInsensitiveStringCompare> KeyMap;
79 const KeyMap& keys() const { return keys_; }
83 KeyMap keys_;
  /frameworks/compile/mclinker/include/mcld/Support/
UniqueGCFactory.h 28 typedef std::map<KeyType, DataType*> KeyMap;
44 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
51 typename KeyMap::const_iterator dataIter = f_KeyMap.find(pKey);
58 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
71 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
84 KeyMap f_KeyMap;
  /frameworks/native/include/input/
Keyboard.h 44 class KeyMap {
52 KeyMap();
53 ~KeyMap();
83 const PropertyMap* deviceConfiguration, const KeyMap* keyMap);
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
SDL_epocevents.cpp 32 static SDLKey keymap[MAX_SCANCODE]; variable
37 SDLKey* KeyMap()
39 return keymap;
49 for ( i=0; i<SDL_TABLESIZE(keymap); ++i )
50 keymap[i] = SDLK_UNKNOWN;
55 keymap[' ' + i] = (SDLKey)(SDLK_SPACE+i);
59 keymap['A' + i] = (SDLKey)(SDLK_a+i);
62 keymap[EStdKeyBackspace] = SDLK_BACKSPACE;
63 keymap[EStdKeyTab] = SDLK_TAB;
64 keymap[EStdKeyEnter] = SDLK_RETURN
    [all...]
  /frameworks/av/media/libstagefright/
StagefrightMediaScanner.cpp 170 struct KeyMap {
174 static const KeyMap kKeyMap[] = {
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeOptionsScript.js 47 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.prototype.hasCommand=function(a){if(null!=this.commandToKey_)return void 0!=this.commandToKey_[a]; (…)
    [all...]

Completed in 364 milliseconds