HomeSort by relevance Sort by last modified time
    Searched refs:DOTALL (Results 26 - 50 of 66) sorted by null

12 3

  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
PatternTest.java 61 Pattern.MULTILINE, Pattern.DOTALL, Pattern.UNICODE_CASE
361 // assertEquals(pat.flags(), Pattern.DOTALL | Pattern.COMMENTS);
365 // assertEquals(pat.flags(), Pattern.DOTALL | Pattern.COMMENTS);
369 // assertEquals(pat.flags(), Pattern.DOTALL | Pattern.CASE_INSENSITIVE);
380 // assertEquals(pat.flags(), Pattern.CASE_INSENSITIVE | Pattern.DOTALL);
794 Pattern pat = Pattern.compile(".*aaa", Pattern.DOTALL);
    [all...]
  /external/doclava/src/com/google/doclava/
SampleTagInfo.java 57 Pattern.compile("[\r\n \t]*([^\r\n \t]*)[\r\n \t]*([0-9A-Za-z_]*)[\r\n \t]*", Pattern.DOTALL);
Comment.java 28 Pattern.compile("((.*?)\\.)[ \t\r\n\\<](.*)", Pattern.DOTALL);
  /external/markdown/markdown/
preprocessors.py 194 RE = re.compile(r'^(\ ?\ ?\ ?)\[([^\]]*)\]:\s*([^ ]*)(.*)$', re.DOTALL)
  /external/owasp/sanitizer/src/main/org/owasp/html/examples/
EbayPolicyExample.java 122 ".?", Pattern.DOTALL);
  /external/vogar/src/vogar/
ClassFileIndex.java 70 // DOTALL flag allows proper handling of multiline strings
71 FAILURE_PATTERNS.add(Pattern.compile(patternString, Pattern.DOTALL));
ExpectationStore.java 49 private static final int PATTERN_FLAGS = Pattern.MULTILINE | Pattern.DOTALL;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
re.py 96 S DOTALL "." matches any character at all, including the newline.
111 "U", "IGNORECASE", "LOCALE", "MULTILINE", "DOTALL", "VERBOSE",
121 S = DOTALL = sre_compile.SRE_FLAG_DOTALL # make dot match newline
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
re.py 96 S DOTALL "." matches any character at all, including the newline.
111 "U", "IGNORECASE", "LOCALE", "MULTILINE", "DOTALL", "VERBOSE",
121 S = DOTALL = sre_compile.SRE_FLAG_DOTALL # make dot match newline
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gdb.py 190 gdb_output, re.DOTALL)
201 m = re.match(pattern, actual, re.DOTALL)
591 re.DOTALL),
test_re.py 438 self.assertEqual(re.match("a.b", "a\nb", re.DOTALL).group(0),
440 self.assertEqual(re.match("a.*b", "a\n\nb", re.DOTALL).group(0),
564 self.assertEqual(re.S, re.DOTALL)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gdb.py 190 gdb_output, re.DOTALL)
201 m = re.match(pattern, actual, re.DOTALL)
591 re.DOTALL),
test_re.py 438 self.assertEqual(re.match("a.b", "a\nb", re.DOTALL).group(0),
440 self.assertEqual(re.match("a.*b", "a\n\nb", re.DOTALL).group(0),
564 self.assertEqual(re.S, re.DOTALL)
    [all...]
  /external/clang/utils/
token-delta.py 107 re.DOTALL | re.MULTILINE)
  /external/pcre/dist/
pcrecpp.h 240 // CASELESS(), UTF8(), MULTILINE(), DOTALL(), EXTENDED()
399 bool dotall() const { function in class:pcrecpp::RE_Options
476 static inline RE_Options DOTALL() {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java 65 Pattern.CASE_INSENSITIVE | Pattern.DOTALL);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
decoder.py 15 FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
decoder.py 15 FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
  /cts/tools/utils/
buildCts.py 50 pattern = re.compile(r'^\s*([^:#=\s]+)\s*:=\s*(.*?[^\\])$', re.MULTILINE + re.DOTALL)
  /external/owasp/sanitizer/src/tests/org/owasp/html/
AntiSamyTest.java 415 Pattern p = Pattern.compile(".*<strong(\\s*)/>.*", Pattern.DOTALL);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
PyParse.py 62 """, re.VERBOSE | re.DOTALL).match
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
PyParse.py 62 """, re.VERBOSE | re.DOTALL).match
  /cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java 765 Pattern p = Pattern.compile(commentPattern, Pattern.DOTALL);
772 Matcher titleM = Pattern.compile("@title (.*)", Pattern.DOTALL)
    [all...]
  /external/v8/tools/
js2c.py 56 lines = re.sub(re.compile(r'/\*.*?\*/', re.DOTALL), '', lines) # comments.
  /external/lldb/test/pexpect-2.4/
pexpect.py     [all...]

Completed in 1760 milliseconds

12 3