Home
last modified time | relevance | path

Searched refs:multiline (Results 1 – 25 of 158) sorted by relevance

1234567

/third_party/jerryscript/tests/jerry/
Dregexp-construct.js21 assert (r.multiline == false);
27 assert (r.multiline == false);
33 assert (r.multiline == true);
39 assert (r.multiline == false);
45 assert (r.multiline == true);
53 assert (r2.multiline == true);
59 assert (r2.multiline == true);
65 assert (r.multiline == false);
71 assert (r.multiline == false);
77 assert (r.multiline == true);
[all …]
Dregexp-routines.js93 assert (re2.multiline === true);
101 assert (re2.multiline === re1.multiline);
/third_party/skia/src/utils/
DSkJSONWriter.h91 this->separator(this->multiline()); in appendName()
106 void beginObject(const char* name = nullptr, bool multiline = true) {
111 fNewlineStack.push_back(multiline);
122 bool wasMultiline = this->multiline(); in endObject()
138 void beginArray(const char* name = nullptr, bool multiline = true) {
143 fNewlineStack.push_back(multiline);
154 bool wasMultiline = this->multiline(); in endArray()
280 this->separator(this->multiline());
291 void separator(bool multiline) { in separator() argument
293 if (multiline) { in separator()
[all …]
/third_party/flutter/skia/src/utils/
DSkJSONWriter.h91 this->separator(this->multiline()); in appendName()
106 void beginObject(const char* name = nullptr, bool multiline = true) {
111 fNewlineStack.push_back(multiline);
122 bool wasMultiline = this->multiline(); in endObject()
138 void beginArray(const char* name = nullptr, bool multiline = true) {
143 fNewlineStack.push_back(multiline);
154 bool wasMultiline = this->multiline(); in endArray()
280 this->separator(this->multiline());
291 void separator(bool multiline) { in separator() argument
293 if (multiline) { in separator()
[all …]
/third_party/openssl/util/
Dwithlibctx.pl45 my $multiline = 0;
52 if (!$multiline) {
62 $multiline = 0;
64 $multiline = 1;
86 $multiline = 0;
93 die "End of multiline not found" if $multiline;
/third_party/jerryscript/tests/jerry/es5.1/
Dbuiltin-prototypes.js49 assert (RegExp.prototype.multiline === false);
54 RegExp.prototype.multiline = true; method in RegExp
58 assert (RegExp.prototype.multiline === false);
63 delete RegExp.prototype.multiline; method in delete
67 assert (RegExp.prototype.multiline === false);
/third_party/typescript/tests/baselines/reference/
DarrowFunctionErrorSpan.types12 // multiline, body
20 // multiline 2, body
28 // multiline 3, arrow on a new line
36 // multiline 4, arguments
DarrowFunctionErrorSpan.symbols10 // multiline, body
16 // multiline 2, body
22 // multiline 3, arrow on a new line
28 // multiline 4, arguments
DcommentsVarDecl.types17 /** this is multiline comment
23 /** Triple slash multiline comment*/
26 var x = 70; /* multiline trailing comment
30 this is multiline trailing comment */
DcommentsVarDecl.symbols14 /** this is multiline comment
19 /** Triple slash multiline comment*/
22 var x = 70; /* multiline trailing comment
25 this is multiline trailing comment */
DconstructorOverloads5.symbols46 multiline: boolean;
47 >multiline : Symbol(RegExp.multiline, Decl(constructorOverloads5.ts, 12, 28))
DbpSpan_inComments.baseline12 3 >/*multiline comment
16 4 >another line of multiline comment */ var y = 10; // comment here
DcheckJsFiles_skipDiagnostics.types42 that could be multiline*/
50 that could be multiline*/
DcheckJsFiles_skipDiagnostics.symbols34 that could be multiline*/
41 that could be multiline*/
DconstructorOverloads5.types43 multiline: boolean;
44 >multiline : boolean
DarrowFunctionErrorSpan.errors.txt31 // multiline, body
39 // multiline 2, body
47 // multiline 3, arrow on a new line
57 // multiline 4, arguments
DcheckJsFiles_skipDiagnostics.errors.txt34 that could be multiline*/
43 that could be multiline*/
DtypedefTagWrapping.errors.txt32 * Makes use of a type with a multiline type expression.
94 * Makes use of a type with a multiline type expression.
113 * Makes use of a type with a multiline type expression.
DtypedefTagWrapping.types35 * Makes use of a type with a multiline type expression.
132 * Makes use of a type with a multiline type expression.
164 * Makes use of a type with a multiline type expression.
DtypedefTagWrapping.symbols34 * Makes use of a type with a multiline type expression.
128 * Makes use of a type with a multiline type expression.
159 * Makes use of a type with a multiline type expression.
/third_party/jerryscript/tests/jerry/es2015/
Dregexp-construct.js22 assert(r2.multiline === true);
27 assert(r3.multiline === true);
41 assert (r.multiline === true);
/third_party/skia/third_party/externals/tint/src/diagnostic/
Dformatter_test.cc133 Diagnostic multiline{Severity::Warning, in TEST_F() local
137 auto got = fmt.format(List{multiline}); in TEST_F()
168 Diagnostic multiline{Severity::Warning, in TEST_F() local
172 auto got = fmt.format(List{multiline}); in TEST_F()
/third_party/gn/src/gn/format_test_data/
D017.golden8 # Deps comment, should be forced multiline.
12 # End of single sources comment, should be forced multiline.
D017.gn8 # Deps comment, should be forced multiline.
12 # End of single sources comment, should be forced multiline.
/third_party/skia/resources/sksl/es2_conformance/
Dimport_conformance_tests.py57 code = ((pp.Keyword("both") + pp.QuotedString('""', multiline=True)) |
58 (pp.Keyword("vertex") + pp.QuotedString('""', multiline=True) +
59 pp.Keyword("fragment") + pp.QuotedString('""', multiline=True)))

1234567