Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp348 auto Cached = CommentEndOffset.find(C); in getCommentEndOffset()
349 if (Cached != CommentEndOffset.end()) in getCommentEndOffset()
353 CommentEndOffset[C] = Offset; in getCommentEndOffset()
H A DASTContext.cpp292 const unsigned CommentEndOffset = in getRawCommentForDeclNoCacheImpl() local
303 StringRef Text(Buffer + CommentEndOffset, in getRawCommentForDeclNoCacheImpl()
304 DeclLocDecomp.second - CommentEndOffset); in getRawCommentForDeclNoCacheImpl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DRawCommentList.h234 mutable llvm::DenseMap<RawComment *, unsigned> CommentEndOffset; variable