Home
last modified time | relevance | path

Searched refs:KeyMap (Results 1 – 13 of 13) sorted by relevance

/external/skia/tools/viewer/
DImGuiLayer.cpp31 io.KeyMap[ImGuiKey_Tab] = (int)Window::Key::kTab; in ImGuiLayer()
32 io.KeyMap[ImGuiKey_LeftArrow] = (int)Window::Key::kLeft; in ImGuiLayer()
33 io.KeyMap[ImGuiKey_RightArrow] = (int)Window::Key::kRight; in ImGuiLayer()
34 io.KeyMap[ImGuiKey_UpArrow] = (int)Window::Key::kUp; in ImGuiLayer()
35 io.KeyMap[ImGuiKey_DownArrow] = (int)Window::Key::kDown; in ImGuiLayer()
36 io.KeyMap[ImGuiKey_PageUp] = (int)Window::Key::kPageUp; in ImGuiLayer()
37 io.KeyMap[ImGuiKey_PageDown] = (int)Window::Key::kPageDown; in ImGuiLayer()
38 io.KeyMap[ImGuiKey_Home] = (int)Window::Key::kHome; in ImGuiLayer()
39 io.KeyMap[ImGuiKey_End] = (int)Window::Key::kEnd; in ImGuiLayer()
40 io.KeyMap[ImGuiKey_Delete] = (int)Window::Key::kDelete; in ImGuiLayer()
[all …]
/external/skqp/tools/viewer/
DImGuiLayer.cpp29 io.KeyMap[ImGuiKey_Tab] = (int)Window::Key::kTab; in ImGuiLayer()
30 io.KeyMap[ImGuiKey_LeftArrow] = (int)Window::Key::kLeft; in ImGuiLayer()
31 io.KeyMap[ImGuiKey_RightArrow] = (int)Window::Key::kRight; in ImGuiLayer()
32 io.KeyMap[ImGuiKey_UpArrow] = (int)Window::Key::kUp; in ImGuiLayer()
33 io.KeyMap[ImGuiKey_DownArrow] = (int)Window::Key::kDown; in ImGuiLayer()
34 io.KeyMap[ImGuiKey_PageUp] = (int)Window::Key::kPageUp; in ImGuiLayer()
35 io.KeyMap[ImGuiKey_PageDown] = (int)Window::Key::kPageDown; in ImGuiLayer()
36 io.KeyMap[ImGuiKey_Home] = (int)Window::Key::kHome; in ImGuiLayer()
37 io.KeyMap[ImGuiKey_End] = (int)Window::Key::kEnd; in ImGuiLayer()
38 io.KeyMap[ImGuiKey_Delete] = (int)Window::Key::kDelete; in ImGuiLayer()
[all …]
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/
DKeyMap.java25 public final class KeyMap implements Comparable<KeyMap> { class
29 private KeyMap(ModifierKeyCombinationSet modifierKeyCombinationSet, in KeyMap() method in KeyMap
36 public static KeyMap of(ModifierKeyCombinationSet modifierKeyCombinationSet, in of()
38 return new KeyMap(modifierKeyCombinationSet, ImmutableSortedMap.copyOf(Maps.uniqueIndex( in of()
63 if (o instanceof KeyMap) { in equals()
64 KeyMap other = (KeyMap) o; in equals()
77 public int compareTo(KeyMap o) { in compareTo()
DKeyboard.java19 private final ImmutableSortedSet<KeyMap> keyMaps;
21 private volatile KeyMap baseMap;
24 ImmutableSortedSet<KeyMap> keyMaps, ImmutableSortedSet<Transform> transforms) { in Keyboard()
36 ImmutableSortedSet<KeyMap> keyMaps, ImmutableSortedSet<Transform> transforms) { in of()
48 public ImmutableSet<KeyMap> keyMaps() { in keyMaps()
52 public KeyMap baseMap() { in baseMap()
56 private KeyMap getBaseMap() { in getBaseMap()
57 for (KeyMap keyMap : keyMaps) { in getBaseMap()
DKeyboardBuilder.java92 ImmutableSortedSet.Builder<KeyMap> keyMaps = ImmutableSortedSet.naturalOrder(); in build()
96 keyMaps.add(KeyMap.of(combinationSet, characterMaps)); in build()
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/test/
DKeyMapTest.java7 import org.unicode.cldr.draft.keyboard.KeyMap;
18 private KeyMap keyMap = createKeyMap();
20 private static KeyMap createKeyMap() { in createKeyMap()
29 return KeyMap.of(combinationSet, ImmutableSet.of(characterMap1, characterMap2)); in createKeyMap()
57KeyMap keyMapTest = KeyMap.of(combinationSet, ImmutableSet.of(characterMap1, characterMap2)); in testEqualsFalse()
71KeyMap keyMapTest = KeyMap.of(combinationSet, ImmutableSet.of(characterMap1, characterMap2)); in testEqualsTrue()
79 KeyMap keyMapTest = KeyMap.of(combinationSet, ImmutableSet.<CharacterMap> of()); in testCompareToGreater()
86 KeyMap keyMapTest = KeyMap.of(combinationSet, ImmutableSet.<CharacterMap> of()); in testCompareToLess()
96 KeyMap keyMapTest = KeyMap.of(combinationSet, ImmutableSet.<CharacterMap> of()); in testCompareTo_equals()
DKeyboardTest.java7 import org.unicode.cldr.draft.keyboard.KeyMap;
33 KeyMap keyMap1 = KeyMap.of(combinationSet1, in createKeyboard()
46 KeyMap keyMap2 = KeyMap.of(combinationSet2, in createKeyboard()
77 KeyMap keyMap1 = KeyMap.of(combinationSet1, in testKeyMaps()
90 KeyMap keyMap2 = KeyMap.of(combinationSet2, in testKeyMaps()
112 KeyMap keyMap1 = KeyMap.of(combinationSet1, in testEqualsTrue()
124 KeyMap keyMap2 = KeyMap.of(combinationSet2, in testEqualsTrue()
148 KeyMap keyMap1 = KeyMap.of(combinationSet1, ImmutableSet.of(characterMap1, characterMap2)); in testEqualsFalse()
/external/cldr/tools/java/org/unicode/cldr/draft/
DKeyboard.java149 Fallback fallback, Set<KeyMap> keyMaps, Map<TransformType, Transforms> transforms) { in Keyboard()
273 public static class KeyMap { class in Keyboard
277 public KeyMap(KeyboardModifierSet keyMapModifiers, Map<Iso, Output> data) { in KeyMap() method in Keyboard.KeyMap
319 private final Set<KeyMap> keyMaps;
342 public Set<KeyMap> getKeyMaps() { in getKeyMaps()
356 for (KeyMap keymap : getKeyMaps()) { in getPossibleResults()
425 Set<KeyMap> keyMaps = new LinkedHashSet<KeyMap>();
537 for (KeyMap item : keyMaps) { in addToKeyMaps()
545 keyMaps.add(new KeyMap(keyMapModifiers, iso2output)); in addToKeyMaps()
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/out/
DKeyboardToXml.java9 import org.unicode.cldr.draft.keyboard.KeyMap;
91 for (KeyMap keyMap : keyboard.keyMaps()) { in addKeyMaps()
144 KeyMap baseMap = keyboard.baseMap(); in buildReadabilityComment()
/external/boringssl/src/crypto/evp/
Devp_test.cc143 using KeyMap = std::map<std::string, bssl::UniquePtr<EVP_PKEY>>; typedef
145 static bool ImportKey(FileTest *t, KeyMap *key_map, in ImportKey()
236 static bool TestEVP(FileTest *t, KeyMap *key_map) { in TestEVP()
406 KeyMap key_map; in TEST()
/external/python/cpython2/Mac/Modules/evt/
Devtsupport.py31 KeyMap = ArrayOutputBufferType("KeyMap") variable
D_Evtmodule.c102 KeyMap theKeys__out__; in Evt_GetKeys()
110 (char *)&theKeys__out__, (int)sizeof(KeyMap)); in Evt_GetKeys()
/external/cldr/tools/java/org/unicode/cldr/tool/
DShowKeyboards.java22 import org.unicode.cldr.draft.Keyboard.KeyMap;
150 for (KeyMap keymap : keyboard.getKeyMaps()) { in showRepertoire()
282 for (KeyMap map : keyboard.getKeyMaps()) { in showHtml()