Home
last modified time | relevance | path

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

123

/external/v8/src/
Dregexp.js43 + (pattern.multiline ? 'm' : '');
52 var multiline = false;
69 if (multiline) {
72 multiline = true;
79 %RegExpInitializeObject(object, pattern, global, ignoreCase, multiline);
273 (regexp.ignoreCase ? regexp.multiline ? "im" : "i"
274 : regexp.multiline ? "m" : ""));
288 if (this.multiline) result += 'm';
443 var multiline = false;
444 var RegExpGetMultiline = function() { return multiline; };
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
DRegExp_multiline.js45 false, RegExp.multiline);
81 RegExp.multiline = true;
83 true, RegExp.multiline);
113 RegExp.multiline = false;
DendLine.js61 RegExp.multiline = true;
DbeginLine.js61 RegExp.multiline = true;
/external/v8/test/mjsunit/regress/
Dregress-219.js39 function assertFlags(re, global, multiline, ignoreCase) { argument
42 (multiline ? assertTrue : assertFalse)(re.multiline, name + "m");
Dregress-1217.js35 assertEquals(false, proto.multiline);
/external/webkit/Source/JavaScriptCore/runtime/
DRegExpConstructor.h40 , multiline(false) in RegExpConstructorPrivate()
54 bool multiline : 1; member
80 bool multiline() const;
DRegExpConstructor.cpp257 return jsBoolean(asRegExpConstructor(slotBase)->multiline()); in regExpConstructorMultiline()
363 void RegExpConstructor::setMultiline(bool multiline) in setMultiline() argument
365 d->multiline = multiline; in setMultiline()
368 bool RegExpConstructor::multiline() const in multiline() function in JSC::RegExpConstructor
370 return d->multiline; in multiline()
DRegExp.h45 bool multiline() const { return m_flags & FlagMultiline; } in multiline() function
DCommonIdentifiers.h56 macro(multiline) \
DRegExpObject.cpp104 return jsBoolean(asRegExpObject(slotBase)->regExp()->multiline()); in regExpObjectMultiline()
DRegExpPrototype.cpp136 if (thisObject->get(exec, exec->propertyNames().multiline).toBoolean(exec)) in regExpProtoFuncToString()
/external/v8/test/mjsunit/
Dregexp-static.js147 RegExp.multiline = "foo";
148 assertTrue(typeof RegExp.multiline == typeof Boolean(), "RegExp.multiline coerces values to boolean…
Dregexp.js436 assertFalse(re.multiline);
443 assertTrue(re.multiline);
456 assertFalse(re.multiline);
474 assertTrue(re.multiline);
/external/llvm/test/TableGen/
DCStyleComment.td1 // Test that multiline, nested, comments work correctly.
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
Dfunction-001.js59 re.multiline );
Dconstructor-001.js59 re.multiline );
Dproperties-001.js80 re.multiline);
Dproperties-002.js120 re.multiline);
/external/webkit/Tools/QueueStatusServer/model/
Dqueuestatus.py39 message = db.StringProperty(multiline=True)
/external/webkit/Source/WebCore/manual-tests/
Dsvg-text-selection.svg6 <tspan x="0" y="235">to select multiline here</tspan>
/external/markdown/tests/misc/
Dbenchmark.dat42 multiline-comments:0.090000:0.000000
/external/libvpx/examples/includes/geshi/docs/
DTODO48 - Ability to add more than one multiline comment or string [DONE]
49 - Ability to specify that strings cannot be multiline [DONE]
DCHANGES31 * Added multiline continuation suppoert of preprocessor defines for
251 - Introduced C-Style multiline continuation comments (SF#1914640, SF#1945301, BenBE)
258 …- Fixed incorrect treatment of unequally long multiline comment separators (related to SF #189163…
374 - Fixed incorrect highlighting when the starter of a multiline comment is
376 - Fixed "</span" generated if a multiline comment is the last thing in the
427 isn't used. Added a style for multiline comments.
478 - Add =begin multiline comments in ruby (Juan J. Martínez)
500 - Fixed multiline comment highlighting in SQL (MrBaseball34)
580 - Fixed multiline comment selector in cssgen.php (Andrzej Kubaszek)
612 - Fixed multiline string bug if not using classes
/external/regex-re2/
Ducs2.diff246 - status_->set_error_arg("multiline ^ in UCS-2 mode");
271 - status_->set_error_arg("multiline $ in UCS-2 mode");
363 { multi_line, "multiline" },
364 { multi_line|Regexp::NonGreedy, "multiline, nongreedy" },
365 { multi_line|Regexp::Latin1, "multiline, latin1" },
366 - { multi_line|Regexp::UCS2, "multiline, ucs2" },

123