Lines Matching defs:auto
27 auto *table = debugInfoStorage_.GetImportExportTable(filePath);
34 const auto &imports = table->GetImports();
35 auto optOverloadSet = imports.find(entityName);
41 for (const auto &[path, entity] : optOverloadSet->second) {
51 auto *table = debugInfoStorage_.GetImportExportTable(filePath);
57 const auto &exports = table->GetExports();
58 const auto optOverloadSet = exports.find(entityName);
61 for (const auto &[path, entity] : optOverloadSet->second) {
72 const auto optReExportAll = exports.find(STAR_IMPORT);
75 for (const auto &[path, entity] : optReExportAll->second) {
87 auto *table = debugInfoStorage_.GetImportExportTable(filePath);
93 const auto &imports = table->GetImports();
94 auto optEntity = imports.find(bindingName);
100 for (const auto &[path, entity] : optEntity->second) {
111 auto *table = debugInfoStorage_.GetImportExportTable(filePath);
118 const auto &imports = table->GetImports();
119 auto optEntity = imports.find(entityName);
130 auto [path, entity] = optEntity->second[0];
139 auto *table = debugInfoStorage_.GetImportExportTable(filePath);
145 const auto &exports = table->GetExports();
146 const auto optOverloadSet = exports.find(entityName);
154 const auto &[path, entity] = optOverloadSet->second[0];
161 const auto optReExportAll = exports.find(STAR_IMPORT);
164 for (const auto &[path, entity] : optReExportAll->second) {
169 auto optResult = FindExportedEntity(path, entityName);