Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp351 auto Cached = CommentEndOffset.find(C); in getCommentEndOffset()
352 if (Cached != CommentEndOffset.end()) in getCommentEndOffset()
356 CommentEndOffset[C] = Offset; in getCommentEndOffset()
H A DASTContext.cpp270 const unsigned CommentEndOffset = in getRawCommentForDeclNoCacheImpl() local
281 StringRef Text(Buffer + CommentEndOffset, in getRawCommentForDeclNoCacheImpl()
282 DeclLocDecomp.second - CommentEndOffset); in getRawCommentForDeclNoCacheImpl()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DRawCommentList.h229 mutable llvm::DenseMap<RawComment *, unsigned> CommentEndOffset; variable