Searched refs:retTemplates (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/property/ |
H A D | templates_parser.cpp | 214 std::vector<Value> retTemplates; in ParseArgsWithAutoFill() local 215 if (!CheckAutoFillParameter(args, size, lens, retTemplates)) { in ParseArgsWithAutoFill() 226 for (const auto& ret : retTemplates) { in ParseArgsWithAutoFill() 253 if (childrenCount >= countNonRepeat && !retTemplates.empty()) { in ParseArgsWithAutoFill() 254 …count = ceil((size - countNonRepeat) * 1.0 / (static_cast<int32_t>(retTemplates.size()) - countNon… in ParseArgsWithAutoFill() 397 std::vector<Value> retTemplates; in ParseArgsWithAutoFit() local 398 if (!CheckAutoFillParameter(args, size, lens, retTemplates)) { in ParseArgsWithAutoFit() 412 for (const auto& ret : retTemplates) { in ParseArgsWithAutoFit() 437 if (childrenCount >= static_cast<int32_t>(countNonRepeat) && !retTemplates.empty()) { in ParseArgsWithAutoFit() 438 count = ceil((size - countNonRepeat) * 1.0 / (retTemplates.size() - countNonRepeat)); in ParseArgsWithAutoFit()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/layout/ |
H A D | templates_parser.cpp | 191 std::vector<Value> retTemplates; in ParseArgsWithAutoFill() local 192 if (!CheckAutoFillParameter(args, size, lens, retTemplates)) { in ParseArgsWithAutoFill() 203 for (const auto& ret : retTemplates) { in ParseArgsWithAutoFill() 231 if (children >= countNonRepeat && !retTemplates.empty()) { in ParseArgsWithAutoFill() 232 count = ceil((size - countNonRepeat) * 1.0 / (retTemplates.size() - countNonRepeat)); in ParseArgsWithAutoFill()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/ |
H A D | render_grid_layout.cpp | 3356 std::vector<Value> retTemplates; in ParseArgsWithAutoFill() local 3357 if (!CheckAutoFillParameter(args, size, lens, retTemplates)) { in ParseArgsWithAutoFill() 3367 for (auto ret : retTemplates) { in ParseArgsWithAutoFill() 3389 if (GetChildren().size() >= countNonRepeat && retTemplates.size() > 0) { in ParseArgsWithAutoFill() 3390 …count = ceil((GetChildren().size() - countNonRepeat) * 1.0 / (retTemplates.size() - countNonRepeat… in ParseArgsWithAutoFill()
|