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

  /frameworks/base/core/java/com/android/internal/inputmethod/
LocaleUtils.java 117 private static final class ScoreEntry implements Comparable<ScoreEntry> {
121 ScoreEntry(@NonNull byte[] score, int index) {
170 public int compareTo(final ScoreEntry other) {
199 final HashMap<String, ScoreEntry> scoreboard = new HashMap<>();
212 final ScoreEntry bestScore = scoreboard.get(lang);
214 scoreboard.put(lang, new ScoreEntry(score, i));
220 final ScoreEntry[] result = scoreboard.values().toArray(new ScoreEntry[scoreboard.size()]);
222 for (final ScoreEntry entry : result)
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
OSUInfo.java 96 List<ScoreEntry<String>> scoreList = new ArrayList<>();
101 scoreList.add(new ScoreEntry<String>(name.getText(),
109 List<ScoreEntry<String>> scoreList = new ArrayList<>();
114 scoreList.add(new ScoreEntry<>(service.getText(),
162 private static class ScoreEntry<T> implements Comparable<ScoreEntry> {
166 private ScoreEntry(T data, int score) {
176 public int compareTo(ScoreEntry other) {
188 List<ScoreEntry<IconInfo>> matches = new ArrayList<>();
209 matches.add(new ScoreEntry<>(iconInfo, score))
    [all...]
  /frameworks/base/
compiled-classes-phone     [all...]

Completed in 466 milliseconds