/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 | 189 * <tr><td>{@code m}</td> <td>{@link #MULTILINE}</td> <td>allow {@code ^} and {@code $} to match beginning/end of any line</td></tr> 195 * and turn off multiline mode, {@code (?i)} would just turn on case-insensitivity, 196 * and {@code (?-m)} would just turn off multiline mode. 247 public static final int MULTILINE = 0x08; 362 * @see #MULTILINE 398 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/mesa3d/src/glsl/builtins/tools/ |
generate_builtins.py | 56 kill_paren_whitespace = re.compile(r'[ \n]*\)', re.MULTILINE); 72 kill_globals = re.compile(r'^\(declare.*\n', re.MULTILINE);
|
/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
|
scm.py | 219 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) [all...] |
/external/doclava/src/com/google/doclava/ |
DocFile.java | 27 private static final Pattern LINE = Pattern.compile("(.*)[\r]?\n", Pattern.MULTILINE);
|
/external/webkit/Tools/Scripts/webkitpy/common/net/ |
credentials.py | 76 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...] |
/cts/tools/utils/ |
buildCts.py | 43 pattern = re.compile(r'^\s*([^:#=\s]+)\s*:=\s*(.*?[^\\])$', re.MULTILINE + re.DOTALL)
|
/external/clang/utils/ |
token-delta.py | 107 re.DOTALL | re.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() {
|