Home | History | Annotate | Download | only in view

Lines Matching defs:superState

41      * @param superState The state of the superclass of this view
43 protected AbsSavedState(Parcelable superState) {
44 if (superState == null) {
45 throw new IllegalArgumentException("superState must not be null");
47 mSuperState = superState != EMPTY_STATE ? superState : null;
57 Parcelable superState = source.readParcelable(null);
59 mSuperState = superState != null ? superState : EMPTY_STATE;
78 Parcelable superState = in.readParcelable(null);
79 if (superState != null) {
80 throw new IllegalStateException("superState must be null");