Home
last modified time | relevance | path

Searched refs:fromKey (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/partial_update/
H A Dpu_repeat_virtual_scroll_impl.ts103 const onUpdateNode = (fromKey: string, forIndex: number): void => {
104 …if (!fromKey || fromKey === '' || forIndex < 0 || forIndex >= this.totalCount_ || forIndex >= this…
105 … new Error(`__RepeatVirtualScrollImpl (${this.repeatElmtId_}) onUpdateNode: fromKey "${fromKey}", \
112 const repeatItem = this.repeatItem4Key_.get(fromKey);
114 …RepeatVirtualScrollImpl (${this.repeatElmtId_}) onUpdateNode: fromKey "${fromKey}", forIndex=${for…
118 …RepeatVirtualScrollImpl (${this.repeatElmtId_}) onUpdateNode: fromKey "${fromKey}", forIndex=${for…
122 this.repeatItem4Key_.delete(fromKey);
130 …RepeatVirtualScrollImpl (${this.repeatElmtId_}) onUpdateNode: fromKey "${fromKey}", forIndex=${for…
H A Dpu_foreach.d.ts54 onUpdateNode: (fromKey: string, forIndex: number) => void;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/
H A Drepeat_virtual_scroll_model_ng.h36 const std::function<void(const std::string& fromKey, uint32_t forIndex)>& onUpdateNode,
H A Drepeat_virtual_scroll_model.h40 const std::function<void(const std::string& fromKey, uint32_t forIndex)>& onUpdateNode,
H A Drepeat_virtual_scroll_model_ng.cpp30 const std::function<void(const std::string& fromKey, uint32_t forIndex)>& onUpdateNode, in Create() argument
H A Drepeat_virtual_scroll_caches.cpp640 const std::string& ttype, const std::string& fromKey, const std::string& forKey) in UINodeHasBeenUpdated() argument
649 auto iter = node4key.find(fromKey); in UINodeHasBeenUpdated()
658 auto iter = node4key_.find(fromKey); in UINodeHasBeenUpdated()
667 fromKey.c_str(), forKey.c_str()); in UINodeHasBeenUpdated()
H A Drepeat_virtual_scroll_caches.h206 const std::string& ttype, const std::string& fromKey, const std::string& forKey);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_repeat_virtual_scroll.cpp127 const std::string& fromKey, uint32_t forIndex) -> void { in Create() argument
129 auto params = ConvertToJSValues(fromKey, forIndex); in Create()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DstateMgmt.js10517 const onUpdateNode = (fromKey, forIndex) => {
10518 …if (!fromKey || fromKey === '' || forIndex < 0 || forIndex >= this.totalCount_ || forIndex >= this…
10519 … new Error(`__RepeatVirtualScrollImpl (${this.repeatElmtId_}) onUpdateNode: fromKey "${fromKey}", \
10526 const repeatItem = this.repeatItem4Key_.get(fromKey);
10528 …RepeatVirtualScrollImpl (${this.repeatElmtId_}) onUpdateNode: fromKey "${fromKey}", forIndex=${for…
10535 this.repeatItem4Key_.delete(fromKey);
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/syntax/
H A Drepeat_node_cache_syntax_test.cpp106 auto g_onUpdateNode = [](const std::string& fromKey, uint32_t forIndex) { in __anona03fc19a0402() argument