Searched refs:cachedTemp (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/ |
H A D | lazy_for_each_builder.cpp | 340 decltype(cachedItems_) cachedTemp(std::move(cachedItems_)); in OnDatasetChange() 343 RepairDatasetItems(cachedTemp, cachedItems_, indexChangedMap); in OnDatasetChange() 356 for (auto& [index, child] : cachedTemp) { in RepairDatasetItems() 449 OperateChange(operation, initialIndex, cachedTemp, expiringTemp); in ClassifyOperation() 452 OperateMove(operation, initialIndex, cachedTemp, expiringTemp); in ClassifyOperation() 455 OperateExchange(operation, initialIndex, cachedTemp, expiringTemp); in ClassifyOperation() 539 auto iter = cachedTemp.find(operation.index); in OperateChange() 540 if (iter == cachedTemp.end()) { in OperateChange() 579 auto iter = cachedTemp.find(operation.coupleIndex.first); in OperateMove() 580 if (iter == cachedTemp.end()) { in OperateMove() [all …]
|
H A D | lazy_for_each_builder.h | 102 void RepairDatasetItems(std::map<int32_t, LazyForEachChild>& cachedTemp, 111 …std::map<int32_t, LazyForEachChild>& cachedTemp, std::map<int32_t, LazyForEachChild>& expiringTemp… 120 …std::map<int32_t, LazyForEachChild>& cachedTemp, std::map<int32_t, LazyForEachChild>& expiringTemp… 123 …std::map<int32_t, LazyForEachChild>& cachedTemp, std::map<int32_t, LazyForEachChild>& expiringTemp… 126 …std::map<int32_t, LazyForEachChild>& cachedTemp, std::map<int32_t, LazyForEachChild>& expiringTemp… 129 …std::map<int32_t, LazyForEachChild>& cachedTemp, std::map<int32_t, LazyForEachChild>& expiringTemp…
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/syntax/ |
H A D | lazy_for_each_builder_syntax_test_ng.cpp | 955 std::map<int32_t, LazyForEachChild> cachedTemp; variable 957 lazyForEachBuilder->OperateChange(operation, initialIndex, cachedTemp, expiringTemp); 966 lazyForEachBuilder->OperateChange(operation, initialIndex, cachedTemp, expiringTemp); 974 cachedTemp[0] = LazyForEachChild(str0, nullptr); 976 lazyForEachBuilder->OperateChange(operation, initialIndex, cachedTemp, expiringTemp); 983 lazyForEachBuilder->OperateChange(operation, initialIndex, cachedTemp, expiringTemp);
|