Lines Matching defs:TextNode
85 struct TextNode : public HTMLNode {
86 TextNode(const Twine &Text)
96 Children.emplace_back(std::make_unique<TextNode>(Text.str()));
205 void TextNode::render(llvm::raw_ostream &OS, int IndentationLevel) {
349 return std::make_unique<TextNode>(Type.Name);
368 Out.emplace_back(std::make_unique<TextNode>(", "));
464 MemberDecl->Children.emplace_back(std::make_unique<TextNode>(Access));
466 MemberDecl->Children.emplace_back(std::make_unique<TextNode>(" " + M.Name));
504 Node->Children.emplace_back(std::make_unique<TextNode>("Defined at line "));
512 Node->Children.emplace_back(std::make_unique<TextNode>(" of file "));
697 return std::make_unique<TextNode>(I.Text);
770 std::make_unique<TextNode>(Access + " "));
774 FunctionHeader->Children.emplace_back(std::make_unique<TextNode>(" "));
777 std::make_unique<TextNode>(I.Name + "("));
781 FunctionHeader->Children.emplace_back(std::make_unique<TextNode>(", "));
784 std::make_unique<TextNode>(" " + P.Name));
786 FunctionHeader->Children.emplace_back(std::make_unique<TextNode>(")"));
874 PBody->Children.emplace_back(std::make_unique<TextNode>("Inherits from "));
881 PBody->Children.emplace_back(std::make_unique<TextNode>(", "));