Home
last modified time | relevance | path

Searched refs:previous (Results 1 - 17 of 17) sorted by relevance

/foundation/communication/dhcp/services/dhcp_server/src/
H A Ddhcp_option.cpp44 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 Dfold_screen_state_internel.h78 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 Dkeyframe_animation.cpp105 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 Dproperty_animation.cpp44 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 Dtrack_animation.cpp159 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 Danimation_state.cpp268 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 Dproperty_animation.h48 void OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) override;
H A Dkeyframe_animation.h55 void OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) override;
H A Dintf_animation_internal.h56 AnimationTargetState previous; member
H A Dtrack_animation.h78 void OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) override;
H A Danimation.h420 virtual void OnPropertyChanged(const TargetProperty& property, const IStackProperty::Ptr& previous) = 0;
/foundation/graphic/graphic_2d/rosen/modules/effect/effectChain/src/
H A Dfilter.cpp49 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 Dfold_screen_state_machine.cpp66 auto previous = currState_; in TransitionTo() local
72 callback->OnTransitionExit(previous, currState_); in TransitionTo()
/foundation/ability/ability_base/interfaces/kits/native/uri/src/
H A Duri.cpp327 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 Dfold_screen_state_machine.h43 virtual void OnTransitionExit(FoldScreenState previous, FoldScreenState current) { } in OnTransitionExit() argument
/foundation/communication/dhcp/services/dhcp_server/include/
H A Ddhcp_option.h39 struct DhcpOptionNode *previous; member
/foundation/graphic/graphic_2d/rosen/modules/effect/effectChain/include/
H A Dfilter.h48 virtual void AddPreviousFilter(std::shared_ptr<Filter> previous);

Completed in 6 milliseconds