Home | History | Annotate | Download | only in view

Lines Matching refs:hasTransientState

5953     public boolean hasTransientState() {
5968 * @param hasTransientState true if this view has transient state
5970 public void setHasTransientState(boolean hasTransientState) {
5971 mTransientStateCount = hasTransientState ? mTransientStateCount + 1 :
5975 Log.e(VIEW_LOG_TAG, "hasTransientState decremented below 0: " +
5978 if ((hasTransientState && mTransientStateCount == 1) ||
5979 (!hasTransientState && mTransientStateCount == 0)) {
5982 (hasTransientState ? PFLAG2_HAS_TRANSIENT_STATE : 0);
5985 mParent.childHasTransientStateChanged(this, hasTransientState);