/arkcompiler/ets_runtime/ecmascript/js_api/ |
H A D | js_api_hashmap.cpp | 31 TaggedHashArray *hashArray = TaggedHashArray::Cast(GetTable().GetTaggedObject()); in HasKey() 39 JSHandle<TaggedHashArray> hashArray(thread, hashMap->GetTable()); in HasValue() 94 TaggedHashArray *hashArray = TaggedHashArray::Cast(GetTable().GetTaggedObject()); in Replace() 118 JSHandle<TaggedHashArray> hashArray(thread, hashMap->GetTable()); in Set() 134 TaggedHashArray *hashArray = TaggedHashArray::Cast(GetTable().GetTaggedObject()); in Get() 148 JSHandle<TaggedHashArray> hashArray(thread, src->GetTable()); in SetAll() 197 TaggedHashArray *hashArray = TaggedHashArray::Cast(GetTable().GetTaggedObject()); in Clear() 211 JSHandle<TaggedHashArray> hashArray(thread, hashMap->GetTable()); in Remove()
|
H A D | js_api_hashset.cpp | 39 TaggedHashArray *hashArray = TaggedHashArray::Cast(GetTable().GetTaggedObject()); in Has() 53 JSHandle<TaggedHashArray> hashArray(thread, hashSet->GetTable()); in Add() 70 TaggedHashArray *hashArray = TaggedHashArray::Cast(GetTable().GetTaggedObject()); in Clear() 89 JSHandle<TaggedHashArray> hashArray(thread, hashSet->GetTable()); in Remove()
|
H A D | js_api_hashset_iterator.cpp | 43 JSHandle<TaggedHashArray> tableArr(thread, hashSet->GetTable()); in Next()
|
H A D | js_api_hashmap_iterator.cpp | 43 JSHandle<TaggedHashArray> tableArr(thread, JSHandle<JSAPIHashMap>::Cast(iteratedHashMap)->GetTable()); in Next()
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | multithreaded_intern_string_table_test.cpp | 79 StringTable *GetTable() in GetTable() function in ark::mem::test::MultithreadedInternStringTableTest 160 auto *table = test->GetTable(); in TestThreadEntry() 178 auto *table = test->GetTable(); in TestConcurrentInsertion()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
H A D | obj_emit.cpp | 205 (func == nullptr) ? GlobalTables::GetGsymTable().GetTable().size() : func->GetSymTab()->GetTable().size(); in EmitFunctionSymbolTable()
|
H A D | emit.cpp | 456 (func == nullptr) ? GlobalTables::GetGsymTable().GetTable().size() : func->GetSymTab()->GetTable().size(); in EmitAsmLabel()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
H A D | mir_symbol.h | 675 MapleVector<MIRSymbol *> &GetTable() in GetTable() function in maple::MIRSymbolTable 680 const MapleVector<MIRSymbol *> &GetTable() const in GetTable() function in maple::MIRSymbolTable
|
H A D | global_tables.h | 661 auto &GetTable()
|
/arkcompiler/ets_runtime/ecmascript/containers/ |
H A D | containers_hashset.cpp | 275 JSHandle<TaggedHashArray> table(thread, hashSet->GetTable()); in ForEach()
|
H A D | containers_hashmap.cpp | 163 JSHandle<TaggedHashArray> table(thread, hashMap->GetTable()); in ForEach()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | bit_table.h | 141 auto GetTable() const in GetTable() function in panda::BitTableRow
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | bit_table.h | 149 auto GetTable() const in GetTable() function in ark::BitTableRow
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | dump.cpp | 2335 TaggedHashArray *hashArray = TaggedHashArray::Cast(GetTable().GetTaggedObject()); in Dump() 2343 if (!(GetTable().IsInvalidValue())) { in DumpForSnapshot() 2344 TaggedHashArray *map = TaggedHashArray::Cast(GetTable().GetTaggedObject()); in DumpForSnapshot() 2345 vec.emplace_back("hashmap", GetTable()); in DumpForSnapshot() 2354 TaggedHashArray *hashArray = TaggedHashArray::Cast(GetTable().GetTaggedObject()); in Dump() 2362 if (!(GetTable().IsInvalidValue())) { in DumpForSnapshot() 2363 TaggedHashArray *set = TaggedHashArray::Cast(GetTable().GetTaggedObject()); in DumpForSnapshot() 2364 vec.emplace_back("hashset", GetTable()); in DumpForSnapshot()
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
H A D | debugger_api.cpp | 1001 JSHandle<TaggedHashArray> table(thread, hashMap->GetTable()); in GetHashMapValue() 1035 JSHandle<TaggedHashArray> table(thread, hashSet->GetTable()); in GetHashSetValue()
|