Home
last modified time | relevance | path

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

123

/freebsd-head/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
HDByteStreamer.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()
HDDebugLocStream.cpp32 Comments.erase(Comments.begin() + Entries.back().CommentOffset, in finalizeEntry()
33 Comments.end()); in finalizeEntry()
HDDebugLocStream.h50 std::vector<std::string> Comments; variable
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()
HDDwarfExpression.h310 std::vector<std::string> Comments; member
313 TempBuffer(bool GenerateComments) : BS(Bytes, Comments, GenerateComments) {} in TempBuffer()
HDDwarfDebug.cpp221 const char *Comment = (Byte.index() < TmpBuf->Comments.size()) in commitTemporaryBuffer()
222 ? TmpBuf->Comments[Byte.index()].c_str() in commitTemporaryBuffer()
227 TmpBuf->Comments.clear(); in commitTemporaryBuffer()
2595 auto &&Comments = DebugLocs.getComments(Entry); in emitDebugLocEntry()
2596 auto Comment = Comments.begin(); in emitDebugLocEntry()
2597 auto End = Comments.end(); in emitDebugLocEntry()
/freebsd-head/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
HDDisassembler.cpp142 StringRef Comments = DC->CommentsToEmit.str(); in emitComments() local
148 while (!Comments.empty()) { in emitComments()
153 size_t Position = Comments.find('\n'); in emitComments()
154 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position); in emitComments()
156 Comments = Comments.substr(Position+1); in emitComments()
/freebsd-head/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/
HDAMDGPUDisassembler.h133 uint64_t Address, raw_ostream &Comments) const { in tryDecodeInst() argument
151 Comments << LocalComments; in tryDecodeInst()
161 raw_ostream &Comments) const { in tryDecodeInst() argument
163 if (DecodeStatus Res = tryDecodeInst(T, MI, Inst, Address, Comments)) in tryDecodeInst()
/freebsd-head/contrib/llvm-project/llvm/lib/IR/
HDModuleSummaryIndex.cpp392 std::string Comments; member
415 if (Comments.empty()) in addComment()
416 Comments = " // "; in addComment()
418 Comments += ", "; in addComment()
419 Comments += Comment.str(); in addComment()
432 Ret += Comments; in getAsString()
/freebsd-head/contrib/libpcap/
HDpcap-dll.rc20 VALUE "Comments", "https://github.com/the-tcpdump-group/libpcap/"
/freebsd-head/contrib/libpcap/rpcapd/
HDrpcapd.rc23 VALUE "Comments", "https://github.com/the-tcpdump-group/libpcap/"
/freebsd-head/contrib/tcsh/
HDREADME.md16 Comments, questions, etc. (even flames) are welcome via email to
/freebsd-head/contrib/llvm-project/llvm/lib/MC/
HDMCAsmStreamer.cpp458 StringRef Comments = CommentToEmit; in EmitCommentsAndEOL() local
460 assert(Comments.back() == '\n' && in EmitCommentsAndEOL()
465 size_t Position = Comments.find('\n'); in EmitCommentsAndEOL()
466 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n'; in EmitCommentsAndEOL()
468 Comments = Comments.substr(Position+1); in EmitCommentsAndEOL()
469 } while (!Comments.empty()); in EmitCommentsAndEOL()
524 StringRef Comments = ExplicitCommentToEmit; in emitExplicitComments() local
525 if (!Comments.empty()) in emitExplicitComments()
526 OS << Comments; in emitExplicitComments()
2427 StringRef Comments = CommentToEmit; in emitInstruction() local
[all …]
/freebsd-head/contrib/llvm-project/openmp/runtime/src/
HDlibomp.rc.var50 VALUE "Comments",
/freebsd-head/usr.sbin/cron/doc/
HDFEATURES53 -- Comments and blank lines are allowed in the crontab file. Comments
/freebsd-head/contrib/llvm-project/clang/lib/Format/
HDUnwrappedLineParser.cpp4770 const SmallVectorImpl<FormatToken *> &Comments, in distributeComments() argument
4790 if (Comments.empty()) in distributeComments()
4797 for (unsigned i = Comments.size() - 1; i > 0; --i) { in distributeComments()
4798 if (Comments[i]->OriginalColumn == NextTok->OriginalColumn) { in distributeComments()
4804 for (unsigned i = 0, e = Comments.size(); i < e; ++i) { in distributeComments()
4805 FormatToken *FormatTok = Comments[i]; in distributeComments()
4824 SmallVector<FormatToken *, 1> Comments; in readToken() local
4865 distributeComments(Comments, FormatTok); in readToken()
4866 Comments.clear(); in readToken()
4978 distributeComments(Comments, FormatTok); in readToken()
[all …]
HDUnwrappedLineParser.h231 void distributeComments(const SmallVectorImpl<FormatToken *> &Comments,
/freebsd-head/contrib/ntp/
HDNOTES.y2kfixes48 Comments:
/freebsd-head/lib/libpam/pam.d/
HDREADME19 Comments are introduced with a hash mark ('#'). Blank lines and lines
/freebsd-head/crypto/heimdal/lib/wind/
HDrfc4013.txt8 Request for Comments: 4013 OpenLDAP Foundation
151 # Input Output Comments
/freebsd-head/contrib/llvm-project/llvm/tools/llvm-objdump/
HDllvm-objdump.cpp1603 StringRef Comments, in emitPostInstructionInfo() argument
1606 if (!Comments.empty()) { in emitPostInstructionInfo()
1609 std::tie(Comment, Comments) = Comments.split('\n'); in emitPostInstructionInfo()
1619 } while (!Comments.empty()); in emitPostInstructionInfo()
1922 SmallString<40> Comments; in disassembleObject() local
1923 raw_svector_ostream CommentStream(Comments); in disassembleObject()
2495 Comments.clear(); in disassembleObject()
/freebsd-head/lib/libpmc/pmu-events/
HDREADME116 Comments:
/freebsd-head/contrib/libucl/
HDREADME.md17 - [Comments](#comments)
208 ### Comments subsection
/freebsd-head/sys/contrib/zlib/
HDREADME5 (Request for Comments) 1950 to 1952 in the files
/freebsd-head/sys/dev/acpica/
HDacpi_quirks4 # Comments start with '#'. Any number of spaces/tabs are ok within a line.
/freebsd-head/sbin/pfctl/tests/
HDpfctl_test_list.inc102 PFCTL_TEST(0092, "Comments")

123