Home
last modified time | relevance | path

Searched refs:Comments (Results 1 – 25 of 77) sorted by relevance

1234

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DByteStreamer.h93 std::vector<std::string> &Comments; variable
102 std::vector<std::string> &Comments, bool GenerateComments) in BufferByteStreamer() argument
103 : Buffer(Buffer), Comments(Comments), GenerateComments(GenerateComments) { in BufferByteStreamer()
108 Comments.push_back(Comment.str()); in emitInt8()
114 Comments.push_back(Comment.str()); in emitSLEB128()
118 Comments.push_back(""); in emitSLEB128()
127 Comments.push_back(Comment.str()); in emitULEB128()
131 Comments.push_back(""); in emitULEB128()
H A DDebugLocStream.cpp32 Comments.erase(Comments.begin() + Entries.back().CommentOffset, in finalizeEntry()
33 Comments.end()); in finalizeEntry()
H A DDebugLocStream.h50 std::vector<std::string> Comments;
98 Entries.push_back({BeginSym, EndSym, DWARFBytes.size(), Comments.size()}); in startEntry()
106 return BufferByteStreamer(DWARFBytes, Comments, GenerateComments); in getStreamer()
121 return ArrayRef(Comments).slice(Entries[EI].CommentOffset, in getComments()
148 return Comments.size() - Entries[EI].CommentOffset; in getNumComments()
51 std::vector<std::string> Comments; global() variable
H A DDwarfExpression.h310 std::vector<std::string> Comments; member
313 TempBuffer(bool GenerateComments) : BS(Bytes, Comments, GenerateComments) {} in TempBuffer()
H A DDwarfDebug.cpp225 const char *Comment = (Byte.index() < TmpBuf->Comments.size()) in commitTemporaryBuffer()
226 ? TmpBuf->Comments[Byte.index()].c_str() in commitTemporaryBuffer()
231 TmpBuf->Comments.clear(); in commitTemporaryBuffer()
3033 auto &&Comments = DebugLocs.getComments(Entry); in emitDebugLocEntry()
3034 auto Comment = Comments.begin(); in emitDebugLocEntry()
3035 auto End = Comments.end(); in emitDebugLocEntry()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZHLASMAsmStreamer.cpp122 StringRef Comments = CommentToEmit; in EmitComment() local
124 assert(Comments.back() == '\n' && "Comment array not newline terminated"); in EmitComment()
127 size_t Position = std::min(InstLimit - 2, Comments.find('\n')); in EmitComment()
128 FOS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) in EmitComment()
131 if (Comments[Position] == '\n') in EmitComment()
133 Comments = Comments.substr(Position); in EmitComment()
134 } while (!Comments.empty()); in EmitComment()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp141 StringRef Comments = DC->CommentsToEmit.str(); in emitComments() local
147 while (!Comments.empty()) { in emitComments()
152 size_t Position = Comments.find('\n'); in emitComments()
153 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position); in emitComments()
155 Comments = Comments.substr(Position+1); in emitComments()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp403 std::string Comments; member
426 if (Comments.empty()) in addComment()
427 Comments = " // "; in addComment()
429 Comments += ", "; in addComment()
430 Comments += Comment.str(); in addComment()
443 Ret += Comments; in getAsString()
/freebsd/contrib/pkgconf/tests/lib1/
H A Dcomments-in-fields.pc2 Description: Comments in fields test case
/freebsd/contrib/libpcap/
H A Dpcap-dll.rc20 VALUE "Comments", "https://github.com/the-tcpdump-group/libpcap/"
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.h119 uint64_t Address, raw_ostream &Comments) const;
123 raw_ostream &Comments) const;
H A DAMDGPUDisassembler.cpp455 raw_ostream &Comments) const { in tryDecodeInst()
473 Comments << LocalComments; in tryDecodeInst()
484 raw_ostream &Comments) const { in tryDecodeInst()
486 if (DecodeStatus Res = tryDecodeInst(T, MI, Inst, Address, Comments)) in tryDecodeInst()
/freebsd/contrib/libpcap/rpcapd/
H A Drpcapd.rc23 VALUE "Comments", "https://github.com/the-tcpdump-group/libpcap/"
/freebsd/contrib/tcsh/
H A DREADME.md16 Comments, questions, etc. (even flames) are welcome via email to
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp460 StringRef Comments = CommentToEmit; in EmitCommentsAndEOL() local
462 assert(Comments.back() == '\n' && in EmitCommentsAndEOL()
467 size_t Position = Comments.find('\n'); in EmitCommentsAndEOL()
468 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n'; in EmitCommentsAndEOL()
470 Comments = Comments.substr(Position+1); in EmitCommentsAndEOL()
471 } while (!Comments.empty()); in EmitCommentsAndEOL()
526 StringRef Comments = ExplicitCommentToEmit; in emitExplicitComments() local
527 if (!Comments.empty()) in emitExplicitComments()
528 OS << Comments; in emitExplicitComments()
2449 StringRef Comments = CommentToEmit; in emitInstruction() local
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dlibomp.rc.var50 VALUE "Comments",
/freebsd/usr.sbin/cron/doc/
H A DFEATURES53 -- Comments and blank lines are allowed in the crontab file. Comments
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.cpp4790 const ArrayRef<FormatToken *> &Comments, const FormatToken *NextTok) { in distributeComments() argument
4809 if (Comments.empty()) in distributeComments()
4816 for (unsigned i = Comments.size() - 1; i > 0; --i) { in distributeComments()
4817 if (Comments[i]->OriginalColumn == NextTok->OriginalColumn) { in distributeComments()
4823 for (unsigned i = 0, e = Comments.size(); i < e; ++i) { in distributeComments()
4824 FormatToken *FormatTok = Comments[i]; in distributeComments()
4843 SmallVector<FormatToken *, 1> Comments; in readToken() local
4891 distributeComments(Comments, FormatTok); in readToken()
4892 Comments.clear(); in readToken()
5004 distributeComments(Comments, FormatTok); in readToken()
[all …]
H A DUnwrappedLineParser.h234 void distributeComments(const ArrayRef<FormatToken *> &Comments,
/freebsd/contrib/ntp/
H A DNOTES.y2kfixes48 Comments:
/freebsd/lib/libpam/pam.d/
H A DREADME19 Comments are introduced with a hash mark ('#'). Blank lines and lines
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp700 StringRef Comments, in emitPostInstructionInfo() argument
703 if (!Comments.empty()) { in emitPostInstructionInfo()
706 std::tie(Comment, Comments) = Comments.split('\n'); in emitPostInstructionInfo()
717 } while (!Comments.empty()); in emitPostInstructionInfo()
765 const MCSubtargetInfo &STI, StringRef Comments, in emitPostInstructionInfo() argument
2000 SmallString<40> Comments; in disassembleObject() local
2001 raw_svector_ostream CommentStream(Comments); in disassembleObject()
2574 Comments.clear(); in disassembleObject()
/freebsd/crypto/heimdal/lib/wind/
H A Drfc4013.txt8 Request for Comments: 4013 OpenLDAP Foundation
151 # Input Output Comments
/freebsd/lib/libpmc/pmu-events/
H A DREADME116 Comments:
/freebsd/sys/contrib/zlib/
H A DREADME5 library is described by RFCs (Request for Comments) 1950 to 1952 at

1234