Home
last modified time | relevance | path

Searched defs:table (Results 1 – 25 of 34) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/
Dlinked_hash_table.cpp31 auto table = JSHandle<Derived>(factory->NewTaggedArray(length)); in Create() local
39 …inkedHashTable<Derived, HashObject>::Insert(const JSThread *thread, const JSHandle<Derived> &table, in Insert()
65const JSHandle<Derived> &table, const JSHandle<JSTaggedValue> &key, const JSHandle<JSTaggedValue> … in InsertWeakRef()
93 const JSHandle<Derived> &table, int numberOfAddedElements) in GrowCapacity()
105 …inkedHashTable<Derived, HashObject>::Remove(const JSThread *thread, const JSHandle<Derived> &table, in Remove()
118 …inkedHashTable<Derived, HashObject>::Shrink(const JSThread *thread, const JSHandle<Derived> &table, in Shrink()
171 …e<LinkedHashMap> LinkedHashMap::Clear(const JSThread *thread, const JSHandle<LinkedHashMap> &table) in Clear()
181 …<LinkedHashMap> LinkedHashMap::Shrink(const JSThread *thread, const JSHandle<LinkedHashMap> &table, in Shrink()
217 …e<LinkedHashSet> LinkedHashSet::Clear(const JSThread *thread, const JSHandle<LinkedHashSet> &table) in Clear()
227 …<LinkedHashSet> LinkedHashSet::Shrink(const JSThread *thread, const JSHandle<LinkedHashSet> &table, in Shrink()
Dtagged_hash_table.h102 static JSHandle<Derived> Insert(const JSThread *thread, JSHandle<Derived> &table, in Insert()
118 static JSHandle<Derived> Remove(const JSThread *thread, JSHandle<Derived> &table, in Remove()
147 …inline static JSHandle<Derived> Shrink(const JSThread *thread, const JSHandle<Derived> &table, int… in Shrink()
394 static JSHandle<Derived> Shrink(const JSThread *thread, const JSHandle<Derived> &table) in Shrink()
409 static JSHandle<Derived> PutIfAbsent(const JSThread *thread, const JSHandle<Derived> &table, in PutIfAbsent()
436 static JSHandle<Derived> Put(const JSThread *thread, const JSHandle<Derived> &table, in Put()
462 … static JSHandle<Derived> Remove(const JSThread *thread, const JSHandle<Derived> &table, int entry) in Remove()
484 auto table = Derived::Cast(this); in NextEnumerationIndex() local
505 auto table = Derived::Cast(this); in GetEnumerationOrder() local
520 …static int ComputeCompactSize([[maybe_unused]] const JSHandle<Derived> &table, int computeHashTabl… in ComputeCompactSize()
Dtemplate_map.h62 …static int ComputeCompactSize([[maybe_unused]] const JSHandle<TemplateMap> &table, int computeHash… in ComputeCompactSize()
Dsymbol_table.h103 …static int ComputeCompactSize([[maybe_unused]] const JSHandle<SymbolTable> &table, int computeHash… in ComputeCompactSize()
Dtransitions_dictionary.h148 …static int ComputeCompactSize(const JSHandle<TransitionsDictionary> &table, int computeHashTableSi… in ComputeCompactSize()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_hashset_stub_builder.h34 GateRef table = Load(VariableType::JS_POINTER(), obj, tableOffset); in GetTableLength() local
41 GateRef table = Load(VariableType::JS_POINTER(), obj, tableOffset); in GetNode() local
Dcontainers_hashmap_stub_builder.h34 GateRef table = Load(VariableType::JS_POINTER(), obj, tableOffset); in GetTableLength() local
41 GateRef table = Load(VariableType::JS_POINTER(), obj, tableOffset); in GetNode() local
Dcontainers_linkedlist_stub_builder.h34 GateRef table = Load(VariableType::JS_POINTER(), obj, tableOffset); in GetTableLength() local
42 GateRef table = Load(VariableType::JS_POINTER(), obj, tableOffset); in GetNode() local
Dcontainers_list_stub_builder.h34 GateRef table = Load(VariableType::JS_POINTER(), obj, tableOffset); in GetTableLength() local
42 GateRef table = Load(VariableType::JS_POINTER(), obj, tableOffset); in GetNode() local
/arkcompiler/ets_runtime/ecmascript/tests/
Decma_string_table_test.cpp57 EcmaStringTable *table = thread->GetEcmaVM()->GetEcmaStringTable(); in HWTEST_F_L0() local
76 EcmaStringTable *table = thread->GetEcmaVM()->GetEcmaStringTable(); in HWTEST_F_L0() local
97 EcmaStringTable *table = thread->GetEcmaVM()->GetEcmaStringTable(); in HWTEST_F_L0() local
120 EcmaStringTable *table = thread->GetEcmaVM()->GetEcmaStringTable(); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_type_table_generator.h48 JSHandle<TSModuleTable> table = GetTSModuleTable(); in GetNextModuleId() local
Dts_type_table.cpp34 …andle<TSTypeTable> TSTypeTable::PushBackTypeToTable(JSThread *thread, JSHandle<TSTypeTable> &table, in PushBackTypeToTable()
Dts_type_table_generator.cpp68 JSHandle<TSTypeTable> table = AddTypeTable(recordNameStr, typeNum); in GetOrGenerateTSTypeTable() local
92 JSHandle<TSModuleTable> table = GetTSModuleTable(); in AddTypeTable() local
Dts_type_parser.h99 inline void SetTSType(JSHandle<TSTypeTable> table, JSHandle<JSTaggedValue> type, in SetTSType()
Dts_type_parser.cpp95 …JSHandle<TSTypeTable> table = tableGenerator_.GetOrGenerateTSTypeTable(jsPandaFile, recordName, mo… in ParseType() local
171 …JSHandle<TSTypeTable> table = tableGenerator_.GetOrGenerateTSTypeTable(jsPandaFile, entryPoint, mo… in ResolveImportType() local
532const JSHandle<TSTypeTable> &table) in GenerateExportTableFromRecord()
609 …JSHandle<TSTypeTable> table = tableGenerator_.GetOrGenerateTSTypeTable(jsPandaFile, star, starModu… in IterateStarExport() local
806 …JSHandle<TSTypeTable> table = tableGenerator_.GetOrGenerateTSTypeTable(info.jsPandaFile, info.reco… in ParsePGOType() local
Dts_manager.cpp408 JSHandle<TSModuleTable> table = GetTSModuleTable(); in Dump() local
446 JSHandle<TSTypeTable> table = GetInferredTable(); in FindIteratorInstanceInInferTable() local
479 GlobalTSTypeRef TSManager::FindUnionInTypeTable(JSHandle<TSTypeTable> table, JSHandle<TSUnionType> … in FindUnionInTypeTable()
544 void TSManager::SetTSTypeTable(const JSHandle<TSTypeTable> &table, int tableId) const in SetTSTypeTable() argument
1530 JSHandle<TaggedArray> table(vm_->GetJSThread(), exportTypeTable); in GetExportTableFromLiteral() local
/arkcompiler/runtime_core/libpandabase/tests/
Dbit_table_test.cpp70 BitTable<BitTableDefault<1>> table; in TEST_F() local
89 BitTable<BitTableDefault<1>> table; in TEST_F() local
115 BitTable<BitTableDefault<1>> table; in TEST_F() local
148 BitTable<BitTableDefault<10>> table; in TEST_F() local
212 BitTable<TestAccessor> table; in TEST_F() local
246 BitTable<TestAccessor> table; in TEST_F() local
395 BitTable<BitTableDefault<1>> table; in TEST_F() local
456 BitTable<BitTableDefault<1>> table; in TEST_F() local
/arkcompiler/ets_runtime/ecmascript/ts_types/tests/
Dts_type_table_generator_test.cpp81 JSHandle<TSTypeTable> table = ecmaVm->GetFactory()->NewTSTypeTable(0); in HWTEST_F_L0() local
117 [[maybe_unused]] JSHandle<TSTypeTable> table = in HWTEST_F_L0() local
/arkcompiler/toolchain/tooling/backend/
Djs_single_stepper.cpp94 const LineNumberTable &table = extractor->GetLineNumberTable(methodId); in GetStepRanges() local
/arkcompiler/runtime_core/libpandabase/utils/
Dbit_table.h84 BitTableRow(const BitTableType *table, int row_index) : table_(table), row_index_(row_index) {} in BitTableRow()
159 …BitTableIterator(const typename Accessor::BitTableType *table, int row_index) : row_(table, row_in… in BitTableIterator()
309 Range(BitTable *table, int start, int end) : table_(table), start_(start), end_(end) {} in Range()
/arkcompiler/ets_runtime/ecmascript/require/
Djs_cjs_module_cache.h135 …static int ComputeCompactSize([[maybe_unused]] const JSHandle<CjsModuleCache> &table, int computeH… in ComputeCompactSize()
/arkcompiler/runtime_core/libpandafile/tests/
Ddebug_info_extractor_test.cpp221 …c std::optional<size_t> GetLineNumberByTableOffsetWrapper(const panda_file::LineNumberTable &table, in GetLineNumberByTableOffsetWrapper()
232 …d::optional<uint32_t> GetOffsetByTableLineNumberWrapper(const panda_file::LineNumberTable &table, … in GetOffsetByTableLineNumberWrapper()
/arkcompiler/runtime_core/compiler/tests/
Dclass_hash_table_test.cpp184 auto table = aot_file->GetClassHashTable(file_header); in TEST_F() local
193 auto table = aot_panda_file.GetClassHashTable(); in TEST_F() local
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_symbol.cpp187 auto *table = env->GetRegisterSymbols().GetObject<SymbolTable>(); in KeyFor() local
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_hashset.cpp259 JSHandle<TaggedHashArray> table(thread, hashSet->GetTable()); in ForEach() local

12