Searched refs:findNode (Results 1 – 3 of 3) sorted by relevance
274 auto findNode = child->GetChildDefaultFocusNode(isGetDefaultFocus); in GetChildDefaultFocusNode() local275 if (findNode) { in GetChildDefaultFocusNode()276 return findNode; in GetChildDefaultFocusNode()294 auto findNode = child->GetChildFocusNodeById(id); in GetChildFocusNodeById() local295 if (findNode) { in GetChildFocusNodeById()296 return findNode; in GetChildFocusNodeById()
405 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 {
78 return this.constitute.findNode(value) !== undefined;