Searched refs:NewLinkedNode (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | linked_node_test.cpp | 52 head = factory->NewLinkedNode(hash, key, value, head);
in CreateLinkedList() 67 JSHandle<LinkedNode> newNode = factory->NewLinkedNode(hash, key, value, hole);
in HWTEST_F_L0()
|
H A D | tagged_hash_array_test.cpp | 47 * @tc.name: NewLinkedNode 48 * @tc.desc: Call "NewLinkedNode" function Create LinkedNode object, check whether the object is created successfully. 52 HWTEST_F_L0(TaggedHashArrayTest, NewLinkedNode) in HWTEST_F_L0() 59 TaggedHashArray::NewLinkedNode(thread, keyHash, hashKey, hashKeyValue); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | tagged_hash_array.cpp | 60 JSHandle<LinkedNode> TaggedHashArray::NewLinkedNode(JSThread *thread, int hash, JSHandle<JSTaggedValue> key, in NewLinkedNode() function in panda::ecmascript::TaggedHashArray 65 return factory->NewLinkedNode(hash, key, value, hole); in NewLinkedNode() 72 return NewLinkedNode(thread, treeNode->GetHash().GetInt(), key, value); in CreateLinkedNodeFrom() 177 JSHandle<LinkedNode> newNode = TaggedHashArray::NewLinkedNode(thread, hash, key, value); in SetVal() 196 JSHandle<LinkedNode> newNode = TaggedHashArray::NewLinkedNode(thread, hash, key, value); in SetVal()
|
H A D | tagged_hash_array.h | 44 static JSHandle<LinkedNode> NewLinkedNode(JSThread *thread, int hash, JSHandle<JSTaggedValue> key,
|
H A D | object_factory.h | 665 JSHandle<LinkedNode> NewLinkedNode(int hash, const JSHandle<JSTaggedValue> &key,
|
H A D | object_factory.cpp | 2879 JSHandle<LinkedNode> ObjectFactory::NewLinkedNode(int hash, const JSHandle<JSTaggedValue> &key, in NewLinkedNode() function in panda::ecmascript::ObjectFactory
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/ |
H A D | heap_dump_test.cpp | 771 factory->NewLinkedNode(1, JSHandle<JSTaggedValue>(thread_, JSTaggedValue::Hole()),
|
Completed in 15 milliseconds