Home
last modified time | relevance | path

Searched refs:Comment (Results 1 - 25 of 112) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DByteStreamer.h32 virtual void EmitInt8(uint8_t Byte, const Twine &Comment = "") = 0;
33 virtual void EmitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0;
34 virtual void EmitULEB128(uint64_t DWord, const Twine &Comment = "", unsigned PadTo = 0) = 0;
43 void EmitInt8(uint8_t Byte, const Twine &Comment) override {
44 AP.OutStreamer->AddComment(Comment);
47 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override {
48 AP.OutStreamer->AddComment(Comment);
51 void EmitULEB128(uint64_t DWord, const Twine &Comment, unsigned PadTo) override {
52 AP.OutStreamer->AddComment(Comment);
62 void EmitInt8(uint8_t Byte, const Twine &Comment) overrid in HashingByteStreamer()
[all...]
H A DDwarfExpression.h111 const char *Comment; member
179 virtual void emitOp(uint8_t Op, const char *Comment = nullptr) = 0;
216 void addReg(int DwarfReg, const char *Comment = nullptr);
364 void emitOp(uint8_t Op, const char *Comment = nullptr) override;
393 void emitOp(uint8_t Op, const char *Comment = nullptr) override;
H A DDwarfExpression.cpp42 void DwarfExpression::addReg(int DwarfReg, const char *Comment) { in addReg() argument
48 emitOp(dwarf::DW_OP_reg0 + DwarfReg, Comment); in addReg()
50 emitOp(dwarf::DW_OP_regx, Comment); in addReg()
251 addReg(Reg.DwarfRegNo, Reg.Comment); in addMachineRegExpression()
/third_party/typescript/tests/baselines/reference/
H A DstaticInstanceResolution.js2 class Comment {
9 static getDocCommentText(comments: Comment[])
12 var c: Comment;
18 var Comment = /** @class */ (function () {
19 function Comment() {
21 Comment.prototype.getDocCommentText = function () {
23 Comment.getDocCommentText = function (comments) {
28 return Comment;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DCodeViewRecordIO.cpp101 const Twine &Comment) { in mapByteVectorTail()
103 emitComment(Comment); in mapByteVectorTail()
117 const Twine &Comment) { in mapByteVectorTail()
119 if (auto EC = mapByteVectorTail(BytesRef, Comment)) in mapByteVectorTail()
127 Error CodeViewRecordIO::mapInteger(TypeIndex &TypeInd, const Twine &Comment) { in mapInteger() argument
131 emitComment(Comment + ": " + TypeNameStr); in mapInteger()
133 emitComment(Comment); in mapInteger()
149 const Twine &Comment) { in mapEncodedInteger()
152 emitEncodedUnsignedInteger(static_cast<uint64_t>(Value), Comment); in mapEncodedInteger() local
154 emitEncodedSignedInteger(Value, Comment); in mapEncodedInteger()
100 mapByteVectorTail(ArrayRef<uint8_t> &Bytes, const Twine &Comment) mapByteVectorTail() argument
116 mapByteVectorTail(std::vector<uint8_t> &Bytes, const Twine &Comment) mapByteVectorTail() argument
148 mapEncodedInteger(int64_t &Value, const Twine &Comment) mapEncodedInteger() argument
173 mapEncodedInteger(uint64_t &Value, const Twine &Comment) mapEncodedInteger() argument
189 mapEncodedInteger(APSInt &Value, const Twine &Comment) mapEncodedInteger() argument
204 mapStringZ(StringRef &Value, const Twine &Comment) mapStringZ() argument
222 mapGuid(GUID &Guid, const Twine &Comment) mapGuid() argument
249 mapStringZVectorZ(std::vector<StringRef> &Value, const Twine &Comment) mapStringZVectorZ() argument
274 emitEncodedSignedInteger(const int64_t &Value, const Twine &Comment) emitEncodedSignedInteger() argument
300 emitEncodedUnsignedInteger(const uint64_t &Value, const Twine &Comment) emitEncodedUnsignedInteger() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewRecordIO.h66 Error mapInteger(TypeIndex &TypeInd, const Twine &Comment = "");
99 template <typename T> Error mapInteger(T &Value, const Twine &Comment = "") { in mapInteger()
101 emitComment(Comment); in mapInteger()
113 template <typename T> Error mapEnum(T &Value, const Twine &Comment = "") { in mapEnum()
123 if (auto EC = mapInteger(X, Comment)) in mapEnum()
132 Error mapEncodedInteger(int64_t &Value, const Twine &Comment = "");
133 Error mapEncodedInteger(uint64_t &Value, const Twine &Comment = "");
134 Error mapEncodedInteger(APSInt &Value, const Twine &Comment = "");
135 Error mapStringZ(StringRef &Value, const Twine &Comment = "");
136 Error mapGuid(GUID &Guid, const Twine &Comment
235 emitComment(const Twine &Comment) emitComment() argument
[all...]
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/
H A DCommentsSchema.java26 import com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment;
27 import com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment.Anchor;
55 private static final String COMMENT = "Comment";
59 private static final Comparator<Comment> ORDERING = comparing(Comment::getAnchor);
66 public static ImmutableList<Comment> loadComments(Path path) { in loadComments()
78 static ImmutableList<Comment> importComments(Reader csv) throws IOException { in importComments()
79 List<Comment> comments = new ArrayList<>(); in importComments()
88 public static ImmutableList<Comment> importComments(Supplier<List<String>> rows) { in importComments()
89 List<Comment> comment in importComments()
[all...]
H A DNumberingScheme.java49 import com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment.Anchor;
206 List<Comment> comments) { in from()
224 private static ImmutableList<Comment> addSyntheticComments( in addSyntheticComments()
225 List<Comment> comments, Attributes attributes) { in addSyntheticComments()
228 List<Comment> modified = new ArrayList<>(getRegionNameComments(mainRegion)); in addSyntheticComments()
233 modified.add(Comment.create(Comment.anchor(mainRegion), ImmutableList.of(comment))); in addSyntheticComments()
238 modified.add(Comment.create(Comment.anchor(r), ImmutableList.of(auxComment))); in addSyntheticComments()
249 private static List<Comment> getRegionNameComment
653 public abstract static class Comment { global() class in NumberingScheme
752 Comment() {} Comment() method in NumberingScheme.Comment
[all...]
H A DFormatsTableSchema.java19 import com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment;
53 public static final Column<String> COMMENT = Column.ofString("Comment");
91 private static Optional<Comment> toComment(String s) { in toComment()
92 return s.isEmpty() ? Optional.empty() : Optional.of(Comment.fromText(s)); in toComment()
H A DCsvData.java33 import com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment;
77 ImmutableList<Comment> comments) { in create()
202 public abstract ImmutableList<Comment> getComments(); in getComments()
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/model/
H A DCommentsSchemaTest.java20 import static com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment.anchor;
28 import com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment;
29 import com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment.Anchor;
47 private static final Anchor US_TOP = Comment.anchor(REGION_US);
50 private static final Anchor US_SHORTCODE = Comment.shortcodeAnchor(REGION_US);
59 "Region ; Label ; Comment", in testSimple_export()
68 "Region ; Label ; Comment", in testSimple_import()
80 "Region ; Label ; Comment", in testEscapedText_export()
89 "Region ; Label ; Comment", in testEscapedText_import()
102 comment(US_TOP, "Top Level Comment"), in testOrdering_export()
[all...]
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/
H A Dcomment.js10 var Comment = /*#__PURE__*/function (_Node) { function
11 _inheritsLoose(Comment, _Node);
12 function Comment(opts) {
18 return Comment;
20 exports["default"] = Comment;
/third_party/node/deps/v8/src/snapshot/embedded/
H A Dplatform-embedded-file-writer-win.cc77 w->Comment("xdata for all the code in the embedded blob."); in EmitUnwindData()
95 w->Comment(" ExceptionHandler"); in EmitUnwindData()
104 w->Comment( in EmitUnwindData()
107 w->Comment(" BeginAddress"); in EmitUnwindData()
108 w->Comment(" EndAddress"); in EmitUnwindData()
109 w->Comment(" UnwindInfoAddress"); in EmitUnwindData()
190 w->Comment(
193 w->Comment(" BeginAddress");
194 w->Comment(" UnwindInfoAddress");
489 void PlatformEmbeddedFileWriterWin::Comment(cons function in v8::internal::PlatformEmbeddedFileWriterWin
663 void PlatformEmbeddedFileWriterWin::Comment(const char* string) { Comment() function in v8::internal::PlatformEmbeddedFileWriterWin
[all...]
H A Dembedded-file-writer.cc137 w->Comment( in WriteCodeSection()
139 w->Comment("instruction streams."); in WriteCodeSection()
179 w->Comment("Pointer to the beginning of the embedded blob code."); in WriteFileEpilogue()
191 w->Comment("Pointer to the beginning of the embedded blob data section."); in WriteFileEpilogue()
204 w->Comment("The size of the embedded blob code in bytes."); in WriteFileEpilogue()
215 w->Comment("The size of the embedded blob data section in bytes."); in WriteFileEpilogue()
H A Dembedded-file-writer.h101 w->Comment("Autogenerated file. Do not edit."); in WriteFilePrologue()
112 w->Comment( in WriteExternalFilenames()
114 w->Comment("Assembly directives here map the id to a filename."); in WriteExternalFilenames()
146 w->Comment("The embedded blob data section starts here."); in WriteDataSection()
/third_party/node/deps/v8/src/ic/
H A Daccessor-assembler.cc76 Comment("TryMonomorphicCase"); in TryMonomorphicCase()
107 Comment("HandlePolymorphicCase"); in HandlePolymorphicCase()
198 Comment("have_handler"); in HandleLoadICHandlerCase()
238 Comment("native_data_property_load"); in HandleLoadCallbackProperty()
254 Comment("api_getter"); in HandleLoadAccessor()
294 Comment("LoadField"); in HandleLoadField()
373 Comment("type_I8"); in HandleLoadWasmField()
379 Comment("type_I16"); in HandleLoadWasmField()
385 Comment("type_I32"); in HandleLoadWasmField()
391 Comment("type_U3 in HandleLoadWasmField()
[all...]
H A Dkeyed-store-generic.cc620 Comment("Grow backing store"); in EmitGenericElementStore()
642 Comment("Dictionary"); in EmitGenericElementStore()
649 Comment("Typed array"); in EmitGenericElementStore()
836 Comment("fast property store"); in EmitGenericPropertyStore()
892 Comment("lookup transition"); in EmitGenericPropertyStore()
909 Comment("dictionary property store"); in EmitGenericPropertyStore()
1094 Comment("integer index"); in KeyedStoreGeneric()
1101 Comment("key is unique name"); in KeyedStoreGeneric()
1124 Comment("KeyedStoreGeneric_slow"); in KeyedStoreGeneric()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DModuleSummaryIndex.cpp261 const Twine &Comment = Twine());
262 void addComment(const Twine &Comment);
278 const Twine &Comment) {
284 addComment(Comment);
287 void Attributes::addComment(const Twine &Comment) {
288 if (!Comment.isTriviallyEmpty()) {
293 Comments += Comment.str();
/third_party/python/Doc/tools/extensions/
H A Dpeg_highlight.py2 from pygments.token import Comment, Generic, Keyword, Name, Operator, Punctuation, Text namespace
28 "ws": [(r"\n", Text), (r"\s+", Text), (r"#.*$", Comment.Singleline),],
H A Dasdl_highlight.py9 from pygments.token import (Comment, Generic, Keyword, Name, Operator, namespace
26 (r"--.*?$", Comment.Singleline),
/third_party/PyYAML/examples/pygments-lexer/
H A Dyaml.py16 Text, Comment, Punctuation, Name, Literal namespace
174 (r'#[^\n]*', Comment.Single),
195 (r'#[^\n]*', Comment.Single),
287 (r'#[^\n]*', Comment.Single),
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/testing/
H A DTestNumberingScheme.java42 import com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment;
108 private final List<Comment> comments = new ArrayList<>();
416 Comment.create(Comment.anchor(region, t), Arrays.asList(lines)))); in addComment()
430 comments.add(Comment.create(Comment.anchor(region), Arrays.asList(lines))); in addComment()
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-constructor-gen.cc512 Comment("LoadJSArrayElementsMap"); in CreateEmptyArrayLiteral()
516 Comment("Allocate JSArray"); in CreateEmptyArrayLiteral()
552 Comment("Copy dictionary properties"); in CreateShallowObjectLiteral()
613 Comment("Initialize Literal Copy"); in CreateShallowObjectLiteral()
633 Comment("Copy in-object properties fast"); in CreateShallowObjectLiteral()
658 Comment("Copy in-object properties slow"); in CreateShallowObjectLiteral()
695 Comment("Copy mutable HeapNumber values");
H A Dbuiltins-handler-gen.cc151 Comment("ElementsTransitionAndStore: store_mode=", store_mode); in Generate_ElementsTransitionAndStore()
293 Comment("StoreFastElementStub: store_mode=", store_mode); in Generate_StoreFastElementIC()
377 Comment("Miss"); in TF_BUILTIN()
452 Comment("Miss"); in TF_BUILTIN()
/third_party/node/deps/v8/src/interpreter/
H A Dinterpreter-assembler.cc785 Comment("call using CallWithSpread builtin"); in CallJSWithSpreadAndDispatch()
818 Comment("call using Construct builtin"); in Construct()
831 Comment("call using ConstructArray builtin"); in Construct()
871 Comment("check if megamorphic"); in ConstructWithSpread()
876 Comment("check if weak reference"); in ConstructWithSpread()
881 Comment("check if weak reference is cleared"); in ConstructWithSpread()
887 Comment("check if uninitialized"); in ConstructWithSpread()
895 Comment("check if function in same native context"); in ConstructWithSpread()
945 Comment("transition to megamorphic"); in ConstructWithSpread()
958 Comment("cal in ConstructWithSpread()
[all...]

Completed in 22 milliseconds

12345