Home
last modified time | relevance | path

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

/frameworks/support/v4/java/android/support/v4/app/
DBackStackRecord.java30 final int mTransition; field in BackStackState
72 mTransition = bse.mTransition; in BackStackState()
84 mTransition = in.readInt(); in BackStackState()
120 bse.mTransition = mTransition; in instantiate()
139 dest.writeInt(mTransition); in writeToParcel()
198 int mTransition; field in BackStackRecord
215 if (mTransition != FragmentTransaction.TRANSIT_NONE) { in dump()
217 writer.print(Integer.toHexString(mTransition)); in dump()
445 mTransition = transition; in setTransition()
582 mManager.removeFragment(old, mTransition, mTransitionStyle); in run()
[all …]
/frameworks/base/core/java/android/app/
DBackStackRecord.java30 final int mTransition; field in BackStackState
72 mTransition = bse.mTransition; in BackStackState()
84 mTransition = in.readInt(); in BackStackState()
120 bse.mTransition = mTransition; in instantiate()
139 dest.writeInt(mTransition); in writeToParcel()
198 int mTransition; field in BackStackRecord
215 if (mTransition != FragmentTransaction.TRANSIT_NONE) { in dump()
217 writer.print(Integer.toHexString(mTransition)); in dump()
445 mTransition = transition; in setTransition()
582 mManager.removeFragment(old, mTransition, mTransitionStyle); in run()
[all …]
/frameworks/base/media/libstagefright/omx/
DSimpleSoftOMXComponent.cpp456 CHECK_EQ((int)port->mTransition, (int)PortInfo::NONE); in onPortEnable()
461 port->mTransition = PortInfo::DISABLING; in onPortEnable()
480 port->mTransition = PortInfo::ENABLING; in onPortEnable()
503 CHECK_EQ((int)port->mTransition, (int)PortInfo::NONE); in onPortFlush()
590 if (port->mTransition == PortInfo::DISABLING) { in checkTransitions()
594 port->mTransition = PortInfo::NONE; in checkTransitions()
599 } else if (port->mTransition == PortInfo::ENABLING) { in checkTransitions()
603 port->mTransition = PortInfo::NONE; in checkTransitions()
619 info->mTransition = PortInfo::NONE; in addPort()
/frameworks/base/core/java/android/view/
DViewGroup.java358 private LayoutTransition mTransition; field in ViewGroup
898 if (mTransition != null) { in onChildVisibilityChanged()
900 mTransition.showChild(this, child); in onChildVisibilityChanged()
902 mTransition.hideChild(this, child); in onChildVisibilityChanged()
3337 if (mTransition != null) { in addViewInner()
3340 mTransition.cancel(LayoutTransition.DISAPPEARING); in addViewInner()
3348 if (mTransition != null) { in addViewInner()
3349 mTransition.addChild(this, child); in addViewInner()
3574 if (mTransition != null) { in removeViewInternal()
3575 mTransition.removeChild(this, view); in removeViewInternal()
[all …]
/frameworks/base/media/libstagefright/include/
DSimpleSoftOMXComponent.h58 } mTransition; member