Searched refs:laneMinLength (Results 1 – 5 of 5) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/ |
H A D | list_model_ng.h | 41 void SetLaneConstrain(const Dimension& laneMinLength, const Dimension& laneMaxLength) override; 42 void SetLaneMinLength(const Dimension& laneMinLength) override; 106 …static void SetLaneConstrain(FrameNode* frameNode, const Dimension& laneMinLength, const Dimension… 107 static void SetLaneMinLength(FrameNode* frameNode, const Dimension& laneMinLength);
|
H A D | list_model_ng.cpp | 168 void ListModelNG::SetLaneConstrain(const Dimension& laneMinLength, const Dimension& laneMaxLength) in SetLaneConstrain() argument 170 SetLaneMinLength(laneMinLength); in SetLaneConstrain() 174 void ListModelNG::SetLaneMinLength(const Dimension& laneMinLength) in SetLaneMinLength() argument 176 if (laneMinLength.IsValid()) { in SetLaneMinLength() 177 ACE_UPDATE_LAYOUT_PROPERTY(ListLayoutProperty, LaneMinLength, laneMinLength); in SetLaneMinLength() 640 void ListModelNG::SetLaneConstrain(FrameNode* frameNode, const Dimension& laneMinLength, const Dime… in SetLaneConstrain() argument 642 SetLaneMinLength(frameNode, laneMinLength); in SetLaneConstrain() 646 void ListModelNG::SetLaneMinLength(FrameNode* frameNode, const Dimension& laneMinLength) in SetLaneMinLength() argument 648 if (laneMinLength.IsValid()) { in SetLaneMinLength() 649 … ACE_UPDATE_NODE_LAYOUT_PROPERTY(ListLayoutProperty, LaneMinLength, laneMinLength, frameNode); in SetLaneMinLength()
|
H A D | list_model.h | 51 … virtual void SetLaneConstrain(const Dimension& laneMinLength, const Dimension& laneMaxLength) = 0; 52 virtual void SetLaneMinLength(const Dimension& laneMinLength) = 0;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | list_model_impl.h | 43 void SetLaneConstrain(const Dimension& laneMinLength, const Dimension& laneMaxLength) override; 44 void SetLaneMinLength(const Dimension& laneMinLength) override {} in SetLaneMinLength() argument
|
H A D | list_model_impl.cpp | 102 void ListModelImpl::SetLaneConstrain(const Dimension& laneMinLength, const Dimension& laneMaxLength) in SetLaneConstrain() argument 109 component->SetLaneConstrain(laneMinLength, laneMaxLength); in SetLaneConstrain()
|