Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/focus/
H A Dfocus_node.cpp274 auto findNode = child->GetChildDefaultFocusNode(isGetDefaultFocus); in GetChildDefaultFocusNode() local
275 if (findNode) { in GetChildDefaultFocusNode()
276 return findNode; in GetChildDefaultFocusNode()
294 auto findNode = child->GetChildFocusNodeById(id); in GetChildFocusNodeById() local
295 if (findNode) { in GetChildFocusNodeById()
296 return findNode; in GetChildFocusNodeById()
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/struct/
H A Djs_struct.ts405 let findNode: TreeNode<K, V> | undefined = this.root;
406 while (findNode !== undefined && findNode.key !== key) {
407 findNode = currencyCompare(findNode.key, key, this.compFun) === ComparResult.BIGGER_THAN ?
408 findNode.left : findNode.right;
410 return findNode;
412 findNode(value: V): TreeNode<K, V> | undefined {
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/treemap/
H A Djs_treemap.ts78 return this.constitute.findNode(value) !== undefined;