Searched refs:CustomParcelable (Results 1 – 6 of 6) sorted by relevance
22 public class CustomParcelable implements Parcelable { class25 CustomParcelable() { in CustomParcelable() method in CustomParcelable38 public static final Creator<CustomParcelable> CREATOR =39 new Creator<CustomParcelable>() {41 public CustomParcelable createFromParcel(Parcel in) {42 return new CustomParcelable();46 public CustomParcelable[] newArray(int size) {47 return new CustomParcelable[size];
47 Parcelable parcelable = new CustomParcelable(); in testPocCVE_2022_20452()
93 CustomParcelable.sDeserialized = false; in tearDown()553 mBundle.putParcelable(KEY1, new CustomParcelable(42, "don't panic")); in testGetParcelableTypeSafe_withMismatchingType_returnsNull()556 assertFalse(CustomParcelable.sDeserialized); in testGetParcelableTypeSafe_withMismatchingType_returnsNull()561 final CustomParcelable original = new CustomParcelable(42, "don't panic"); in testGetParcelableTypeSafe_withMatchingType_returnsObject()564 assertEquals(original, mBundle.getParcelable(KEY1, CustomParcelable.class)); in testGetParcelableTypeSafe_withMatchingType_returnsObject()569 final CustomParcelable original = new CustomParcelable(42, "don't panic"); in testGetParcelableTypeSafe_withBaseType_returnsObject()597 mBundle.putParcelableArray(KEY1, new CustomParcelable[] { in testGetParcelableArrayTypeSafe_withMismatchingType_returnsNull()598 new CustomParcelable(42, "don't panic") in testGetParcelableArrayTypeSafe_withMismatchingType_returnsNull()602 assertFalse(CustomParcelable.sDeserialized); in testGetParcelableArrayTypeSafe_withMismatchingType_returnsNull()607 final CustomParcelable[] original = new CustomParcelable[] { in testGetParcelableArrayTypeSafe_withMatchingType_returnsObject()[all …]
184 final CustomParcelable customParcelable = new CustomParcelable(1); in testBuilder_setExtras_withCustomParcelable()789 /* package */ static class CustomParcelable implements Parcelable { class in MediaSession2Test792 /* package */ CustomParcelable(int value) { in CustomParcelable() method in MediaSession2Test.CustomParcelable806 public static final Parcelable.Creator<CustomParcelable> CREATOR =807 new Parcelable.Creator<CustomParcelable>() {809 public CustomParcelable createFromParcel(Parcel in) {811 return new CustomParcelable(value);815 public CustomParcelable[] newArray(int size) {816 return new CustomParcelable[size];
225 final MediaSession2Test.CustomParcelable customParcelable = in testBuilder_setConnectionHints_withCustomParcelable()226 new MediaSession2Test.CustomParcelable(1); in testBuilder_setConnectionHints_withCustomParcelable()
991 final MediaSession2Test.CustomParcelable customParcelable = in testSessionInfoWithCustomParcelable()992 new MediaSession2Test.CustomParcelable(1); in testSessionInfoWithCustomParcelable()