Searched refs:mSuggestions (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/textservice/
H A DSuggestionsInfo.java49 private final String[] mSuggestions; field in class:SuggestionsInfo
73 mSuggestions = EMPTY;
76 mSuggestions = suggestions;
86 mSuggestions = source.readStringArray();
101 dest.writeStringArray(mSuggestions);
151 return mSuggestions.length;
159 return mSuggestions[i];
/frameworks/base/core/java/android/text/style/
H A DSuggestionSpan.java88 private final String[] mSuggestions; field in class:SuggestionSpan
141 mSuggestions = Arrays.copyOf(suggestions, N);
167 mHashCode = hashCodeInternal(mSuggestions, mLanguageTag, mLocaleStringForCompatibility,
210 mSuggestions = src.readStringArray();
229 return mSuggestions;
291 dest.writeStringArray(mSuggestions);
401 if (mSuggestions == null || index < 0 || index >= mSuggestions.length) {
403 + " length=" + mSuggestions.length);
413 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, mSuggestions[inde
[all...]

Completed in 87 milliseconds