Searched defs:FillEventHistory (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/service/autofill/
H A DFillEventHistory.java51 public final class FillEventHistory implements Parcelable { class in inherits:Parcelable
115 public FillEventHistory(int serviceUid, int sessionId, @Nullable Bundle clientState) { method in class:FillEventHistory
215 public static final Parcelable.Creator<FillEventHistory> CREATOR =
216 new Parcelable.Creator<FillEventHistory>() {
218 public FillEventHistory createFromParcel(Parcel parcel) {
219 FillEventHistory selection = new FillEventHistory(0, 0, parcel.readBundle());
230 public FillEventHistory[] newArray(int size) {
231 return new FillEventHistory[size];

Completed in 54 milliseconds