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

  /external/cldr/tools/java/org/unicode/cldr/draft/keyboard/
Keyboard.java 19 private final ImmutableSortedSet<KeyMap> keyMaps;
24 ImmutableSortedSet<KeyMap> keyMaps, ImmutableSortedSet<Transform> transforms) {
27 this.keyMaps = checkNotNull(keyMaps);
36 ImmutableSortedSet<KeyMap> keyMaps, ImmutableSortedSet<Transform> transforms) {
37 return new Keyboard(keyboardId, names, keyMaps, transforms);
48 public ImmutableSet<KeyMap> keyMaps() {
49 return keyMaps;
57 for (KeyMap keyMap : keyMaps) {
77 && keyMaps.equals(other.keyMaps) && transforms.equals(other.transforms)
    [all...]
KeyboardBuilder.java 92 ImmutableSortedSet.Builder<KeyMap> keyMaps = ImmutableSortedSet.naturalOrder();
96 keyMaps.add(KeyMap.of(combinationSet, characterMaps));
105 keyboards.add(Keyboard.of(keyboardId, names.build(), keyMaps.build(), transforms.build()));
  /external/cldr/tools/java/org/unicode/cldr/draft/
Keyboard.java 149 Fallback fallback, Set<KeyMap> keyMaps, Map<TransformType, Transforms> transforms) {
155 this.keyMaps = Collections.unmodifiableSet(keyMaps);
319 private final Set<KeyMap> keyMaps;
343 return keyMaps;
425 Set<KeyMap> keyMaps = new LinkedHashSet<KeyMap>();
447 return new Keyboard(locale, version, platformVersion, names, fallback, keyMaps, transformMap);
537 for (KeyMap item : keyMaps) {
545 keyMaps.add(new KeyMap(keyMapModifiers, iso2output));
  /external/cldr/tools/java/org/unicode/cldr/draft/keyboard/osx/
KeylayoutParser.java 191 NodeList keyMaps = keyMapSet.getElementsByTagName("keyMap");
192 for (int i = 0; i < keyMaps.getLength(); i++) {
193 Element keyMap = (Element) keyMaps.item(i);
  /external/cldr/tools/java/org/unicode/cldr/draft/keyboard/out/
KeyboardToXml.java 91 for (KeyMap keyMap : keyboard.keyMaps()) {
  /external/cldr/tools/java/org/unicode/cldr/draft/keyboard/test/
KeyboardTest.java 93 assertEquals("", ImmutableSet.of(keyMap1, keyMap2), keyboard.keyMaps());

Completed in 735 milliseconds