Home
last modified time | relevance | path

Searched refs:parentState (Results 1 – 5 of 5) 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/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.java248 public void getState(StackScrollState resultState, StackViewState parentState) {
268 childState.dimmed = parentState.dimmed;
269 childState.dark = parentState.dark;
270 childState.hideSensitive = parentState.hideSensitive;
271 childState.belowSpeedBump = parentState.belowSpeedBump;
272 childState.scale = parentState.scale;
275 childState.location = parentState.location;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DExpandableNotificationRow.java239 StackViewState parentState = resultState.getViewStateForView(this); in getChildrenStates() local
240 mChildrenContainer.getState(resultState, parentState); in getChildrenStates()
/frameworks/av/media/libstagefright/
DACodec.cpp216 BaseState(ACodec *codec, const sp<AState> &parentState = NULL);
4520 ACodec::BaseState::BaseState(ACodec *codec, const sp<AState> &parentState) in BaseState() argument
4521 : AState(parentState), in BaseState()