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

  /external/sepolicy/tools/
insertkeys.py 117 keyMap = dict()
134 if tag in keyMap:
140 keyMap[tag] = GenerateKeys(path)
146 assert len(keyMap[tag]) == 1
148 return keyMap
162 def __init__(self, keyMap, out=sys.stdout):
165 self._keyMap = keyMap
  /external/deqp/scripts/build/
config.py 105 keyMap = {
111 if not self.version in keyMap:
114 keys = keyMap[self.version]
  /frameworks/native/include/input/
Keyboard.h 44 class KeyMap {
52 KeyMap();
53 ~KeyMap();
83 const PropertyMap* deviceConfiguration, const KeyMap* keyMap);
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
results_unittests.js 252 var keyMap = {
330 var result = keyMap[/[^/]+_Builder/.exec(url)][/\d+/.exec(url)];
364 var keyMap = {
386 var result = keyMap[/[^/]+_Builder/.exec(url)][/\d+/.exec(url)];
  /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...]
  /frameworks/native/services/inputflinger/
EventHub.cpp 348 if (device && !device->isVirtual() && device->keyMap.haveKeyLayout()) {
350 device->keyMap.keyLayoutMap->findScanCodesForKey(keyCode, &scanCodes);
411 if (device && device->keyMap.haveKeyLayout()) {
416 status_t err = device->keyMap.keyLayoutMap->findScanCodesForKey(
450 if (device->keyMap.haveKeyLayout()) {
451 if (!device->keyMap.keyLayoutMap->mapKey(
467 if (device && device->keyMap.haveKeyLayout()) {
468 status_t err = device->keyMap.keyLayoutMap->mapAxis(scanCode, outAxisInfo);
557 device->keyMap.keyCharacterMap, map);
    [all...]
EventHub.h 345 KeyMap keyMap;
369 return keyMap.keyCharacterMap;