Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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.cpp262 const unsigned CommentEndOffset = in getRawCommentForDeclNoCacheImpl() local
273 StringRef Text(Buffer + CommentEndOffset, in getRawCommentForDeclNoCacheImpl()
274 DeclLocDecomp.second - CommentEndOffset); in getRawCommentForDeclNoCacheImpl()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DRawCommentList.h217 mutable llvm::DenseMap<RawComment *, unsigned> CommentEndOffset; variable