Home
last modified time | relevance | path

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

123456789

/third_party/typescript/tests/baselines/reference/
DsourceMap-Comments.symbols1 === 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))
DsourceMap-Comments.sourcemap.txt2 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
DsourceMap-Comments.js.map1 //// [sourceMap-Comments.js.map]
2 {"version":3,"file":"sourceMap-Comments.js","sourceRoot":"","sources":["sourceMap-Comments.ts"],"na…
DsourceMap-Comments.types1 === tests/cases/compiler/sourceMap-Comments.ts ===
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DByteStreamer.h76 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()
DDebugLocStream.cpp32 Comments.erase(Comments.begin() + Entries.back().CommentOffset, in finalizeEntry()
33 Comments.end()); in finalizeEntry()
DDebugLocStream.h51 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()
DDwarfExpression.h351 std::vector<std::string> Comments; member
354 TempBuffer(bool GenerateComments) : BS(Bytes, Comments, GenerateComments) {} in TempBuffer()
/third_party/jsoncpp/include/json/
Dvalue.h634 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/
DDisassembler.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()
/third_party/gn/src/gn/
Dparse_tree.h41 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_;
Dparse_tree.cc118 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/
Djson_value.cpp971 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/
DModuleSummaryIndex.cpp266 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/
Dcomments.md1 # 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/
DMCAsmStreamer.cpp374 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/
Dspec-09-23.data2 # Comments:
/third_party/zlib/
DREADME.OpenSource9 … data format used by the zlib library is described by RFCs (Request for Comments) 1950 to 1952 in …
/third_party/zlib/contrib/vstudio/vc11/
Dzlib.rc24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
/third_party/zlib/contrib/vstudio/vc9/
Dzlib.rc24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
/third_party/zlib/contrib/vstudio/vc10/
Dzlib.rc24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
/third_party/zlib/contrib/vstudio/vc14/
Dzlib.rc24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
/third_party/zlib/contrib/vstudio/vc12/
Dzlib.rc24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
/third_party/libxml2/win32/
Dlibxml2.rc29 VALUE "Comments", "For more information visit https://gitlab.gnome.org/GNOME/libxml2\0"
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Dmicrohttpd_dll_res.rc.in27 VALUE "Comments", "http://www.gnu.org/software/libmicrohttpd/\0"

123456789