Home | History | Annotate | Download | only in autofill

Lines Matching defs:parcel

27 import android.os.Parcel;
197 public void writeToParcel(Parcel parcel, int flags) {
198 parcel.writeInt(mType);
202 parcel.writeCharSequence((CharSequence) mValue);
205 parcel.writeInt((Boolean) mValue ? 1 : 0);
208 parcel.writeInt((Integer) mValue);
211 parcel.writeLong((Long) mValue);
216 private AutofillValue(@NonNull Parcel parcel) {
217 mType = parcel.readInt();
221 mValue = parcel.readCharSequence();
224 int rawValue = parcel.readInt();
228 mValue = parcel.readInt();
231 mValue = parcel.readLong();
241 public AutofillValue createFromParcel(Parcel source) {