Home
last modified time | relevance | path

Searched refs:cachedSize (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/swiper/
H A Dswiper_declaration.h51 int32_t cachedSize = DEFAULT_SWIPER_CACHED_SIZE; member
166 return attribute.cachedSize; in GetCachedSize()
169 void SetCachedSize(int32_t cachedSize) in SetCachedSize() argument
172 attribute.cachedSize = cachedSize; in SetCachedSize()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/swiper/
H A Dswiper_component.cpp320 void SwiperComponent::SetCachedSize(int32_t cachedSize) in SetCachedSize() argument
323 if (cachedSize <= 0) { in SetCachedSize()
327 declaration_->SetCachedSize(cachedSize); in SetCachedSize()
H A Drender_swiper.cpp3254 if (cachedSize <= -1 || cachedSize >= childrenSize / 2) { in ResetCachedChildren()
3263 } else if (cachedSize == 0) { in ResetCachedChildren()
3264 cachedSize = 1; in ResetCachedChildren()
3265 forwardNum = cachedSize; in ResetCachedChildren()
3266 backNum = cachedSize; in ResetCachedChildren()
3269 forwardNum = cachedSize; in ResetCachedChildren()
3270 backNum = cachedSize; in ResetCachedChildren()
3275 backNum = 2 * cachedSize; in ResetCachedChildren()
3279 backNum = cachedSize + (cachedSize - forwardNum); in ResetCachedChildren()
3281 forwardNum = cachedSize; in ResetCachedChildren()
[all …]
H A Dswiper_component.h88 void SetCachedSize(int32_t cachedSize);