/foundation/communication/dhcp/services/dhcp_server/src/ |
H A D | dhcp_option.cpp | 44 pNode->previous = pNode->next = 0; in CreateOptionNode() 79 pOptions->first->previous = nullptr; in InitOptionList() 104 pNode->previous = pOptions->last; in PushBackOption() 128 pNode->previous = pOptions->first; in PushFrontOption() 133 pNode->next->previous = pNode; in PushFrontOption() 134 pNode->previous = pOptions->first; in PushFrontOption() 155 pOptions->last = pNode->previous; in RemoveOption() 158 pNode->next->previous = pNode->previous; in RemoveOption() 159 pNode->previous in RemoveOption() [all...] |
/foundation/window/window_manager/window_scene/common/include/ |
H A D | fold_screen_state_internel.h | 78 std::size_t previous = 0; in StringSplit() local 82 if (current > previous) { in StringSplit() 83 elems.push_back(str.substr(previous, current - previous)); in StringSplit() 85 previous = current + 1; in StringSplit() 86 current = str.find(delim, previous); in StringSplit() 88 if (previous != str.size()) { in StringSplit() 89 elems.push_back(str.substr(previous)); in StringSplit()
|
/foundation/graphic/graphic_3d/lume/metaobject/src/animation/ |
H A D | keyframe_animation.cpp | 105 void KeyframeAnimation::OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) in OnPropertyChanged() argument 108 if (previous) { in OnPropertyChanged() 109 previous->RemoveModifier(me); in OnPropertyChanged() 110 if (auto p = interface_cast<IProperty>(previous)) { in OnPropertyChanged()
|
H A D | property_animation.cpp | 44 void PropertyAnimation::OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) in OnPropertyChanged() argument 47 if (previous) { in OnPropertyChanged() 48 previous->RemoveModifier(me); in OnPropertyChanged()
|
H A D | track_animation.cpp | 159 void TrackAnimation::OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) in OnPropertyChanged() argument 161 if (previous && GetState().IsRunning()) { in OnPropertyChanged() 162 // Property changed while running, clean up previous property's stack in OnPropertyChanged() 163 RemoveModifier(previous); in OnPropertyChanged() 164 if (auto p = interface_cast<IProperty>(previous)) { in OnPropertyChanged()
|
H A D | animation_state.cpp | 268 const auto previous = state_.animationState_; in SetState() local 269 if (previous == state) { in SetState() 276 if (previous != AnimationTargetState::PAUSED) { in SetState() 279 if (previous == AnimationTargetState::FINISHED) { in SetState() 304 info.previous = previous; in SetState()
|
H A D | property_animation.h | 48 void OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) override;
|
H A D | keyframe_animation.h | 55 void OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) override;
|
H A D | intf_animation_internal.h | 56 AnimationTargetState previous; member
|
H A D | track_animation.h | 78 void OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) override;
|
H A D | animation.h | 420 virtual void OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) = 0;
|
/foundation/graphic/graphic_2d/rosen/modules/effect/effectChain/src/ |
H A D | filter.cpp | 49 void Filter::AddPreviousFilter(std::shared_ptr<Filter> previous)
in AddPreviousFilter() argument 52 previous_ = previous;
in AddPreviousFilter()
|
/foundation/window/window_manager/window_scene/screen_session_manager/src/fold_screen_controller/ |
H A D | fold_screen_state_machine.cpp | 66 auto previous = currState_; in TransitionTo() local 72 callback->OnTransitionExit(previous, currState_); in TransitionTo()
|
/foundation/ability/ability_base/interfaces/kits/native/uri/src/ |
H A D | uri.cpp | 327 size_t previous = 0; in GetPathSegments() local 329 while ((current = path_.find(LEFT_SEPARATOR, previous)) != std::string::npos) { in GetPathSegments() 330 if (previous < current) { in GetPathSegments() 331 segments.emplace_back(path_.substr(previous, current - previous)); in GetPathSegments() 333 previous = current + POS_INC; in GetPathSegments() 336 if (previous < path_.length()) { in GetPathSegments() 337 segments.emplace_back(path_.substr(previous)); in GetPathSegments()
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/fold_screen_controller/ |
H A D | fold_screen_state_machine.h | 43 virtual void OnTransitionExit(FoldScreenState previous, FoldScreenState current) { } in OnTransitionExit() argument
|
/foundation/communication/dhcp/services/dhcp_server/include/ |
H A D | dhcp_option.h | 39 struct DhcpOptionNode *previous; member
|
/foundation/graphic/graphic_2d/rosen/modules/effect/effectChain/include/ |
H A D | filter.h | 48 virtual void AddPreviousFilter(std::shared_ptr<Filter> previous);
|