Home
last modified time | relevance | path

Searched refs:laneMaxLength (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_model_ng.h41 void SetLaneConstrain(const Dimension& laneMinLength, const Dimension& laneMaxLength) override;
43 void SetLaneMaxLength(const Dimension& laneMaxLength) override;
106 …aneConstrain(FrameNode* frameNode, const Dimension& laneMinLength, const Dimension& laneMaxLength);
108 static void SetLaneMaxLength(FrameNode* frameNode, const Dimension& laneMaxLength);
H A Dlist_model_ng.cpp168 void ListModelNG::SetLaneConstrain(const Dimension& laneMinLength, const Dimension& laneMaxLength) in SetLaneConstrain() argument
171 SetLaneMaxLength(laneMaxLength); in SetLaneConstrain()
183 void ListModelNG::SetLaneMaxLength(const Dimension& laneMaxLength) in SetLaneMaxLength() argument
185 if (laneMaxLength.IsValid()) { in SetLaneMaxLength()
186 ACE_UPDATE_LAYOUT_PROPERTY(ListLayoutProperty, LaneMaxLength, laneMaxLength); in SetLaneMaxLength()
640 …LaneConstrain(FrameNode* frameNode, const Dimension& laneMinLength, const Dimension& laneMaxLength) in SetLaneConstrain() argument
643 SetLaneMaxLength(frameNode, laneMaxLength); in SetLaneConstrain()
655 void ListModelNG::SetLaneMaxLength(FrameNode* frameNode, const Dimension& laneMaxLength) in SetLaneMaxLength() argument
657 if (laneMaxLength.IsValid()) { in SetLaneMaxLength()
658 … ACE_UPDATE_NODE_LAYOUT_PROPERTY(ListLayoutProperty, LaneMaxLength, laneMaxLength, frameNode); in SetLaneMaxLength()
H A Dlist_model.h51 … virtual void SetLaneConstrain(const Dimension& laneMinLength, const Dimension& laneMaxLength) = 0;
53 virtual void SetLaneMaxLength(const Dimension& laneMaxLength) = 0;
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dlist_model_impl.h43 void SetLaneConstrain(const Dimension& laneMinLength, const Dimension& laneMaxLength) override;
45 void SetLaneMaxLength(const Dimension& laneMaxLength) override {} in SetLaneMaxLength() argument
H A Dlist_model_impl.cpp102 void ListModelImpl::SetLaneConstrain(const Dimension& laneMinLength, const Dimension& laneMaxLength) in SetLaneConstrain() argument
109 component->SetLaneConstrain(laneMinLength, laneMaxLength); in SetLaneConstrain()