Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/
H A Dlazy_for_each_builder.cpp464 bool LazyForEachBuilder::ValidateIndex(int32_t index, const std::string& type) in ValidateIndex() function in OHOS::Ace::NG::LazyForEachBuilder
483 if (!ValidateIndex(operation.index, operation.type)) { in OperateAdd()
506 if (!ValidateIndex(operation.index, operation.type)) { in OperateDelete()
533 if (!ValidateIndex(operation.index, operation.type)) { in OperateChange()
563 if (!ValidateIndex(operation.coupleIndex.first, operation.type) || in OperateMove()
564 !ValidateIndex(operation.coupleIndex.second, operation.type)) { in OperateMove()
606 if (!ValidateIndex(operation.coupleIndex.first, operation.type) || in OperateExchange()
607 !ValidateIndex(operation.coupleIndex.second, operation.type)) { in OperateExchange()
H A Dlazy_for_each_builder.h113 bool ValidateIndex(int32_t index, const std::string& type);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/tab_bar/
H A Dtab_controller.h59 void ValidateIndex(int32_t maxIndex);
H A Dtab_controller.cpp35 void TabController::ValidateIndex(int32_t maxIndex) in ValidateIndex() function in OHOS::Ace::TabController
H A Drender_tab_content.cpp44 controller_->ValidateIndex((contentCount_ - 1 < 0) ? 0 : (contentCount_ - 1)); in Update()