Home
last modified time | relevance | path

Searched refs:SimpleParcelableWithoutNestedCreator (Results 1 – 1 of 1) sorted by relevance

/cts/tests/tests/os/src/android/os/cts/
DParcelTest.java4698 public static class SimpleParcelableWithoutNestedCreator implements Parcelable { class in ParcelTest
4701 public SimpleParcelableWithoutNestedCreator(int value) { in SimpleParcelableWithoutNestedCreator() method in ParcelTest.SimpleParcelableWithoutNestedCreator
4705 private SimpleParcelableWithoutNestedCreator(Parcel in) { in SimpleParcelableWithoutNestedCreator() method in ParcelTest.SimpleParcelableWithoutNestedCreator
4723 public static Parcelable.Creator<SimpleParcelableWithoutNestedCreator> CREATOR =
4728 Parcelable.Creator<SimpleParcelableWithoutNestedCreator> {
4730 public SimpleParcelableWithoutNestedCreator createFromParcel(Parcel source) { in createFromParcel()
4731 return new SimpleParcelableWithoutNestedCreator(source); in createFromParcel()
4735 public SimpleParcelableWithoutNestedCreator[] newArray(int size) { in newArray()
4736 return new SimpleParcelableWithoutNestedCreator[size]; in newArray()
4743 p.writeParcelable(new SimpleParcelableWithoutNestedCreator(1), 0); in testReadParcelableWithoutNestedCreator()
[all …]