Home
last modified time | relevance | path

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

/cts/tests/tests/media/src/android/media/cts/
DMediaSession2Test.java195 final CustomParcelable customParcelable = new CustomParcelable(1); in testBuilder_setExtras_withCustomParcelable()
801 static class CustomParcelable implements Parcelable { class in MediaSession2Test
804 public CustomParcelable(int value) { in CustomParcelable() method in MediaSession2Test.CustomParcelable
818 public static final Parcelable.Creator<CustomParcelable> CREATOR =
819 new Parcelable.Creator<CustomParcelable>() {
821 public CustomParcelable createFromParcel(Parcel in) {
823 return new CustomParcelable(value);
827 public CustomParcelable[] newArray(int size) {
828 return new CustomParcelable[size];
DMediaController2Test.java236 final MediaSession2Test.CustomParcelable customParcelable = in testBuilder_setConnectionHints_withCustomParcelable()
237 new MediaSession2Test.CustomParcelable(1); in testBuilder_setConnectionHints_withCustomParcelable()
DMediaSessionTest.java814 final MediaSession2Test.CustomParcelable customParcelable = in testSessionInfoWithCustomParcelable()
815 new MediaSession2Test.CustomParcelable(1); in testSessionInfoWithCustomParcelable()