/arkcompiler/ets_runtime/ecmascript/js_api/ |
D | js_api_tree_set.cpp | 54 bool JSAPITreeSet::Delete(JSThread *thread, const JSHandle<JSAPITreeSet> &set, const JSHandle<JSTag… in Delete() function in panda::ecmascript::JSAPITreeSet 63 JSTaggedValue newSet = TaggedTreeSet::Delete(thread, setHandle, entry); in Delete() 89 JSTaggedValue newSet = TaggedTreeSet::Delete(thread, setHandle, entry); in PopFirst() 102 JSTaggedValue newSet = TaggedTreeSet::Delete(thread, setHandle, entry); in PopLast()
|
D | js_api_tree_map.cpp | 68 JSTaggedValue JSAPITreeMap::Delete(JSThread *thread, const JSHandle<JSAPITreeMap> &map, in Delete() function in panda::ecmascript::JSAPITreeMap 78 JSTaggedValue newMap = TaggedTreeMap::Delete(thread, mapHandle, entry); in Delete()
|
D | js_api_tree_set.h | 38 …static bool Delete(JSThread *thread, const JSHandle<JSAPITreeSet> &set, const JSHandle<JSTaggedVal…
|
D | js_api_tree_map.h | 41 static JSTaggedValue Delete(JSThread *thread, const JSHandle<JSAPITreeMap> &map,
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_weak_container.h | 30 …static bool Delete(JSThread *thread, const JSHandle<JSWeakMap> &map, const JSHandle<JSTaggedValue>… 59 …static bool Delete(JSThread *thread, const JSHandle<JSWeakSet> &set, const JSHandle<JSTaggedValue>…
|
D | js_set.h | 27 …static bool Delete(const JSThread *thread, const JSHandle<JSSet> &set, const JSHandle<JSTaggedValu…
|
D | js_weak_container.cpp | 36 bool JSWeakMap::Delete(JSThread *thread, const JSHandle<JSWeakMap> &map, const JSHandle<JSTaggedVal… in Delete() function in panda::ecmascript::JSWeakMap 88 bool JSWeakSet::Delete(JSThread *thread, const JSHandle<JSWeakSet> &weakSet, const JSHandle<JSTagge… in Delete() function in panda::ecmascript::JSWeakSet
|
D | js_map.h | 27 …static bool Delete(const JSThread *thread, const JSHandle<JSMap> &map, const JSHandle<JSTaggedValu…
|
D | js_set.cpp | 35 bool JSSet::Delete(const JSThread *thread, const JSHandle<JSSet> &set, const JSHandle<JSTaggedValue… in Delete() function in panda::ecmascript::JSSet
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
D | heap_profiler.cpp | 101 GetChunk()->Delete(entryIdMap_); in ~HeapProfiler() 102 GetChunk()->Delete(jsonSerializer_); in ~HeapProfiler() 157 GetChunk()->Delete(snapshot); in DumpHeapSnapshot() 161 GetChunk()->Delete(snapshot); in DumpHeapSnapshot() 331 GetChunk()->Delete(snapshot); in ClearSnapshot()
|
D | string_hashmap.cpp | 95 alloctor->Delete(cstr); in Clear()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_weak_set.h | 30 static JSTaggedValue Delete(EcmaRuntimeCallInfo *argv);
|
D | builtins_weak_map.h | 28 static JSTaggedValue Delete(EcmaRuntimeCallInfo *argv);
|
D | builtins_weak_map.cpp | 75 JSTaggedValue BuiltinsWeakMap::Delete(EcmaRuntimeCallInfo *argv) in Delete() function in panda::ecmascript::builtins::BuiltinsWeakMap 78 BUILTINS_API_TRACE(argv->GetThread(), WeakMap, Delete); in Delete() 94 return GetTaggedBoolean(JSWeakMap::Delete(thread, weakMap, key)); in Delete()
|
D | builtins_weak_set.cpp | 134 JSTaggedValue BuiltinsWeakSet::Delete(EcmaRuntimeCallInfo *argv) in Delete() function in panda::ecmascript::builtins::BuiltinsWeakSet 137 BUILTINS_API_TRACE(argv->GetThread(), WeakSet, Delete); in Delete() 154 return GetTaggedBoolean(JSWeakSet::Delete(thread, weakSet, value)); in Delete()
|
D | builtins_set.h | 34 static JSTaggedValue Delete(EcmaRuntimeCallInfo *argv);
|
D | builtins_map.h | 32 static JSTaggedValue Delete(EcmaRuntimeCallInfo *argv);
|
D | builtins_set.cpp | 145 JSTaggedValue BuiltinsSet::Delete(EcmaRuntimeCallInfo *argv) in Delete() function in panda::ecmascript::builtins::BuiltinsSet 148 BUILTINS_API_TRACE(argv->GetThread(), Set, Delete); in Delete() 161 bool flag = JSSet::Delete(thread, set, value); in Delete()
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
D | native_area_allocator.h | 54 allocator->Delete<T>(static_cast<T *>(buffer)); in FreeObjectFunc() 70 void Delete(T *ptr) in Delete() function
|
D | chunk.h | 72 void Delete(T *ptr) in Delete() function
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | weak_vector_test.cpp | 177 HWTEST_F_L0(WeakVectorTest, Delete) in HWTEST_F_L0() argument 193 EXPECT_FALSE(weakVector->Delete(thread, weakVectorCapacity)); in HWTEST_F_L0() 196 EXPECT_TRUE(weakVector->Delete(thread, i)); in HWTEST_F_L0()
|
D | linked_hash_table_test.cpp | 110 dictHandle = LinkedHashMap::Delete(thread, dictHandle, key1); in HWTEST_F_L0() 149 setHandle = LinkedHashSet::Delete(thread, setHandle, key1); in HWTEST_F_L0() 240 dictHandle = LinkedHashMap::Delete(thread, dictHandle, key); in HWTEST_F_L0() 272 setHandle = LinkedHashSet::Delete(thread, setHandle, keyHandle); in HWTEST_F_L0()
|
D | js_set_test.cpp | 112 JSSet::Delete(thread, set, deleteKey); in HWTEST_F_L0() 140 JSSet::Delete(thread, set, key); in HWTEST_F_L0()
|
D | js_map_test.cpp | 114 JSMap::Delete(thread, map, deleteKey); in HWTEST_F_L0() 151 JSMap::Delete(thread, map, key); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/test/fuzztest/objectdelete_fuzzer/ |
D | objectdelete_fuzzer.cpp | 45 object->Delete(vm, key); in ObjectDeleteFuzzTest()
|