HomeSort by: relevance | last modified time | path
    Searched defs:Documentation (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangOptionDocEmitter.cpp 1 //===- ClangOptionDocEmitter.cpp - Documentation for command line flags ---===//
31 struct Documentation {
35 struct DocumentedGroup : Documentation {
39 // Reorganize the records into a suitable form for emitting documentation.
40 Documentation extractDocumentation(RecordKeeper &Records) {
41 Documentation Result;
116 std::function<Documentation(Record *)> DocumentationForGroup =
117 [&](Record *R) -> Documentation {
118 Documentation D;
125 Documentation &Base = D.Groups.back()
    [all...]
ClangDiagnosticsEmitter.cpp 1638 // Diagnostic documentation generation
1708 // Get the documentation introduction paragraph.
1709 const Record *Documentation = Records.getDef("GlobalDocumentation");
1710 if (!Documentation) {
1711 PrintFatalError("The Documentation top-level definition is missing, "
1712 "no documentation will be generated.");
1716 OS << Documentation->getValueAsString("Intro") << "\n";
1817 auto Doc = G->getValueAsString("Documentation");

Completed in 28 milliseconds