HomeSort by relevance Sort by last modified time
    Searched defs:multiline (Results 1 - 10 of 10) sorted by null

  /external/v8/test/mjsunit/
mirror-regexp.js 38 'multiline': all_attributes,
  /external/webkit/Source/JavaScriptCore/runtime/
RegExpConstructor.h 40 , multiline(false)
54 bool multiline : 1; member in struct:JSC::RegExpConstructorPrivate
80 bool multiline() const;
RegExp.h 45 bool multiline() const { return m_flags & FlagMultiline; } function in class:JSC::RegExp
RegExpConstructor.cpp 76 multiline regExpConstructorMultiline None
121 // d->multiline is not needed, and remains uninitialized
257 return jsBoolean(asRegExpConstructor(slotBase)->multiline());
363 void RegExpConstructor::setMultiline(bool multiline)
365 d->multiline = multiline;
368 bool RegExpConstructor::multiline() const function in class:JSC::RegExpConstructor
370 return d->multiline;
  /external/pcre/
pcrecpp.h 240 // CASELESS(), UTF8(), MULTILINE(), DOTALL(), EXTENDED()
392 bool multiline() const { function in class:pcrecpp::RE_Options
472 static inline RE_Options MULTILINE() {
pcregrep.c 179 static BOOL multiline = FALSE; variable
244 { OP_NODATA, 'M', NULL, "multiline", "run in multiline mode" },
992 context printing or for multiline scanning. For large files, the pointer will
1086 of the subject string to pass to pcre_exec(). In multiline mode, it is the
1089 advance by the length of the next line. In multiline mode the PCRE_FIRSTLINE
1095 length = multiline? (size_t)(endptr - ptr) : linelength;
    [all...]
  /external/v8/src/
log.cc 505 // (re.global?"g":"") + (re.ignorecase?"i":"") + (re.multiline?"m":"")
535 // multiline flag
536 Handle<Object> multiline = GetProperty(regexp, "multiline"); local
537 if (multiline->IsTrue()) {
    [all...]
runtime.cc 1686 Object* multiline = args[4]; local
    [all...]
mirror-debugger.js 1049 * Returns whether this regular expression has the multiline (m) flag set.
1050 * @return {boolean} Value of the multiline flag
1052 RegExpMirror.prototype.multiline = function() {
1053 return this.value_.multiline;
    [all...]
  /external/opencv/cxcore/src/
cxpersistence.cpp 1641 int multiline; local
2601 int multiline; local
    [all...]

Completed in 576 milliseconds