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

/frameworks/base/core/java/android/content/pm/
H A DParceledListSlice.java31 public class ParceledListSlice<T extends Parcelable> implements Parcelable { class in inherits:Parcelable
44 public ParceledListSlice() { method in class:ParceledListSlice
48 private ParceledListSlice(Parcel p, int numItems, boolean lastSlice) { method in class:ParceledListSlice
89 throw new IllegalStateException("ParceledListSlice has already been recycled");
100 * ParceledListSlice in the process. The instance should
142 public static final Parcelable.Creator<ParceledListSlice> CREATOR =
143 new Parcelable.Creator<ParceledListSlice>() {
144 public ParceledListSlice createFromParcel(Parcel in) {
160 return new ParceledListSlice(p, numItems, lastSlice);
162 return new ParceledListSlice();
[all...]

Completed in 350 milliseconds