Home
last modified time | relevance | path

Searched refs:getArgText (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang/lib/Index/
H A DCommentToXML.cpp272 StringRef Arg0 = C->getArgText(0); in visitInlineCommandComment()
279 appendToResultWithHTMLEscaping(C->getArgText(i)); in visitInlineCommandComment()
621 StringRef Arg0 = C->getArgText(0); in visitInlineCommandComment()
628 appendToResultWithXMLEscaping(C->getArgText(i)); in visitInlineCommandComment()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCXComment.cpp183 return cxstring::createRef(ICC->getArgText(ArgIdx)); in clang_InlineCommandComment_getArgText()
249 return cxstring::createRef(BCC->getArgText(ArgIdx)); in clang_BlockCommandComment_getArgText()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DComment.h358 StringRef getArgText(unsigned Idx) const { in getArgText() function
655 StringRef getArgText(unsigned Idx) const { in getArgText() function
/llvm-project-15.0.7/clang-tools-extra/clang-doc/
H A DSerialize.cpp108 CurrentCI.Args.push_back(C->getArgText(I)); in visitInlineCommandComment()
132 CurrentCI.Args.push_back(C->getArgText(I)); in visitBlockCommandComment()
/llvm-project-15.0.7/clang/lib/AST/
H A DJSONNodeDumper.cpp1603 Args.push_back(C->getArgText(I)); in visitInlineCommandComment()
1635 Args.push_back(C->getArgText(I)); in visitBlockCommandComment()
H A DTextNodeDumper.cpp790 OS << " Arg[" << i << "]=\"" << C->getArgText(i) << "\""; in visitInlineCommandComment()
816 OS << " Arg[" << i << "]=\"" << C->getArgText(i) << "\""; in visitBlockCommandComment()
/llvm-project-15.0.7/clang/unittests/AST/
H A DCommentParser.cpp314 StringRef ActualArg = ICC->getArgText(0); in HasInlineCommandAt()