Home | History | Annotate | Download | only in textservice

Lines Matching defs:SuggestionsInfo

27 public final class SuggestionsInfo implements Parcelable {
59 public SuggestionsInfo(int suggestionsAttributes, String[] suggestions) {
79 public SuggestionsInfo(
93 public SuggestionsInfo(Parcel source) {
117 * Set the cookie and the sequence of SuggestionsInfo which are set to TextInfo from a client
174 public static final Parcelable.Creator<SuggestionsInfo> CREATOR
175 = new Parcelable.Creator<SuggestionsInfo>() {
177 public SuggestionsInfo createFromParcel(Parcel source) {
178 return new SuggestionsInfo(source);
182 public SuggestionsInfo[] newArray(int size) {
183 return new SuggestionsInfo[size];