Home
last modified time | relevance | path

Searched refs:pendingAction (Results 1 – 2 of 2) sorted by relevance

/frameworks/support/design/src/android/support/design/widget/
DAppBarLayout.java1028 final int pendingAction = abl.getPendingAction();
1029 if (mOffsetToChildIndexOnLayout >= 0 && (pendingAction & PENDING_ACTION_FORCE) == 0) {
1038 } else if (pendingAction != PENDING_ACTION_NONE) {
1039 final boolean animate = (pendingAction & PENDING_ACTION_ANIMATE_ENABLED) != 0;
1040 if ((pendingAction & PENDING_ACTION_COLLAPSED) != 0) {
1047 } else if ((pendingAction & PENDING_ACTION_EXPANDED) != 0) {
/frameworks/base/graphics/java/android/graphics/drawable/
DAnimatedVectorDrawable.java1777 int pendingAction = mPendingAnimationActions.get(i); in transferPendingActions() local
1778 if (pendingAction == START_ANIMATION) { in transferPendingActions()
1780 } else if (pendingAction == END_ANIMATION) { in transferPendingActions()
1782 } else if (pendingAction == REVERSE_ANIMATION) { in transferPendingActions()
1784 } else if (pendingAction == RESET_ANIMATION) { in transferPendingActions()
1788 pendingAction + "is not supported"); in transferPendingActions()