Searched refs:multiline (Results 1 - 25 of 40) sorted by relevance

12

/external/v8/test/mjsunit/regress/
H A Dregress-87.js28 function testFlags(flagstring, global, ignoreCase, multiline) {
33 assertEquals(multiline, re.multiline, text + ".multiline");
H A Dregress-219.js35 function assertFlags(re, global, multiline, ignoreCase) {
38 (multiline ? assertTrue : assertFalse)(re.multiline, name + "m");
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
H A Dconstructor-001.js22 * - multiline property is set to false
57 "(new RegExp()).multiline",
59 re.multiline );
H A Dfunction-001.js22 * - multiline property is set to false
57 "(new RegExp()).multiline",
59 re.multiline );
H A Dproperties-001.js78 AddTestCase( re + ".multiline",
80 re.multiline);
H A Dproperties-002.js118 AddTestCase( re + ".multiline",
120 re.multiline);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
H A DRegExp_multiline.js24 Description: 'Tests RegExps multiline property'
33 var TITLE = 'RegExp: multiline';
41 // First we do a series of tests with RegExp.multiline set to false (default value)
42 // Following this we do the same tests with RegExp.multiline set true(**).
43 // RegExp.multiline
44 testcases[count++] = new TestCase ( SECTION, "RegExp.multiline",
45 false, RegExp.multiline);
47 // (multiline == false) '123\n456'.match(/^4../)
48 testcases[count++] = new TestCase ( SECTION, "(multiline == false) '123\\n456'.match(/^4../)",
51 // (multiline
[all...]
H A DbeginLine.js61 RegExp.multiline = true;
62 // 'abc\n123xyz'.match(new RegExp('^\d+')) <multiline==true>
H A DendLine.js61 RegExp.multiline = true;
62 // 'abc\n123xyz890\nxyz'.match(new RegExp('\d+$')) <multiline==true>
/external/webkit/Tools/QueueStatusServer/model/
H A Dqueuestatus.py39 message = db.StringProperty(multiline=True)
/external/v8/src/
H A Dregexp.js43 + (pattern.multiline ? 'm' : '');
52 var multiline = false;
65 multiline = true;
74 %RegExpInitializeObject(object, pattern, global, ignoreCase, multiline);
266 ? !this.multiline ? "" : "m"
267 : !this.multiline ? "i" : "im"));
291 if (this.multiline) result += 'm';
437 // The properties multiline and $* are aliases for each other. When this
440 // the value of the expression 'RegExp.multiline = null' (for instance) is the
444 // Getter and setter for multiline
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DRegExpConstructor.h40 , multiline(false)
54 bool multiline : 1; member in struct:JSC::RegExpConstructorPrivate
80 bool multiline() const;
H A DRegExp.h45 bool multiline() const { return m_flags & FlagMultiline; } function in class:JSC::RegExp
H A DRegExpConstructor.cpp76 multiline regExpConstructorMultiline None
121 // d->multiline is not needed, and remains uninitialized
257 return jsBoolean(asRegExpConstructor(slotBase)->multiline());
363 void RegExpConstructor::setMultiline(bool multiline) argument
365 d->multiline = multiline;
368 bool RegExpConstructor::multiline() const function in class:JSC::RegExpConstructor
370 return d->multiline;
H A DCommonIdentifiers.h56 macro(multiline) \
H A DRegExpObject.cpp58 multiline regExpObjectMultiline DontDelete|ReadOnly|DontEnum
104 return jsBoolean(asRegExpObject(slotBase)->regExp()->multiline());
H A DRegExpPrototype.cpp136 if (thisObject->get(exec, exec->propertyNames().multiline).toBoolean(exec))
H A DRegExp.cpp105 Yarr::YarrPattern pattern(m_patternString, ignoreCase(), multiline(), &m_constructionError);
/external/libvpx/examples/includes/geshi/geshi/
H A Dvb.php18 * - Fixed multiline comments
52 // Comments (either single or multiline with _
H A Dreg.php34 * - There are two regexes for the multiline hex value regex. The regex for
/external/v8/test/mjsunit/
H A Dregexp-static.js158 RegExp.multiline = "foo";
159 assertTrue(typeof RegExp.multiline == typeof Boolean(), "RegExp.multiline coerces values to booleans");
H A Dregexp.js234 // multiline flag.
245 // Test that empty matches are handled correctly for multiline global
425 assertFalse(re.multiline);
432 assertTrue(re.multiline);
445 assertFalse(re.multiline);
463 assertTrue(re.multiline);
603 desc = Object.getOwnPropertyDescriptor(re, "multiline");
/external/clang/test/Coverage/
H A Dc-language-features.inc4 multiline comment */
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrPattern.h316 YarrPattern(const UString& pattern, bool ignoreCase, bool multiline, const char** error);
/external/pcre/
H A Dpcrecpp.h392 bool multiline() const { function in class:pcrecpp::RE_Options

Completed in 493 milliseconds

12