Home | History | Annotate | Download | only in os

Lines Matching refs:Parcel

21  * and restored from a {@link Parcel}.  Classes implementing the Parcelable
36 * public void writeToParcel(Parcel out, int flags) {
42 * public MyParcelable createFromParcel(Parcel in) {
51 * private MyParcelable(Parcel in) {
84 * Flatten this object in to a Parcel.
86 * @param dest The Parcel in which the object should be written.
90 public void writeToParcel(Parcel dest, int flags);
94 * field that generates instances of your Parcelable class from a Parcel.
99 * from the given Parcel whose data had previously been written by
102 * @param source The Parcel to read the object's data from.
105 public T createFromParcel(Parcel source);
124 * from the given Parcel whose data had previously been written by
128 * @param source The Parcel to read the object's data from.
132 public T createFromParcel(Parcel source, ClassLoader loader);