HomeSort by relevance Sort by last modified time
    Searched full:multiline (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /external/clearsilver/util/test/
test2.hdf 3 Multiline.Test << EOB
4 This is a test of the multiline setting code....
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/
RegExp_multiline.js 24 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 == false) 'a11\na22\na23\na24'.match(/^a../g
    [all...]
beginLine.js 61 RegExp.multiline = true;
62 // 'abc\n123xyz'.match(new RegExp('^\d+')) <multiline==true>
endLine.js 61 RegExp.multiline = true;
62 // 'abc\n123xyz890\nxyz'.match(new RegExp('\d+$')) <multiline==true>
  /external/v8/test/mjsunit/regress/
regress-87.js 28 function testFlags(flagstring, global, ignoreCase, multiline) {
33 assertEquals(multiline, re.multiline, text + ".multiline");
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
constructor-001.js 22 * - multiline property is set to false
57 "(new RegExp()).multiline",
59 re.multiline );
function-001.js 22 * - multiline property is set to false
57 "(new RegExp()).multiline",
59 re.multiline );
multiline-001.js 2 * File Name: RegExp/multiline-001.js
9 var SECTION = "RegExp/multiline-001";
11 var TITLE = "RegExp: multiline flag";
properties-001.js 78 AddTestCase( re + ".multiline",
80 re.multiline);
  /external/v8/test/mjsunit/
newline-in-string.js 28 // Test multiline string literal.
38 // Allow CR+LF in multiline string literals.
42 // Allow LF+CR in multiline string literals.
  /external/chromium/net/ftp/
ftp_ctrl_response_buffer.h 58 // means a multiline response.
88 // When parsing a multiline response, we don't know beforehand if a line
89 // will have a continuation. So always store last line of multiline response
96 // As we read full responses (possibly multiline), we add them to the queue.
  /external/webkit/WebCore/manual-tests/
svg-text-selection.svg 6 <tspan x="0" y="235">to select multiline here</tspan>
  /external/webkit/JavaScriptCore/runtime/
RegExp.h 49 bool multiline() const { return m_flagBits & Multiline; } function in class:JSC::RegExp
65 enum FlagBits { Global = 1, IgnoreCase = 2, Multiline = 4 };
RegExp.cpp 79 m_flagBits |= Multiline;
106 Yarr::jitCompileRegex(globalData, m_regExpJITCode, m_pattern, m_numSubpatterns, m_constructionError, ignoreCase(), multiline());
109 m_regExpBytecode.set(Yarr::byteCompileRegex(m_pattern, m_numSubpatterns, m_constructionError, ignoreCase(), multiline()));
171 m_wrecFunction = Generator::compileRegExp(globalData, m_pattern, &m_numSubpatterns, &m_constructionError, m_executablePool, ignoreCase(), multiline());
180 JSRegExpMultilineOption multilineOption = multiline() ? JSRegExpMultiline : JSRegExpSingleLine;
RegExpConstructor.h 38 , multiline(false)
52 bool multiline : 1; member in struct:JSC::RegExpConstructorPrivate
78 bool multiline() const;
RegExpConstructor.cpp 71 multiline regExpConstructorMultiline None
114 // d->multiline is not needed, and remains uninitialized
250 return jsBoolean(asRegExpConstructor(slot.slotBase())->multiline());
344 void RegExpConstructor::setMultiline(bool multiline)
346 d->multiline = multiline;
349 bool RegExpConstructor::multiline() const function in class:JSC::RegExpConstructor
351 return d->multiline;
  /external/v8/src/
regexp.js 43 + (pattern.multiline ? 'm' : '');
52 var multiline = false;
65 multiline = true;
87 %SetProperty(object, 'multiline', multiline,
96 %IgnoreAttributesAndSetProperty(object, 'multiline', multiline);
246 if (this.multiline)
360 // The properties multiline and $* are aliases for each other. When this
363 // the value of the expression 'RegExp.multiline = null' (for instance) is th
    [all...]
  /external/webkit/WebKitTools/simplejson/
scanner.py 6 from re import VERBOSE, MULTILINE, DOTALL
11 FLAGS = (VERBOSE | MULTILINE | DOTALL)
  /external/webkit/JavaScriptCore/wrec/
WREC.cpp 43 CompiledRegExp Generator::compileRegExp(JSGlobalData* globalData, const UString& pattern, unsigned* numSubpatterns_ptr, const char** error_ptr, RefPtr<ExecutablePool>& pool, bool ignoreCase, bool multiline)
50 Parser parser(pattern, ignoreCase, multiline);
  /external/webkit/WebCore/rendering/
TextControlInnerElements.cpp 69 // Multiline text controls have the scroll on shadowAncestorNode, so we need to take that
137 bool multiLine = false;
141 multiLine = shadowAncestor->renderer()->isTextArea();
143 return new (arena) RenderTextControlInnerBlock(this, multiLine);
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
ModeTest.java 81 notes = "The test verifies compile(String regex) and compile(String regex, int flags) methods with Pattern.MULTILINE mode.",
87 notes = "The test verifies compile(String regex) and compile(String regex, int flags) methods with Pattern.MULTILINE mode.",
116 p = Pattern.compile("^foo([0-9]*)", Pattern.MULTILINE);
125 p = Pattern.compile("foo([0-9]*)$", Pattern.MULTILINE);
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
ExtendedWikiHelper.java 60 Pattern.compile("^=+(.+?)=+.+?(?=^=)", Pattern.MULTILINE | Pattern.DOTALL);
164 Pattern.MULTILINE));
168 Pattern.MULTILINE));
170 Pattern.MULTILINE));
172 Pattern.MULTILINE));
186 "\\[http.+?\\]|\\[\\[Category:.+?\\]\\])", "", Pattern.MULTILINE | Pattern.DOTALL));
188 Pattern.MULTILINE));
  /dalvik/tools/
deadcode.py 16 headerPattern = re.compile(r'^\s+\|([a-z _]+)\:$', re.MULTILINE)
51 methodPattern = re.compile(r'^\s+\|\[\w{4}\] (.*)$', re.MULTILINE)
  /external/libvpx/examples/includes/geshi/docs/
TODO 48 - Ability to add more than one multiline comment or string [DONE]
49 - Ability to specify that strings cannot be multiline [DONE]
  /external/libvpx/examples/includes/geshi/geshi/
vb.php 18 * - Fixed multiline comments
52 // Comments (either single or multiline with _

Completed in 1227 milliseconds

1 2 3 4 5 6 7