Searched refs:EntityInfo (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/evaluate/ |
H A D | pathResolver.h | 24 struct EntityInfo; 40 std::optional<EntityInfo> FindImportedEntity(std::string_view filePath, std::string_view entityName); 42 void FindImportedFunctions(ArenaVector<EntityInfo> &overloadSet, std::string_view filePath, 46 void FindExportedFunctions(ArenaVector<EntityInfo> &overloadSet, std::string_view filePath, 48 std::optional<EntityInfo> FindExportedEntity(std::string_view filePath, std::string_view entityName);
|
H A D | importExportTable.h | 23 struct EntityInfo final { 24 EntityInfo(std::string_view path, std::string_view entity) : filePath(path), entityName(entity) {} in EntityInfo() function 34 using AliasMap = ArenaUnorderedMap<std::string_view, ArenaVector<EntityInfo>>;
|
H A D | pathResolver.cpp | 23 void PathResolver::FindImportedFunctions(ArenaVector<EntityInfo> &overloadSet, std::string_view filePath, in FindImportedFunctions() 47 void PathResolver::FindExportedFunctions(ArenaVector<EntityInfo> &overloadSet, std::string_view filePath, in FindExportedFunctions() 64 overloadSet.push_back(EntityInfo(filePath, entity)); in FindExportedFunctions() 108 std::optional<EntityInfo> PathResolver::FindImportedEntity(std::string_view filePath, std::string_view entityName) in FindImportedEntity() 136 std::optional<EntityInfo> PathResolver::FindExportedEntity(std::string_view filePath, std::string_view entityName) in FindExportedEntity() 156 return EntityInfo(filePath, entity); in FindExportedEntity()
|
H A D | scopedDebugInfoPlugin.cpp | 321 ArenaVector<EntityInfo> importedFunctions(allocator->Adapter());
|
Completed in 2 milliseconds