HomeSort by relevance Sort by last modified time
    Searched refs:KeyMap (Results 1 - 25 of 27) sorted by null

1 2

  /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/av/drm/mediadrm/plugins/clearkey/tests/
JsonWebKeyUnittest.cpp 53 void verifyKeys(const KeyMap& keys, const String8* clearKeys) {
76 KeyMap keys;
98 KeyMap keys;
120 KeyMap keys;
145 KeyMap keys;
183 KeyMap keys;
193 KeyMap keys;
212 KeyMap keys;
241 KeyMap keys;
272 KeyMap keys
    [all...]
  /frameworks/native/include/input/
Keyboard.h 44 class KeyMap {
52 KeyMap();
53 ~KeyMap();
83 const PropertyMap* deviceConfiguration, const KeyMap* keyMap);
  /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;
Session.cpp 48 KeyMap keys;
54 const KeyMap::key_type& keyId = keys.keyAt(i);
55 const KeyMap::value_type& key = keys.valueAt(i);
JsonWebKey.h 41 KeyMap* keys);
Session.h 59 KeyMap mKeyMap;
JsonWebKey.cpp 46 * Parses a JSON Web Key Set string, initializes a KeyMap with key id:key
48 * encoded. The KeyMap contains base64url decoded key id:key pairs.
53 KeyMap* keys) {
  /external/chromium_org/components/policy/core/common/
registry_dict_win.h 37 CaseInsensitiveStringCompare> KeyMap;
79 const KeyMap& keys() const { return keys_; }
83 KeyMap keys_;
preg_parser_win_unittest.cc 24 RegistryDict::KeyMap::const_iterator iter_key_a(a.keys().begin());
25 RegistryDict::KeyMap::const_iterator iter_key_b(b.keys().begin());
registry_dict_win.cc 150 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());
registry_dict_win_unittest.cc 110 RegistryDict::KeyMap::const_iterator entry = test_dict.keys().begin();
policy_loader_win.cc 622 for (RegistryDict::KeyMap::const_iterator component(
  /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/chrome/browser/resources/chromeos/chromevox/chromevox/background/
prefs.js 15 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,
92 * overridden by the old keymap in local storage.
105 * @param {string} selectedKeyMap The id of the keymap in
106 * cvox.KeyMap.AVAIABLE_KEYMAP_INFO.
112 this.keyMap_ = cvox.KeyMap.fromCurrentKeyMap()
    [all...]
options.js 22 goog.require('cvox.KeyMap');
124 * Populate the keymap select element with stored keymaps
128 for (var id in cvox.KeyMap.AVAILABLE_MAP_INFO) {
129 var info = cvox.KeyMap.AVAILABLE_MAP_INFO[id];
149 var keyMap = cvox.OptionsPage.prefs.getKeyMap();
213 var keySeqObj = keyMap.keyForCommand(command)[0];
  /external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
SDL_lowvideo.h 74 KeyMap last_keys;
SDL_macevents.c 161 KeyMap keys;
592 * for its own keymap to adjust our own mapping table. However, this is
659 static Ptr keymap = nil; local
664 if ( new_keymap != keymap ) {
665 keymap = new_keymap;
668 keysym->unicode = KeyTranslate(keymap,
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
keyboard_handler.js 10 goog.require('cvox.KeyMap');
24 * @type {cvox.KeyMap}
40 cvox.KeyMap.fromJSON(keyToFunctionsTable);
  /frameworks/av/media/libstagefright/
StagefrightMediaScanner.cpp 170 struct KeyMap {
174 static const KeyMap kKeyMap[] = {
  /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/native/services/inputflinger/
EventHub.h 345 KeyMap keyMap;
369 return keyMap.keyCharacterMap;
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
SDL_main.cpp 33 extern SDLKey* KeyMap();
898 return KeyMap()[aScanCode];
920 KeyMap()[aScanCode] = static_cast<SDLKey>(aSDLCode);
  /external/qemu/distrib/sdl-1.2.15/src/main/macos/
SDL_main.c 67 KeyMap theKeyMap;

Completed in 429 milliseconds

1 2