Searched refs:Comments (Results 1 - 16 of 16) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.cpp33 Comments.erase(Comments.begin() + Entries.back().CommentOffset,
34 Comments.end());
H A DByteStreamer.h78 SmallVectorImpl<std::string> &Comments; member in class:llvm::final
87 SmallVectorImpl<std::string> &Comments,
89 : Buffer(Buffer), Comments(Comments), GenerateComments(GenerateComments) {}
93 Comments.push_back(Comment.str());
99 Comments.push_back(Comment.str());
105 Comments.push_back(Comment.str());
86 BufferByteStreamer(SmallVectorImpl<char> &Buffer, SmallVectorImpl<std::string> &Comments, bool GenerateComments) argument
H A DDebugLocStream.h56 SmallVector<std::string, 32> Comments; member in class:llvm::DebugLocStream
97 Entries.emplace_back(BeginSym, EndSym, DWARFBytes.size(), Comments.size());
105 return BufferByteStreamer(DWARFBytes, Comments, GenerateComments);
121 return makeArrayRef(Comments)
148 return Comments.size() - Entries[EI].CommentOffset;
H A DDwarfDebug.cpp1546 auto &&Comments = DebugLocs.getComments(Entry); local
1547 auto Comment = Comments.begin();
1548 auto End = Comments.end();
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DRawCommentList.cpp278 while (!Comments.empty() &&
279 !SourceMgr.isBeforeInTranslationUnit(Comments.back()->getLocStart(),
283 Comments.pop_back();
292 if (Comments.empty()) {
293 Comments.push_back(new (Allocator) RawComment(RC));
297 const RawComment &C1 = *Comments.back();
320 *Comments.back() = RawComment(SourceMgr, MergedRange, true,
323 Comments.push_back(new (Allocator) RawComment(RC));
329 MergedComments.reserve(Comments.size() + DeserializedComments.size());
331 std::merge(Comments
[all...]
H A DASTContext.cpp69 ArrayRef<RawComment *> RawComments = Comments.getComments();
129 ArrayRef<RawComment *> RawComments = Comments.getComments();
751 Listener(nullptr), Comments(SM), CommentsLoaded(false),
/freebsd-11.0-release/contrib/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp128 StringRef Comments = DC->CommentsToEmit.str(); local
134 while (!Comments.empty()) {
139 size_t Position = Comments.find('\n');
140 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position);
142 Comments = Comments.substr(Position+1);
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DRawCommentList.h189 return Comments;
194 std::vector<RawComment *> Comments; member in class:clang::RawCommentList
H A DASTContext.h609 RawCommentList Comments;
671 /// Raw comments are owned by Comments list. This mapping is populated
685 return Comments;
691 Comments.addComment(RC, BumpAlloc);
/freebsd-11.0-release/contrib/llvm/lib/MC/
H A DMCAsmStreamer.cpp274 StringRef Comments = CommentToEmit; local
276 assert(Comments.back() == '\n' &&
281 size_t Position = Comments.find('\n');
282 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
284 Comments = Comments.substr(Position+1);
285 } while (!Comments.empty());
/freebsd-11.0-release/contrib/bmake/unit-tests/
H A Descape.mk8 # Comments start with a <number-sign> ( '#' ) and continue until an
/freebsd-11.0-release/contrib/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1006 SmallString<40> Comments;
1007 raw_svector_ostream CommentStream(Comments);
1091 Comments.clear();
H A DMachODump.cpp5862 StringRef Comments = CommentsToEmit.str(); local
5867 while (!Comments.empty()) {
5872 size_t Position = Comments.find('\n');
5873 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position);
5875 Comments = Comments.substr(Position + 1);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp8205 std::vector<RawComment *> Comments;
8211 Comments.clear();
8243 Comments.push_back(new (Context) RawComment(
8251 Context.Comments.addDeserializedComments(Comments);
H A DASTWriter.cpp994 // Comments Block.
2842 ArrayRef<RawComment *> RawComments = Context->Comments.getComments();
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDecl.cpp10381 ArrayRef<RawComment *> Comments = Context.getRawCommentList().getComments(); local
10382 if (!Comments.empty() &&
10383 !Comments.back()->isAttached()) {

Completed in 298 milliseconds