Lines Matching refs:ED
553 ExportDecl ED; in parseExportDecl() local
554 ED.Location = consumeToken(); in parseExportDecl()
557 ED.Wildcard = false; in parseExportDecl()
561 ED.Id.push_back( in parseExportDecl()
574 ED.Wildcard = true; in parseExportDecl()
584 return std::move(ED); in parseExportDecl()
793 ExcludeDecl ED; in parseExcludeDecl() local
794 ED.Location = LeadingLoc; in parseExcludeDecl()
795 ED.Module = Tok.getString(); in parseExcludeDecl()
797 return std::move(ED); in parseExcludeDecl()
1183 [&](const ExcludeDecl &ED) { in dumpDecls() argument
1185 out << "exclude " << ED.Module << "\n"; in dumpDecls()
1187 [&](const ExportDecl &ED) { in dumpDecls() argument
1190 << (ED.Wildcard ? "*" : formatModuleId(ED.Id)) << "\n"; in dumpDecls()