Home
last modified time | relevance | path

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

/src/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.cpp273 const unsigned CommentEndOffset = in getRawCommentForDeclNoCacheImpl() local
284 StringRef Text(Buffer + CommentEndOffset, in getRawCommentForDeclNoCacheImpl()
285 DeclLocDecomp.second - CommentEndOffset); in getRawCommentForDeclNoCacheImpl()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DRawCommentList.h234 mutable llvm::DenseMap<RawComment *, unsigned> CommentEndOffset; variable