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

References

tools/clang/tools/extra/clang-doc/HTMLGenerator.cpp
  764   InfoTitle = (getTagType(I.TagType) + " " + I.Name).str();
  764   InfoTitle = (getTagType(I.TagType) + " " + I.Name).str();
  767   if (I.DefLoc) {
  769       Out.emplace_back(writeFileDefinition(I.DefLoc.getValue()));
  772           I.DefLoc.getValue(), StringRef{CDCtx.RepositoryUrl.getValue()}));
  776   if (!I.Description.empty())
  777     Out.emplace_back(genHTML(I.Description));
  780       genReferenceList(I.Parents, I.Path);
  780       genReferenceList(I.Parents, I.Path);
  782       genReferenceList(I.VirtualParents, I.Path);
  782       genReferenceList(I.VirtualParents, I.Path);
  799       genRecordMembersBlock(I.Members, I.Path);
  799       genRecordMembersBlock(I.Members, I.Path);
  802       genReferencesBlock(I.ChildRecords, "Records", I.Path);
  802       genReferencesBlock(I.ChildRecords, "Records", I.Path);
  806       genFunctionsBlock(I.ChildFunctions, CDCtx, I.Path);
  806       genFunctionsBlock(I.ChildFunctions, CDCtx, I.Path);
  809       genEnumsBlock(I.ChildEnums, CDCtx);
  812   if (!I.Members.empty())
  814   if (!I.ChildRecords.empty())
  816   if (!I.ChildFunctions.empty())
  818         genInfoIndexItem(I.ChildFunctions, "Functions"));
  819   if (!I.ChildEnums.empty())
  820     InfoIndex.Children.emplace_back(genInfoIndexItem(I.ChildEnums, "Enums"));