Lines Matching refs:InfoPath
271 genStylesheetsHTML(StringRef InfoPath, const ClangDocContext &CDCtx) { in genStylesheetsHTML() argument
276 SmallString<128> StylesheetPath = computeRelativePath("", InfoPath); in genStylesheetsHTML()
288 genJsScriptsHTML(StringRef InfoPath, const ClangDocContext &CDCtx) { in genJsScriptsHTML() argument
292 SmallString<128> ScriptPath = computeRelativePath("", InfoPath); in genJsScriptsHTML()
463 genHTML(const Index &Index, StringRef InfoPath, bool IsOutermostList);
469 genFileHeadNodes(StringRef Title, StringRef InfoPath, in genFileHeadNodes() argument
477 genStylesheetsHTML(InfoPath, CDCtx); in genFileHeadNodes()
480 genJsScriptsHTML(InfoPath, CDCtx); in genFileHeadNodes()
498 StringRef InfoPath, in genInfoFileMainNode() argument
505 LeftSidebarNode->Attributes.emplace_back("path", std::string(InfoPath)); in genInfoFileMainNode()
520 genHTML(InfoIndex, InfoPath, true); in genInfoFileMainNode()
543 genInfoFile(StringRef Title, StringRef InfoPath, in genInfoFile() argument
549 genFileHeadNodes(Title, InfoPath, CDCtx); in genInfoFile()
552 genInfoFileMainNode(InfoPath, MainContentNodes, InfoIndex); in genInfoFile()
574 genHTML(const Index &Index, StringRef InfoPath, bool IsOutermostList) { in genHTML() argument
580 SpanBody->Children.emplace_back(genReference(Index, InfoPath)); in genHTML()
583 Index, InfoPath, StringRef{Index.JumpToSection.getValue()})); in genHTML()
593 std::vector<std::unique_ptr<TagNode>> Nodes = genHTML(C, InfoPath, false); in genHTML()