reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Basic/Module.cpp
  335     Result->Exports.push_back(Module::ExportDecl(nullptr, true));
  353   for (unsigned I = 0, N = Exports.size(); I != N; ++I) {
  354     Module *Mod = Exports[I].getPointer();
  355     if (!Exports[I].getInt()) {
  368     if (Module *Restriction = Exports[I].getPointer())
  527   for (unsigned I = 0, N = Exports.size(); I != N; ++I) {
  530     if (Module *Restriction = Exports[I].getPointer()) {
  532       if (Exports[I].getInt())
tools/clang/lib/Lex/ModuleMap.cpp
  628         if (UmbrellaModule->InferExportWildcard && Result->Exports.empty())
  629           Result->Exports.push_back(Module::ExportDecl(nullptr, true));
  644       if (UmbrellaModule->InferExportWildcard && Result->Exports.empty())
  645         Result->Exports.push_back(Module::ExportDecl(nullptr, true));
  877     M->Exports.push_back(Module::ExportDecl(nullptr, true));
 1028   Result->Exports.push_back(Module::ExportDecl(nullptr, true));
 1273       Mod->Exports.push_back(Export);
tools/clang/lib/Sema/SemaModule.cpp
  398       getCurrentModule()->Exports.emplace_back(Mod, false);
tools/clang/lib/Serialization/ASTReader.cpp
 4331         Unresolved.Mod->Exports.push_back(
tools/clang/lib/Serialization/ASTWriter.cpp
 3037     if (!Mod->Exports.empty()) {
 3039       for (const auto &E : Mod->Exports) {