HomeSort by relevance Sort by last modified time
    Searched refs:MULTILINE (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
PackageTest.java 25 Pattern.MULTILINE);
29 Pattern.MULTILINE);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
checksvnconfigfile.py 46 errorcode_autoprop = not re.search("^\s*enable-auto-props\s*=\s*yes", config_file, re.MULTILINE)
47 errorcode_png = not re.search("^\s*\*\.png\s*=\s*svn:mime-type=image/png", config_file, re.MULTILINE)
  /external/chromium_org/third_party/
PRESUBMIT.py 31 input_api.re.IGNORECASE | input_api.re.MULTILINE)
34 input_api.re.IGNORECASE | input_api.re.MULTILINE)
37 input_api.re.IGNORECASE | input_api.re.MULTILINE)
40 input_api.re.IGNORECASE | input_api.re.MULTILINE)
43 input_api.re.IGNORECASE | input_api.re.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));
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
make-file-arrays.py 56 multi_line_comment = re.compile(r"/\*.*?\*/", re.MULTILINE | re.DOTALL)
57 single_line_comment = re.compile(r"//.*$", re.MULTILINE)
58 repeating_space = re.compile(r"[ \t]+", re.MULTILINE)
59 leading_space = re.compile(r"^[ \t]+", re.MULTILINE)
60 trailing_space = re.compile(r"[ \t]+$", re.MULTILINE)
  /frameworks/webview/chromium/tools/
merge_common.py 147 flags=re.MULTILINE)
159 flags=re.MULTILINE)
168 flags=re.MULTILINE)
  /libcore/luni/src/main/java/java/util/regex/
Pattern.java 196 * <tr><td>{@code m}</td> <td>{@link #MULTILINE}</td> <td>allow {@code ^} and {@code $} to match beginning/end of any line</td></tr>
202 * and turn off multiline mode, {@code (?i)} would just turn on case-insensitivity,
203 * and {@code (?-m)} would just turn off multiline mode.
254 public static final int MULTILINE = 0x08;
369 * @see #MULTILINE
388 int supportedFlags = CASE_INSENSITIVE | COMMENTS | DOTALL | LITERAL | MULTILINE | UNICODE_CASE | UNIX_LINES;
409 int icuFlags = flags & (CASE_INSENSITIVE | COMMENTS | MULTILINE | DOTALL | UNIX_LINES);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
PatternErrorTest.java 48 flags |= Pattern.MULTILINE;
ModeTest.java 79 p = Pattern.compile("^foo([0-9]*)", Pattern.MULTILINE);
87 p = Pattern.compile("foo([0-9]*)$", 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/chromium_org/tools/grit/grit/tool/
rc2grd.py 37 "(?P<file>.*?([^"]|""))"[ \t]*$''', re.VERBOSE | re.MULTILINE)
43 re.MULTILINE | re.DOTALL)
48 re.MULTILINE | re.DOTALL)
54 re.MULTILINE | re.DOTALL)
61 re.MULTILINE | re.DOTALL)
72 ''', re.MULTILINE | re.DOTALL | re.VERBOSE)
76 _COMMENT_TEXT = lazy_re.compile('^\s*//\s*(?P<text>.+?)$', re.MULTILINE)
80 _WHITESPACE_ONLY = lazy_re.compile('\A\s*\Z', re.MULTILINE)
  /cts/libs/vogar-expect/src/vogar/
Expectation.java 42 = Pattern.compile(".*", Pattern.MULTILINE | Pattern.DOTALL);
  /external/chromium_org/base/
PRESUBMIT.py 13 pattern = input_api.re.compile(r'^\s*@interface', input_api.re.MULTILINE)
  /external/markdown/markdown/extensions/
fenced_code.py 68 re.MULTILINE|re.DOTALL
  /hardware/ril/reference-ril/
atchannel.h 50 MULTILINE /* multiple line intermediate response
  /cts/hostsidetests/usb/src/com/android/cts/usb/
TestUsbTest.java 101 Pattern.MULTILINE);
125 Pattern.MULTILINE);
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
ModeTest.java 82 p = Pattern.compile("^foo([0-9]*)", Pattern.MULTILINE);
91 p = Pattern.compile("foo([0-9]*)$", Pattern.MULTILINE);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
scanner.py 13 (re.VERBOSE | re.MULTILINE | re.DOTALL))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
scanner.py 13 (re.VERBOSE | re.MULTILINE | re.DOTALL))
  /external/chromium_org/third_party/simplejson/
scanner.py 16 (re.VERBOSE | re.MULTILINE | re.DOTALL))
  /external/chromium_org/tools/android/
find_unused_resources.py 31 dump_out, re.MULTILINE)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
profiler.py 105 match = re.search("^Total:[^\n]*\n((?:[^\n]*\n){0,10})", pprof_output, re.MULTILINE)
148 match = re.search("^#[^\n]*\n((?: [^\n]*\n){1,10})", perf_output, re.MULTILINE)
  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
generate_builtins.py 87 kill_paren_whitespace = re.compile(r'[ \n]*\)', re.MULTILINE)
94 kill_globals = re.compile(r'^\(declare.*\n', re.MULTILINE)
  /external/mesa3d/src/glsl/builtins/tools/
generate_builtins.py 87 kill_paren_whitespace = re.compile(r'[ \n]*\)', re.MULTILINE)
94 kill_globals = re.compile(r'^\(declare.*\n', re.MULTILINE)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
textwrap.py 371 _whitespace_only_re = re.compile('^[ \t]+$', re.MULTILINE)
372 _leading_whitespace_re = re.compile('(^[ \t]*)(?:[^ \t\n])', re.MULTILINE)

Completed in 3162 milliseconds

1 2 3 4 5