Home | History | Annotate | Download | only in Frontend

Lines Matching refs:Name

467       Out.indent(2) << "Module name: " << ModuleName << "\n";
476 #define LANGOPT(Name, Bits, Default, Description) \
477 DUMP_BOOLEAN(LangOpts.Name, Description);
478 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
480 << static_cast<unsigned>(LangOpts.get##Name()) << "\n";
481 #define VALUE_LANGOPT(Name, Bits, Default, Description) \
482 Out.indent(4) << Description << ": " << LangOpts.Name << "\n";
483 #define BENIGN_LANGOPT(Name, Bits, Default, Description)
484 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description)
517 #define DIAGOPT(Name, Bits, Default) DUMP_BOOLEAN(DiagOpts->Name, #Name);
518 #define ENUM_DIAGOPT(Name, Type, Bits, Default) \
519 Out.indent(4) << #Name << ": " << DiagOpts->get##Name() << "\n";
520 #define VALUE_DIAGOPT(Name, Bits, Default) \
521 Out.indent(4) << #Name << ": " << DiagOpts->Name << "\n";