Searched refs:keyMaps (Results 1 – 6 of 6) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/ |
D | Keyboard.java | 19 private final ImmutableSortedSet<KeyMap> keyMaps; field in Keyboard 24 ImmutableSortedSet<KeyMap> keyMaps, ImmutableSortedSet<Transform> transforms) { in Keyboard() argument 27 this.keyMaps = checkNotNull(keyMaps); in Keyboard() 36 ImmutableSortedSet<KeyMap> keyMaps, ImmutableSortedSet<Transform> transforms) { in of() argument 37 return new Keyboard(keyboardId, names, keyMaps, transforms); in of() 48 public ImmutableSet<KeyMap> keyMaps() { in keyMaps() method in Keyboard 49 return keyMaps; in keyMaps() 57 for (KeyMap keyMap : keyMaps) { in getBaseMap() 77 && keyMaps.equals(other.keyMaps) && transforms.equals(other.transforms); in equals() 84 return Objects.hashCode(keyboardId, names, keyMaps, transforms); in hashCode() [all …]
|
D | KeyboardBuilder.java | 92 ImmutableSortedSet.Builder<KeyMap> keyMaps = ImmutableSortedSet.naturalOrder(); in build() local 96 keyMaps.add(KeyMap.of(combinationSet, characterMaps)); in build() 105 … keyboards.add(Keyboard.of(keyboardId, names.build(), keyMaps.build(), transforms.build())); in build()
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | Keyboard.java | 149 Fallback fallback, Set<KeyMap> keyMaps, Map<TransformType, Transforms> transforms) { in Keyboard() argument 155 this.keyMaps = Collections.unmodifiableSet(keyMaps); in Keyboard() 321 private final Set<KeyMap> keyMaps; field in Keyboard 345 return keyMaps; in getKeyMaps() 427 Set<KeyMap> keyMaps = new LinkedHashSet<>(); field in Keyboard.KeyboardHandler 446 … return new Keyboard(locale, version, platformVersion, names, fallback, keyMaps, transformMap); in getKeyboard() 536 for (KeyMap item : keyMaps) { in addToKeyMaps() 544 keyMaps.add(new KeyMap(keyMapModifiers, iso2output)); in addToKeyMaps()
|
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/osx/ |
D | KeylayoutParser.java | 191 NodeList keyMaps = keyMapSet.getElementsByTagName("keyMap"); in parseKeyMaps() local 192 for (int i = 0; i < keyMaps.getLength(); i++) { in parseKeyMaps() 193 Element keyMap = (Element) keyMaps.item(i); in parseKeyMaps()
|
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/out/ |
D | KeyboardToXml.java | 91 for (KeyMap keyMap : keyboard.keyMaps()) { in addKeyMaps()
|
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/test/ |
D | KeyboardTest.java | 93 assertEquals("", ImmutableSet.of(keyMap1, keyMap2), keyboard.keyMaps()); in testKeyMaps()
|