Home
last modified time | relevance | path

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

12345678

/third_party/typescript/tests/baselines/reference/
DconstEnums.types183 const enum Comments {
184 >Comments : Comments
187 >"//" : (typeof Comments)["//"]
190 >"/*" : (typeof Comments)["/*"]
193 >"*/" : (typeof Comments)["*/"]
196 >"///" : (typeof Comments)["///"]
199 >"#" : (typeof Comments)["#"]
202 >"<!--" : (typeof Comments)["<!--"]
205 >"-->" : (typeof Comments)["-->"]
619 function baz(c: Comments) {
[all …]
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))
DconstEnums.js41 const enum Comments {
167 function baz(c: Comments) {
169 case Comments["//"]:
170 case Comments["/*"]:
171 case Comments["*/"]:
172 case Comments["///"]:
173 case Comments["#"]:
174 case Comments["<!--"]:
175 case Comments["-->"]:
DconstEnums.symbols138 const enum Comments {
139 >Comments : Symbol(Comments, Decl(constEnums.ts, 37, 1))
142 >"//" : Symbol(Comments["//"], Decl(constEnums.ts, 39, 21))
145 >"/*" : Symbol(Comments["/*"], Decl(constEnums.ts, 40, 9))
148 >"*/" : Symbol(Comments["*/"], Decl(constEnums.ts, 41, 9))
151 >"///" : Symbol(Comments["///"], Decl(constEnums.ts, 42, 9))
154 >"#" : Symbol(Comments["#"], Decl(constEnums.ts, 43, 10))
157 >"<!--" : Symbol(Comments["<!--"], Decl(constEnums.ts, 44, 8))
160 >"-->" : Symbol(Comments["-->"], Decl(constEnums.ts, 45, 11))
574 function baz(c: Comments) {
[all …]
DsourceMap-Comments.js.map1 //// [sourceMap-Comments.js.map]
2 {"version":3,"file":"sourceMap-Comments.js","sourceRoot":"","sources":["sourceMap-Comments.ts"],"na…
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
DexportDefaultExpressionComments.symbols4 * JSDoc Comments
DexportDefaultExpressionComments.types3 * JSDoc Comments
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/typescript/tests/cases/compiler/
DconstEnums.ts40 const enum Comments { enum
166 function baz(c: Comments) {
168 case Comments["//"]:
169 case Comments["/*"]:
170 case Comments["*/"]:
171 case Comments["///"]:
172 case Comments["#"]:
173 case Comments["<!--"]:
174 case 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/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/docs/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/PyYAML/tests/data/
Dspec-09-23.data2 # Comments:
/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/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/vc10/
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/zlib/contrib/vstudio/vc11/
Dzlib.rc24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"

12345678