D | SuggestionSpan.java | 106 public SuggestionSpan(Context context, String[] suggestions, int flags) { in SuggestionSpan() argument 107 this(context, null, suggestions, flags, null); in SuggestionSpan() 115 public SuggestionSpan(Locale locale, String[] suggestions, int flags) { in SuggestionSpan() argument 116 this(null, locale, suggestions, flags, null); in SuggestionSpan() 128 public SuggestionSpan(Context context, Locale locale, String[] suggestions, int flags, in SuggestionSpan() argument 130 final int N = Math.min(SUGGESTIONS_MAX_SIZE, suggestions.length); in SuggestionSpan() 131 mSuggestions = Arrays.copyOf(suggestions, N); in SuggestionSpan() 283 private static int hashCodeInternal(String[] suggestions, String locale, in hashCodeInternal() argument 285 return Arrays.hashCode(new Object[] {Long.valueOf(SystemClock.uptimeMillis()), suggestions, in hashCodeInternal()
|