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

1 2

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
KeyboardLayoutTest.java 51 ArrayList<Key> sortedKeys = new ArrayList<>(2);
52 sortedKeys.add(key1);
53 sortedKeys.add(key2);
54 keyboardLayout = KeyboardLayout.newKeyboardLayout(sortedKeys, 11, 12, 13, 14);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
KeyboardAccessibilityNodeProvider.java 106 final List<Key> sortedKeys = mKeyboard.getSortedKeys();
108 if (virtualViewId >= 0 && virtualViewId < sortedKeys.size()) {
109 return sortedKeys.get(virtualViewId);
118 final List<Key> sortedKeys = mKeyboard.getSortedKeys();
119 final int size = sortedKeys.size();
121 if (sortedKeys.get(index) == key) {
208 final List<Key> sortedKeys = mKeyboard.getSortedKeys();
209 final int size = sortedKeys.size();
211 final Key key = sortedKeys.get(index);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardLayout.java 109 public static KeyboardLayout newKeyboardLayout(@Nonnull final List<Key> sortedKeys,
113 for (final Key key : sortedKeys) {
ProximityInfo.java 63 @Nonnull final List<Key> sortedKeys,
74 mSortedKeys = sortedKeys;
148 final List<Key> sortedKeys = mSortedKeys;
149 final int keyCount = getProximityInfoKeysCount(sortedKeys);
159 for (int infoIndex = 0, keyIndex = 0; keyIndex < sortedKeys.size(); keyIndex++) {
160 final Key key = sortedKeys.get(keyIndex);
183 for (int infoIndex = 0, keyIndex = 0; keyIndex < sortedKeys.size(); keyIndex++) {
184 final Key key = sortedKeys.get(keyIndex);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
GlobalLintConfiguration.java 133 List<Issue> sortedKeys = new ArrayList<Issue>(severities.keySet());
134 Collections.sort(sortedKeys);
137 for (Issue issue : sortedKeys) {
  /external/autotest/frontend/client/src/autotest/tko/
TestDetailView.java 154 List<String> sortedKeys = new ArrayList<String>(attributes.keySet());
155 Collections.sort(sortedKeys);
156 for (String key : sortedKeys) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ActualKeyboardBuilder.java 51 * @param sortedKeys keys list of the actual keyboard that is sorted from top-left to
55 public static Key[][] buildKeyboard(final List<Key> sortedKeys) {
57 final ArrayList<Key> filteredSortedKeys = filterOutSpacer(sortedKeys);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
EmojiCategory.java 381 final Key[][] sortedKeys = sortKeysIntoPages(
383 for (int pageId = 0; pageId < sortedKeys.length; ++pageId) {
387 for (final Key emojiKey : sortedKeys[pageId]) {
  /prebuilts/go/darwin-x86/src/go/doc/
doc.go 103 Imports: sortedKeys(r.imports),
reader.go 715 func sortedKeys(m map[string]int) []string {
  /prebuilts/go/linux-x86/src/go/doc/
doc.go 103 Imports: sortedKeys(r.imports),
reader.go 715 func sortedKeys(m map[string]int) []string {
  /build/soong/android/
util.go 48 func sortedKeys(m map[string][]string) []string {
module.go     [all...]
  /packages/services/Telephony/src/com/android/phone/
CarrierConfigLoader.java     [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONObject.java     [all...]
  /external/robolectric/v1/lib/main/
json-20080701.jar 
  /external/robolectric/v3/runtime/
json-20080701.jar 
  /prebuilts/tools/common/m2/repository/org/json/json/20080701/
json-20080701.jar 
  /external/v8/src/js/
array.js     [all...]
  /build/soong/androidmk/cmd/androidmk/
android.go 309 func sortedMapKeys(inputMap map[string]string) (sortedKeys []string) {
  /prebuilts/devtools/tools/lib/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
org.eclipse.jface_3.6.2.M20110210-1200.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
org-eclipse-jface-3.6.2.jar 

Completed in 409 milliseconds

1 2