Home
last modified time | relevance | path

Searched refs:parentState (Results 1 – 7 of 7) sorted by relevance

/frameworks/av/media/libstagefright/foundation/
DAHierarchicalStateMachine.cpp29 AState::AState(const sp<AState> &parentState) in AState() argument
30 : mParentState(parentState) { in AState()
36 sp<AState> AState::parentState() { in parentState() function in android::AState
63 cur = cur->parentState(); in handleMessage()
87 cur = cur->parentState(); in changeState()
97 cur = cur->parentState(); in changeState()
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
DAHierarchicalStateMachine.h26 AState(const sp<AState> &parentState = NULL);
28 sp<AState> parentState();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationChildrenContainer.java565 public void getState(StackScrollState resultState, ExpandableViewState parentState,
613 ? parentState.zTranslation
615 childState.dimmed = parentState.dimmed;
616 childState.dark = parentState.dark;
617 childState.hideSensitive = parentState.hideSensitive;
618 childState.belowSpeedBump = parentState.belowSpeedBump;
627 childState.location = parentState.location;
628 childState.inShelf = parentState.inShelf;
667 ? parentState.zTranslation
/frameworks/support/lifecycle/runtime/src/main/java/androidx/lifecycle/
DLifecycleRegistry.java155 State parentState = !mParentStates.isEmpty() ? mParentStates.get(mParentStates.size() - 1) in calculateTargetState() local
157 return min(min(mState, siblingState), parentState); in calculateTargetState()
/frameworks/native/services/surfaceflinger/
DLayer.cpp590 auto& parentState = parent->getDrawingState(); in setGeometry() local
591 if (parentState.type >= 0 || parentState.appId >= 0) { in setGeometry()
592 type = parentState.type; in setGeometry()
593 appId = parentState.appId; in setGeometry()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DExpandableNotificationRow.java784 ExpandableViewState parentState = resultState.getViewStateForView(this);
785 mChildrenContainer.getState(resultState, parentState, ambientState);
/frameworks/av/media/libstagefright/
DACodec.cpp262 explicit BaseState(ACodec *codec, const sp<AState> &parentState = NULL);
5461 ACodec::BaseState::BaseState(ACodec *codec, const sp<AState> &parentState) in BaseState() argument
5462 : AState(parentState), in BaseState()