Searched refs:MULTILINE (Results 1 - 25 of 26) sorted by relevance

12

/external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
H A DPatternErrorTest.java48 flags |= Pattern.MULTILINE;
H A DModeTest.java79 p = Pattern.compile("^foo([0-9]*)", Pattern.MULTILINE);
87 p = Pattern.compile("foo([0-9]*)$", Pattern.MULTILINE);
H A DPatternTest.java686 Pattern pat = Pattern.compile("(^$)*\n", Pattern.MULTILINE);
716 Pattern pat = Pattern.compile("$*", Pattern.MULTILINE);
H A DPattern2Test.java950 // Test ^, default and MULTILINE
953 // Test $, default and MULTILINE
1081 p = Pattern.compile("^.*$", Pattern.MULTILINE);
1178 // Pattern pattern = Pattern.compile(regex, Pattern.MULTILINE);
/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
H A Dscanner.py6 from re import VERBOSE, MULTILINE, DOTALL namespace
11 FLAGS = (VERBOSE | MULTILINE | DOTALL)
H A Ddecoder.py8 FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
/external/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_builtins.py56 kill_paren_whitespace = re.compile(r'[ \n]*\)', re.MULTILINE);
72 kill_globals = re.compile(r'^\(declare.*\n', re.MULTILINE);
/external/markdown/markdown/extensions/
H A Dfenced_code.py68 re.MULTILINE|re.DOTALL
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Dchangelog.py55 match = re.match(self.date_line_regexp, self._contents, re.MULTILINE)
63 match = re.search("^\s+Reviewed by (?P<reviewer>.*?)[\.,]?\s*$", self._contents, re.MULTILINE) # Discard everything after the first period
H A Dscm.py219 match = re.search(self.commit_success_regexp(), commit_text, re.MULTILINE)
364 match = re.search("^%s: (?P<value>.+)$" % field_name, info_output, re.MULTILINE)
762 match = re.search("^\s*git-svn-id:.*@(?P<svn_revision>\d+)\ ", git_log, re.MULTILINE)
/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dcredentials.py76 re.MULTILINE)
/external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
H A Dcss_checker.py102 re.MULTILINE)
132 for z in re.finditer(re.compile(zeros, re.MULTILINE), contents):
/external/doclava/src/com/google/doclava/
H A DDocFile.java27 private static final Pattern LINE = Pattern.compile("(.*)[\r]?\n", Pattern.MULTILINE);
/external/webkit/Tools/wx/build/
H A Dbuild_utils.py161 match = re.search('^\* (.*)', branches, re.MULTILINE)
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dtestbase.py200 m = re.match(r'\s*((lexer|parser|tree)\s+|)grammar\s+(\S+);', grammar, re.MULTILINE)
366 m = re.match(r'\s*((lexer|parser|tree)\s+|)grammar\s+(\S+);', grammar, re.MULTILINE)
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DTextFormat.java427 Pattern.compile("(\\s|(#.*$))++", Pattern.MULTILINE);
433 Pattern.MULTILINE);
/external/clang/utils/
H A Dtoken-delta.py107 re.DOTALL | re.MULTILINE)
/external/markdown/markdown/
H A Dblockprocessors.py365 RE = re.compile(r'^.*?\n[=-]{3,}', re.MULTILINE)
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
H A Dbugzilla.py71 match = re.search("^\s*" + Bugzilla.bug_url_short + "$", message, re.MULTILINE)
74 match = re.search("^\s*" + Bugzilla.bug_url_long + "$", message, re.MULTILINE)
/external/protobuf/python/google/protobuf/
H A Dtext_format.py302 _WHITESPACE = re.compile('(\\s|(#.*$))+', re.MULTILINE)
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Dupload.py372 match = re.search("^r(?P<svn_revision>\d+) \|", commit_log, re.MULTILINE)
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DScannerTest.java741 Pattern.MULTILINE));
746 Pattern.MULTILINE));
755 Pattern.MULTILINE));
764 Pattern.MULTILINE));
769 Pattern.MULTILINE));
4889 Pattern.MULTILINE), 5);
/external/chromium-trace/trace-viewer/third_party/python_gflags/
H A Dgflags.py640 line_regex = re.compile('([ ]*)(\t*)([^ \t]+)', re.MULTILINE)
/external/v8/src/
H A Dobjects.h6252 enum Flag { NONE = 0, GLOBAL = 1, IGNORE_CASE = 2, MULTILINE = 4 }; enumerator in enum:v8::internal::JSRegExp::Flag
6259 bool is_multiline() { return (value_ & MULTILINE) != 0; }
H A Djsregexp.cc88 flags |= JSRegExp::MULTILINE;

Completed in 623 milliseconds

12