Home
last modified time | relevance | path

Searched refs:sizeRepeat (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/property/
H A Dtemplates_parser.cpp220 double sizeRepeat = 0.0; in ParseArgsWithAutoFill() local
230 sizeRepeat += sizeItem; in ParseArgsWithAutoFill()
249 if (!NearZero(sizeRepeat)) { in ParseArgsWithAutoFill()
250 count = (sizeLeft + gap) / (sizeRepeat + countRepeat * gap); in ParseArgsWithAutoFill()
404 double sizeRepeat = 0.0; in ParseArgsWithAutoFit() local
416 sizeRepeat += sizeItem; in ParseArgsWithAutoFit()
433 if (!NearZero(sizeRepeat)) { in ParseArgsWithAutoFit()
434 count = (sizeLeft + gap) / (sizeRepeat + countRepeat * gap); in ParseArgsWithAutoFit()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/layout/
H A Dtemplates_parser.cpp197 double sizeRepeat = 0.0; in ParseArgsWithAutoFill() local
207 sizeRepeat += sizeItem; in ParseArgsWithAutoFill()
223 if (!NearZero(sizeRepeat)) { in ParseArgsWithAutoFill()
224 count = (sizeLeft + gap) / (sizeRepeat + (countRepeat)*gap); in ParseArgsWithAutoFill()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/
H A Drender_grid_layout.cpp3361 double sizeRepeat = 0.0; in ParseArgsWithAutoFill() local
3371 sizeRepeat += sizeItem; in ParseArgsWithAutoFill()
3386 if (!NearZero(sizeRepeat)) { in ParseArgsWithAutoFill()
3387 count = LessOrEqual(sizeLeft / sizeRepeat, 1) ? 1 : floor(sizeLeft / sizeRepeat); in ParseArgsWithAutoFill()