Searched refs:NewTreeNode (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
H A D | tagged_hash_array.h | 47 static JSHandle<RBTreeNode> NewTreeNode(JSThread *thread, int hash, JSHandle<JSTaggedValue> key,
|
H A D | tagged_hash_array.cpp | 75 JSHandle<RBTreeNode> TaggedHashArray::NewTreeNode(JSThread *thread, int hash, JSHandle<JSTaggedValue> key, in NewTreeNode() function in panda::ecmascript::TaggedHashArray 79 return factory->NewTreeNode(hash, key, value); in NewTreeNode() 86 return NewTreeNode(thread, linkedNode->GetHash().GetInt(), key, value); in CreateTreeNodeFrom()
|
H A D | tagged_node.cpp | 185 treeNode = TaggedHashArray::NewTreeNode(thread, hash, key, value);
in Set()
|
H A D | object_factory.h | 668 JSHandle<RBTreeNode> NewTreeNode(int hash, const JSHandle<JSTaggedValue> &key,
|
H A D | object_factory.cpp | 2893 JSHandle<RBTreeNode> ObjectFactory::NewTreeNode(int hash, const JSHandle<JSTaggedValue> &key, in NewTreeNode() function in panda::ecmascript::ObjectFactory
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | rb_tree_node_test.cpp | 80 JSHandle<RBTreeNode> newNode = factory->NewTreeNode(hash, key, value);
in HWTEST_F_L0()
|
H A D | tagged_hash_array_test.cpp | 68 * @tc.name: NewTreeNode 69 * @tc.desc: Call "NewTreeNode" function Create LinkedNode object, check whether the object is created successfully. 73 HWTEST_F_L0(TaggedHashArrayTest, NewTreeNode) in HWTEST_F_L0() 80 TaggedHashArray::NewTreeNode(thread, keyHash, hashKey, hashKeyValue); in HWTEST_F_L0()
|
Completed in 15 milliseconds