Searched refs:TSModuleTable (Results 1 – 6 of 6) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/ts_types/ |
| D | ts_type_table_generator.cpp | 81 if (moduleIdBaseOnFile != TSModuleTable::NOT_FOUND) { in TryGetModuleId() 98 JSHandle<TSModuleTable> table = GetTSModuleTable(); in AddTypeTable() 100 if (TSModuleTable::GetAbcRequestOffset(numberOfTSTypeTable) >= table->GetLength()) { in AddTypeTable() 101 … table = JSHandle<TSModuleTable>(TaggedArray::SetCapacity(thread_, JSHandle<TaggedArray>(table), in AddTypeTable() 102 table->GetLength() * TSModuleTable::INCREASE_CAPACITY_RATE)); in AddTypeTable() 106 table->Set(thread_, TSModuleTable::GetAbcRequestOffset(numberOfTSTypeTable), abcNameStr); in AddTypeTable() 107 table->Set(thread_, TSModuleTable::GetModuleRequestOffset(numberOfTSTypeTable), recordNameStr); in AddTypeTable() 108 …table->Set(thread_, TSModuleTable::GetSortIdOffset(numberOfTSTypeTable), JSTaggedValue(numberOfTST… in AddTypeTable() 109 table->Set(thread_, TSModuleTable::GetTSTypeTableOffset(numberOfTSTypeTable), typeTable); in AddTypeTable()
|
| D | ts_type_table_generator.h | 41 inline JSHandle<TSModuleTable> GetTSModuleTable() const in GetTSModuleTable() 48 JSHandle<TSModuleTable> table = GetTSModuleTable(); in GetNextModuleId()
|
| D | ts_manager.h | 59 class TSModuleTable : public TaggedArray { 73 static TSModuleTable *Cast(TaggedObject *object) in Cast() 76 return static_cast<TSModuleTable *>(object); in Cast() 127 JSHandle<TSModuleTable> GetTSModuleTable() const in GetTSModuleTable() 129 return JSHandle<TSModuleTable>(reinterpret_cast<uintptr_t>(&globalModuleTable_)); in GetTSModuleTable() 132 void SetTSModuleTable(JSHandle<TSModuleTable> table) in SetTSModuleTable()
|
| D | ts_manager.cpp | 34 JSHandle<TSModuleTable> mTable = factory_->NewTSModuleTable(TSModuleTable::INITIAL_CAPACITY); in TSManager() 348 JSHandle<TSModuleTable> table = GetTSModuleTable(); in Dump() 449 JSHandle<TSModuleTable> mTable = GetTSModuleTable(); in GetOrCreateUnionType() 476 JSHandle<TSModuleTable> mTable = GetTSModuleTable(); in GetTSTypeTable() 477 uint32_t tableOffset = TSModuleTable::GetTSTypeTableOffset(entry); in GetTSTypeTable() 484 JSHandle<TSModuleTable> mTable = GetTSModuleTable(); in SetTSTypeTable() 485 uint32_t tableOffset = TSModuleTable::GetTSTypeTableOffset(tableId); in SetTSTypeTable() 1375 JSHandle<TSModuleTable> mTable = GetTSModuleTable(); in PrintNumOfTypes() 1424 JSHandle<EcmaString> TSModuleTable::GetModuleRequestByModuleId(JSThread *thread, int entry) const in GetModuleRequestByModuleId() 1431 JSHandle<EcmaString> TSModuleTable::GetAbcRequestByModuleId(JSThread *thread, int entry) const in GetAbcRequestByModuleId() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | object_factory.h | 101 class TSModuleTable; variable 550 JSHandle<TSModuleTable> NewTSModuleTable(uint32_t length);
|
| D | object_factory.cpp | 3873 JSHandle<TSModuleTable> ObjectFactory::NewTSModuleTable(uint32_t length) in NewTSModuleTable() 3881 JSHandle<TSModuleTable> array(thread_, header); in NewTSModuleTable()
|