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

References

tools/clang/tools/extra/clang-doc/HTMLGenerator.cpp
  722   if (I.Name.str() == "")
  725     InfoTitle = ("namespace " + I.Name).str();
  730   if (!I.Description.empty())
  731     Out.emplace_back(genHTML(I.Description));
  734       genReferencesBlock(I.ChildNamespaces, "Namespaces", I.Path);
  734       genReferencesBlock(I.ChildNamespaces, "Namespaces", I.Path);
  737       genReferencesBlock(I.ChildRecords, "Records", I.Path);
  737       genReferencesBlock(I.ChildRecords, "Records", I.Path);
  741       genFunctionsBlock(I.ChildFunctions, CDCtx, I.Path);
  741       genFunctionsBlock(I.ChildFunctions, CDCtx, I.Path);
  744       genEnumsBlock(I.ChildEnums, CDCtx);
  747   if (!I.ChildNamespaces.empty())
  749   if (!I.ChildRecords.empty())
  751   if (!I.ChildFunctions.empty())
  753         genInfoIndexItem(I.ChildFunctions, "Functions"));
  754   if (!I.ChildEnums.empty())
  755     InfoIndex.Children.emplace_back(genInfoIndexItem(I.ChildEnums, "Enums"));