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

1 2 3

  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
PackageTest.java 25 Pattern.MULTILINE);
29 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));
  /external/apache-harmony/regex/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);
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
PatternErrorTest.java 48 flags |= Pattern.MULTILINE;
ModeTest.java 82 p = Pattern.compile("^foo([0-9]*)", Pattern.MULTILINE);
91 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/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
scanner.py 6 from re import VERBOSE, MULTILINE, DOTALL
11 FLAGS = (VERBOSE | MULTILINE | DOTALL)
decoder.py 8 FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
  /frameworks/base/tests/DumpRenderTree2/assets/
run_layout_tests.py 50 if re.search("^INSTRUMENTATION_STATUS_CODE: -1", stdoutdata, re.MULTILINE) != None:
53 if re.search("^OK \([0-9]+ tests?\)", stdoutdata, re.MULTILINE) == None:
  /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
405 int icuFlags = flags & (CASE_INSENSITIVE | COMMENTS | MULTILINE | DOTALL | UNIX_LINES);
  /cts/libs/vogar-expect/src/vogar/
Expectation.java 42 = Pattern.compile(".*", Pattern.MULTILINE | Pattern.DOTALL);
ExpectationStore.java 53 private static final int PATTERN_FLAGS = Pattern.MULTILINE | Pattern.DOTALL;
  /external/markdown/markdown/extensions/
fenced_code.py 68 re.MULTILINE|re.DOTALL
  /hardware/ril/reference-ril/
atchannel.h 50 MULTILINE /* multiple line intermediate response
atchannel.c 284 case MULTILINE:
918 err = at_send_command_full (command, MULTILINE, responsePrefix,
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
changelog.py 55 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
  /external/skia/tools/
svn.py 97 status_regex = re.compile(status_regex_string, re.MULTILINE)
  /cts/tools/utils/
buildCts.py 43 pattern = re.compile(r'^\s*([^:#=\s]+)\s*:=\s*(.*?[^\\])$', re.MULTILINE + re.DOTALL)
  /external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
css_checker.py 102 re.MULTILINE)
132 for z in re.finditer(re.compile(zeros, re.MULTILINE), contents):
142 'multiline': True,
177 'multiline': True,
186 'multiline': True,
204 # If the check is multiline, it receieves the whole file and gives us
205 # back a list of things wrong. If the check isn't multiline, we pass it
207 if ('multiline' in check and check['multiline']):
210 # There are currently no multiline checks with ['after']
    [all...]
  /external/doclava/src/com/google/doclava/
DocFile.java 27 public static final Pattern LINE = Pattern.compile("(.*)[\r]?\n", Pattern.MULTILINE);
  /external/webkit/Tools/Scripts/webkitpy/common/net/
credentials.py 76 re.MULTILINE)
  /external/antlr/antlr-3.4/runtime/Python/tests/
testbase.py 200 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/webkit/Tools/wx/build/
build_utils.py 161 match = re.search('^\* (.*)', branches, re.MULTILINE)
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 427 Pattern.compile("(\\s|(#.*$))++", Pattern.MULTILINE);
433 Pattern.MULTILINE);
    [all...]

Completed in 789 milliseconds

1 2 3