Searched refs:typeTable (Results 1 – 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ts_types/ |
D | ts_type_table.cpp | 19 …<JSTaggedValue> TSTypeTable::GetExportValueTable(JSThread *thread, JSHandle<TSTypeTable> typeTable) in GetExportValueTable() argument 21 uint32_t index = typeTable->GetLength() - 1; in GetExportValueTable() 22 JSHandle<JSTaggedValue> exportValueTable(thread, typeTable->Get(index)); in GetExportValueTable() 26 void TSTypeTable::SetExportValueTable(JSThread *thread, JSHandle<TSTypeTable> typeTable, in SetExportValueTable() argument 30 typeTable->Set(thread, typeTable->GetLength() - 1, exportValueTable); in SetExportValueTable()
|
D | ts_type_table.h | 39 …tic JSHandle<JSTaggedValue> GetExportValueTable(JSThread *thread, JSHandle<TSTypeTable> typeTable); 41 static void SetExportValueTable(JSThread *thread, JSHandle<TSTypeTable> typeTable,
|
D | ts_type_table_generator.cpp | 90 JSHandle<TSTypeTable> typeTable = factory_->NewTSTypeTable(numTypes); in AddTypeTable() local 102 table->Set(thread_, TSModuleTable::GetTSTypeTableOffset(numberOfTSTypeTable), typeTable); in AddTypeTable() 104 return typeTable; in AddTypeTable()
|
D | ts_manager.cpp | 512 JSHandle<TSTypeTable> typeTable = GetTSTypeTable(tableIndex); in GetOrCreateUnionType() local 513 GlobalTSTypeRef foundUnionRef = FindUnionInTypeTable(typeTable, unionType); in GetOrCreateUnionType() 540 JSHandle<TSTypeTable> typeTable(thread_, mTable->Get(tableOffset)); in GetTSTypeTable() local 541 return typeTable; in GetTSTypeTable() 817 JSHandle<TSTypeTable> typeTable = GetTSTypeTable(moduleId); in GetTSType() local 818 JSHandle<JSTaggedValue> tsType(thread_, typeTable->Get(localId)); in GetTSType()
|