/third_party/typescript/tests/baselines/reference/ |
D | sourceMap-Comments.symbols | 1 === tests/cases/compiler/sourceMap-Comments.ts === 3 >sas : Symbol(sas, Decl(sourceMap-Comments.ts, 0, 0)) 4 >tools : Symbol(tools, Decl(sourceMap-Comments.ts, 0, 11)) 7 >Test : Symbol(Test, Decl(sourceMap-Comments.ts, 0, 18)) 10 >doX : Symbol(Test.doX, Decl(sourceMap-Comments.ts, 1, 23)) 13 >f : Symbol(f, Decl(sourceMap-Comments.ts, 3, 15)) 16 >f : Symbol(f, Decl(sourceMap-Comments.ts, 3, 15))
|
D | sourceMap-Comments.sourcemap.txt | 2 JsFile: sourceMap-Comments.js 3 mapUrl: sourceMap-Comments.js.map 5 sources: sourceMap-Comments.ts 8 emittedFile:tests/cases/compiler/sourceMap-Comments.js 9 sourceFile:sourceMap-Comments.ts 457 >>>//# sourceMappingURL=sourceMap-Comments.js.map
|
D | sourceMap-Comments.js.map | 1 //// [sourceMap-Comments.js.map] 2 {"version":3,"file":"sourceMap-Comments.js","sourceRoot":"","sources":["sourceMap-Comments.ts"],"na…
|
D | sourceMap-Comments.types | 1 === tests/cases/compiler/sourceMap-Comments.ts ===
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | ByteStreamer.h | 76 std::vector<std::string> &Comments; variable 85 std::vector<std::string> &Comments, bool GenerateComments) in BufferByteStreamer() argument 86 : Buffer(Buffer), Comments(Comments), GenerateComments(GenerateComments) { in BufferByteStreamer() 91 Comments.push_back(Comment.str()); in EmitInt8() 97 Comments.push_back(Comment.str()); in EmitSLEB128() 101 Comments.push_back(""); in EmitSLEB128() 109 Comments.push_back(Comment.str()); in EmitULEB128() 113 Comments.push_back(""); in EmitULEB128()
|
D | DebugLocStream.cpp | 32 Comments.erase(Comments.begin() + Entries.back().CommentOffset, in finalizeEntry() 33 Comments.end()); in finalizeEntry()
|
D | DebugLocStream.h | 51 std::vector<std::string> Comments; variable 99 Entries.push_back({BeginSym, EndSym, DWARFBytes.size(), Comments.size()}); in startEntry() 107 return BufferByteStreamer(DWARFBytes, Comments, GenerateComments); in getStreamer() 123 return makeArrayRef(Comments) in getComments() 150 return Comments.size() - Entries[EI].CommentOffset; in getNumComments()
|
D | DwarfExpression.h | 351 std::vector<std::string> Comments; member 354 TempBuffer(bool GenerateComments) : BS(Bytes, Comments, GenerateComments) {} in TempBuffer()
|
/third_party/jsoncpp/include/json/ |
D | value.h | 634 class Comments { 636 Comments() = default; 637 Comments(const Comments& that); 638 Comments(Comments&& that) noexcept; 639 Comments& operator=(const Comments& that); 640 Comments& operator=(Comments&& that) noexcept; 649 Comments comments_;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCDisassembler/ |
D | Disassembler.cpp | 142 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()
|
/third_party/gn/src/gn/ |
D | parse_tree.h | 41 class Comments { 43 Comments(); 44 virtual ~Comments(); 71 Comments(const Comments&) = delete; 72 Comments& operator=(const Comments&) = delete; 109 const Comments* comments() const { return comments_.get(); } in comments() 110 Comments* comments_mutable(); 126 std::unique_ptr<Comments> comments_;
|
D | parse_tree.cc | 118 Comments* comments = node->comments_mutable(); in GetCommentsFromJSON() 161 Comments::Comments() = default; 163 Comments::~Comments() = default; 165 void Comments::ReverseSuffix() { in ReverseSuffix() 208 Comments* ParseNode::comments_mutable() { in comments_mutable() 210 comments_ = std::make_unique<Comments>(); in comments_mutable()
|
/third_party/jsoncpp/src/lib_json/ |
D | json_value.cpp | 971 comments_ = Comments{}; in initBasic() 1374 Value::Comments::Comments(const Comments& that) in Comments() function in Json::Value::Comments 1377 Value::Comments::Comments(Comments&& that) noexcept in Comments() function in Json::Value::Comments 1380 Value::Comments& Value::Comments::operator=(const Comments& that) { in operator =() 1385 Value::Comments& Value::Comments::operator=(Comments&& that) noexcept { in operator =() 1390 bool Value::Comments::has(CommentPlacement slot) const { in has() 1394 String Value::Comments::get(CommentPlacement slot) const { in get() 1400 void Value::Comments::set(CommentPlacement slot, String comment) { in set()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | ModuleSummaryIndex.cpp | 266 std::string Comments; member 289 if (Comments.empty()) in addComment() 290 Comments = " // "; in addComment() 292 Comments += ", "; in addComment() 293 Comments += Comment.str(); in addComment() 306 Ret += Comments; in getAsString()
|
/third_party/json/doc/mkdocs/docs/features/ |
D | comments.md | 1 # Comments chapter 5 1. Comments are not part of the [JSON specification](https://tools.ietf.org/html/rfc8259). You may … 14 …to `#!c true` in the parse function to ignore `//` or `/* */` comments. Comments will then be trea…
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCAsmStreamer.cpp | 374 StringRef Comments = CommentToEmit; in EmitCommentsAndEOL() local 376 assert(Comments.back() == '\n' && in EmitCommentsAndEOL() 381 size_t Position = Comments.find('\n'); in EmitCommentsAndEOL() 382 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n'; in EmitCommentsAndEOL() 384 Comments = Comments.substr(Position+1); in EmitCommentsAndEOL() 385 } while (!Comments.empty()); in EmitCommentsAndEOL() 440 StringRef Comments = ExplicitCommentToEmit; in emitExplicitComments() local 441 if (!Comments.empty()) in emitExplicitComments() 442 OS << Comments; in emitExplicitComments() 1953 StringRef Comments = CommentToEmit; in EmitInstruction() local [all …]
|
/third_party/PyYAML/tests/data/ |
D | spec-09-23.data | 2 # Comments:
|
/third_party/zlib/ |
D | README.OpenSource | 9 … data format used by the zlib library is described by RFCs (Request for Comments) 1950 to 1952 in …
|
/third_party/zlib/contrib/vstudio/vc11/ |
D | zlib.rc | 24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
|
/third_party/zlib/contrib/vstudio/vc9/ |
D | zlib.rc | 24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
|
/third_party/zlib/contrib/vstudio/vc10/ |
D | zlib.rc | 24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
|
/third_party/zlib/contrib/vstudio/vc14/ |
D | zlib.rc | 24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
|
/third_party/zlib/contrib/vstudio/vc12/ |
D | zlib.rc | 24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
|
/third_party/libxml2/win32/ |
D | libxml2.rc | 29 VALUE "Comments", "For more information visit https://gitlab.gnome.org/GNOME/libxml2\0"
|
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
D | microhttpd_dll_res.rc.in | 27 VALUE "Comments", "http://www.gnu.org/software/libmicrohttpd/\0"
|