Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-doc/
H A DBitcodeReader.cpp333 template <typename T> llvm::Expected<CommentInfo *> getCommentInfo(T I) { in getCommentInfo() function
338 template <> llvm::Expected<CommentInfo *> getCommentInfo(FunctionInfo *I) { in getCommentInfo() function
343 template <> llvm::Expected<CommentInfo *> getCommentInfo(NamespaceInfo *I) { in getCommentInfo() function
348 template <> llvm::Expected<CommentInfo *> getCommentInfo(RecordInfo *I) { in getCommentInfo() function
353 template <> llvm::Expected<CommentInfo *> getCommentInfo(EnumInfo *I) { in getCommentInfo() function
358 template <> llvm::Expected<CommentInfo *> getCommentInfo(CommentInfo *I) { in getCommentInfo() function
364 llvm::Expected<CommentInfo *> getCommentInfo(std::unique_ptr<CommentInfo> &I) { in getCommentInfo() function
365 return getCommentInfo(I.get()); in getCommentInfo()
586 auto Comment = getCommentInfo(I); in readSubBlock()