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) {
70 public SuggestionsInfo(
84 public SuggestionsInfo(Parcel source) {
108 * Set the cookie and the sequence of SuggestionsInfo which are set to TextInfo from a client
165 public static final Parcelable.Creator<SuggestionsInfo> CREATOR
166 = new Parcelable.Creator<SuggestionsInfo>() {
168 public SuggestionsInfo createFromParcel(Parcel source) {
169 return new SuggestionsInfo(source);
173 public SuggestionsInfo[] newArray(int size) {
174 return new SuggestionsInfo[size];