/third_party/libxml2/result/ |
D | comment6.xml.rdr | 1 0 8 #comment 0 1 2 long comment long comment long comment long comment long comment long comment 3 long comment long comment long comment long comment long comment long comment 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment
|
D | comment6.xml.rde | 1 0 8 #comment 0 1 2 long comment long comment long comment long comment long comment long comment 3 long comment long comment long comment long comment long comment long comment 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment
|
D | comment6.xml.sax2 | 3 SAX.comment( 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment 9 long comment long comment long comment long comment long comment long comment 10 long comment long comment long comment long comment long comment long comment
|
D | comment6.xml.sax | 3 SAX.comment( 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment 9 long comment long comment long comment long comment long comment long comment 10 long comment long comment long comment long comment long comment long comment
|
/third_party/iptables/iptables/tests/shell/testcases/ipt-restore/ |
D | 0003-restore-ordering_0 | 17 -A FORWARD -m comment --comment "rule 4" -j ACCEPT 18 -I FORWARD 1 -m comment --comment "rule 1" -j ACCEPT 19 -I FORWARD 2 -m comment --comment "rule 2" -j ACCEPT 20 -I FORWARD 3 -m comment --comment "rule 3" -j ACCEPT 35 -A FORWARD -m comment --comment "rule 5" -j ACCEPT 36 -I FORWARD 1 -m comment --comment "rule 0.5" -j ACCEPT 37 -I FORWARD 3 -m comment --comment "rule 1.5" -j ACCEPT 38 -I FORWARD 5 -m comment --comment "rule 2.5" -j ACCEPT 39 -I FORWARD 7 -m comment --comment "rule 3.5" -j ACCEPT 40 -I FORWARD 9 -m comment --comment "rule 4.5" -j ACCEPT [all …]
|
/third_party/libxml2/result/noent/ |
D | comment6.xml.sax2 | 3 SAX.comment( 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment 9 long comment long comment long comment long comment long comment long comment 10 long comment long comment long comment long comment long comment long comment
|
/third_party/grpc/src/proto/grpc/testing/ |
D | compiler_test.proto | 15 // File detached comment 1 17 // File detached comment 2 19 // File leading comment 1 22 // Ignored detached comment 27 // Ignored package leading comment 35 // ServiceA detached comment 1 37 // ServiceA detached comment 2 39 // ServiceA leading comment 1 41 // MethodA1 leading comment 1 42 rpc MethodA1(Request) returns (Response); // MethodA1 trailing comment 1 [all …]
|
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/ |
D | prefer-ts-expect-error.ts | 35 function isLineComment(comment: TSESTree.Comment): boolean { 36 return comment.type === AST_TOKEN_TYPES.Line; 39 function getLastCommentLine(comment: TSESTree.Comment): string { 40 if (isLineComment(comment)) { 41 return comment.value; 45 const commentlines = comment.value.split('\n'); 49 function isValidTsIgnorePresent(comment: TSESTree.Comment): boolean { 50 const line = getLastCommentLine(comment); 51 return isLineComment(comment) 59 comments.forEach(comment => { [all …]
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/resources/ |
D | RBManager_fi.properties | 16 # @comment 19 # @comment 22 # @comment 25 # @comment 34 # @comment 37 # @comment 40 # @comment 43 # @comment 46 # @comment 49 # @comment [all …]
|
D | RBManager_sv.properties | 16 # @comment 19 # @comment 22 # @comment 25 # @comment 34 # @comment 37 # @comment 40 # @comment 43 # @comment 46 # @comment 49 # @comment [all …]
|
D | RBManager_de.properties | 16 # @comment 19 # @comment 22 # @comment 25 # @comment 28 # @comment 37 # @comment 40 # @comment 43 # @comment 46 # @comment 49 # @comment [all …]
|
D | RBManager.properties | 16 # @comment 19 # @comment 22 # @comment 25 # @comment 28 # @comment 37 # @comment 40 # @comment 43 # @comment 46 # @comment 49 # @comment [all …]
|
/third_party/iptables/extensions/ |
D | libxt_comment.t | 2 -m comment;;FAIL 3 -m comment --comment;;FAIL 4 -p tcp -m tcp --dport 22 -m comment --comment foo;=;OK 5 -p tcp -m comment --comment foo -m tcp --dport 22;=;OK 9 # should fail: iptables -A INPUT -m comment --comment xxxxxxxxxxxxxxxxx [....] 10 # -m comment --comment xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx… 14 -m comment --comment xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx…
|
D | libxt_comment.c | 27 XTOPT_POINTER(struct xt_comment_info, comment)}, 36 commentinfo->comment[XT_MAX_COMMENT_LEN-1] = '\0'; in comment_print() 37 printf(" /* %s */", commentinfo->comment); in comment_print() 46 commentinfo->comment[XT_MAX_COMMENT_LEN-1] = '\0'; in comment_save() 48 xtables_save_string(commentinfo->comment); in comment_save() 55 char comment[XT_MAX_COMMENT_LEN + sizeof("\\\"\\\"")]; in comment_xlate() local 57 commentinfo->comment[XT_MAX_COMMENT_LEN - 1] = '\0'; in comment_xlate() 59 snprintf(comment, sizeof(comment), "\\\"%s\\\"", in comment_xlate() 60 commentinfo->comment); in comment_xlate() 62 snprintf(comment, sizeof(comment), "\"%s\"", in comment_xlate() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | numericLiteralsWithTrailingDecimalPoints01.types | 97 var test10 = 0 /* comment */.toString(); 99 >0 /* comment */.toString() : string 100 >0 /* comment */.toString : (radix?: number) => string 104 var test11 = 3. /* comment */ .toString(); 106 >3. /* comment */ .toString() : string 107 >3. /* comment */ .toString : (radix?: number) => string 113 >3 /* comment */ .toString() : string 114 >3 /* comment */ .toString : (radix?: number) => string 117 /* comment */ .toString(); 122 >3. /* comment */ .toString() : string [all …]
|
D | numericLiteralsWithTrailingDecimalPoints02.types | 97 var test10 = 0 /* comment */.toString(); 99 >0 /* comment */.toString() : string 100 >0 /* comment */.toString : (radix?: number) => string 104 var test11 = 3. /* comment */ .toString(); 106 >3. /* comment */ .toString() : string 107 >3. /* comment */ .toString : (radix?: number) => string 113 >3 /* comment */ .toString() : string 114 >3 /* comment */ .toString : (radix?: number) => string 117 /* comment */ .toString(); 122 >3. /* comment */ .toString() : string [all …]
|
D | arrowFunctionErrorSpan.types | 52 // single line with a comment 60 // multi line with a comment 68 // multi line with a comment 2 78 // multi line with a comment 3 79 f( // comment 1 80 >f( // comment 1 // comment 2 () => // comment 3 { // comment 4 } // comm… 83 // comment 2 85 >() => // comment 3 { // comment 4 } : () => void 87 // comment 3 89 // comment 4 [all …]
|
D | sourceMap-Comments.sourcemap.txt | 28 > //line comment 1 29 > //line comment 2 32 > //a comment 73 > //line comment 1 74 > //line comment 2 77 > //a comment 125 > //line comment 1 126 > //line comment 2 129 > //a comment 222 >>> //line comment 1 [all …]
|
D | commentsVarDecl.types | 7 /** This is another variable comment*/ 17 /** this is multiline comment 23 /** Triple slash multiline comment*/ 24 /** another line in the comment*/ 25 /** comment line 2*/ 26 var x = 70; /* multiline trailing comment 30 this is multiline trailing comment */ 31 /** Triple slash comment on the assignment shouldnt be in .d.ts file*/ 38 /** jsdocstyle comment - only this comment should be in .d.ts file*/ 43 /** var deckaration with comment on type as well*/ [all …]
|
/third_party/alsa-utils/bat/tests/asound_state/ |
D | asound.state.Broadwell | 6 comment { 16 comment { 26 comment { 36 comment { 46 comment { 57 comment { 67 comment { 78 comment { 89 comment { 100 comment { [all …]
|
D | asound.state.Skylake | 7 comment { 23 comment { 33 comment { 46 comment { 62 comment { 73 comment { 89 comment { 100 comment { 115 comment { 125 comment { [all …]
|
D | asound.state.Haswell | 6 comment { 16 comment { 26 comment { 36 comment { 46 comment { 57 comment { 67 comment { 78 comment { 89 comment { 100 comment { [all …]
|
/third_party/iptables/iptables/tests/shell/testcases/iptables/ |
D | 0005-rule-replace_0 | 12 $XT_MULTI iptables -A FORWARD -m comment --comment "rule 1" -j ACCEPT 13 $XT_MULTI iptables -A FORWARD -m comment --comment "rule 2" -j ACCEPT 14 $XT_MULTI iptables -A FORWARD -m comment --comment "rule 3" -j ACCEPT 16 $XT_MULTI iptables -R FORWARD 2 -m comment --comment "replaced 2" -j ACCEPT 24 $XT_MULTI iptables -R FORWARD 1 -m comment --comment "replaced 1" -j ACCEPT 32 $XT_MULTI iptables -R FORWARD 3 -m comment --comment "replaced 3" -j ACCEPT
|
/third_party/boost/tools/quickbook/test/ |
D | para_test-1_5.quickbook | 7 [/ Leading comment ] Shouldn't be a code block. 9 [/ Leading comment ]*Should be bold*. 12 [/ Breaking comment] 16 [/ Breaking comment] 20 [/ Breaking comment] 23 Single paragraph.[/ Trailing comment] 42 [/Breaking comment] 47 [/ Leading comment ] Shouldn't be a code block. 49 [/ Leading comment ]*Should be bold*. 52 [/ Breaking comment] [all …]
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/model/ |
D | CommentsSchemaTest.java | 57 comment(US_FIXED_LINE, "Hello World"))) in testSimple_export() 71 comment(US_FIXED_LINE, "Hello World")); in testSimple_import() 78 comment(US_FIXED_LINE, "\tHello", "World\\"))) in testEscapedText_export() 92 comment(US_FIXED_LINE, "\tHello", "World\\")); in testEscapedText_import() 99 comment(US_FIXED_LINE, "First"), in testOrdering_export() 100 comment(US_FIXED_LINE, "Second"), in testOrdering_export() 101 comment(US_FIXED_LINE, "Third"), in testOrdering_export() 102 comment(US_TOP, "Top Level Comment"), in testOrdering_export() 103 comment(US_SHORTCODE, "Shortcode Comment"), in testOrdering_export() 104 comment(US_MOBILE, "Other Type"), in testOrdering_export() [all …]
|