Home
last modified time | relevance | path

Searched refs:DOTALL (Results 1 – 25 of 30) sorted by relevance

12

/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
Dscanner.py6 from re import VERBOSE, MULTILINE, DOTALL
11 FLAGS = (VERBOSE | MULTILINE | DOTALL)
Ddecoder.py8 FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
/external/doclava/src/com/google/doclava/
DAttrTagInfo.java28 private static final Pattern TEXT = Pattern.compile("(\\S+)\\s*(.*)", Pattern.DOTALL);
29 private static final Pattern NAME_TEXT = Pattern.compile("(\\S+)(.*)", Pattern.DOTALL);
DThrowsTagInfo.java25 static final Pattern PATTERN = Pattern.compile("(\\S+)\\s+(.*)", Pattern.DOTALL);
DParamTagInfo.java25 static final Pattern PATTERN = Pattern.compile("([^ \t\r\n]+)[ \t\r\n]+(.*)", Pattern.DOTALL);
DSampleTagInfo.java51 Pattern.compile("[\r\n \t]*([^\r\n \t]*)[\r\n \t]*([0-9A-Za-z_]*)[\r\n \t]*", Pattern.DOTALL);
DComment.java25 Pattern.compile("((.*?)\\.)[ \t\r\n\\<](.*)", Pattern.DOTALL);
/external/markdown/tests/extensions-x-codehilite/
Dcode.txt7 self.compiled_re = re.compile("^(.*)%s(.*)$" % pattern, re.DOTALL)
/external/protobuf/gtest/xcode/Scripts/
Dversiongenerate.py47 re.DOTALL)
/external/chromium/testing/gtest/xcode/Scripts/
Dversiongenerate.py76 re.DOTALL)
/external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
DPatternErrorTest.java51 flags |= Pattern.DOTALL; in testCompileErrors()
DPatternTest.java296 assertEquals(pat.flags(), Pattern.DOTALL | Pattern.COMMENTS); in testFlagsMethod()
300 assertEquals(pat.flags(), Pattern.DOTALL | Pattern.COMMENTS); in testFlagsMethod()
304 assertEquals(pat.flags(), Pattern.DOTALL | Pattern.CASE_INSENSITIVE); in testFlagsMethod()
315 assertEquals(pat.flags(), Pattern.CASE_INSENSITIVE | Pattern.DOTALL); in testFlagsMethod()
696 Pattern pat = Pattern.compile(".*aaa", Pattern.DOTALL); in testFindGreedy()
944 Pattern.compile("(?:)", Pattern.CANON_EQ | Pattern.DOTALL); in testCompileNonCaptGroup()
1562 pat = Pattern.compile(patString, Pattern.DOTALL); in testDotConstructionWithSurrogatesSupplementary()
1610 pat = Pattern.compile(patString, Pattern.DOTALL); in testGroupsWithSurrogatesSupplementary()
DPattern2Test.java572 p = Pattern.compile(".+/x.z", Pattern.DOTALL); in testCharacterClasses()
/external/markdown/markdown/extensions/
Dfenced_code.py68 re.MULTILINE|re.DOTALL
/external/gtest/test/
Dgtest_help_test.py70 re.DOTALL)
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
DStructuralWhitespaceStripper.java122 Pattern.compile("^" + IWS + "\\n(.*)$", Pattern.DOTALL);
130 Pattern.compile("^(.*?)" + IWS + "$", Pattern.DOTALL);
/external/protobuf/gtest/test/
Dgtest_help_test.py67 re.DOTALL)
/external/chromium/testing/gtest/test/
Dgtest_help_test.py78 re.DOTALL)
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
Dupdate_webgl_conformance_tests.py41 return re.compile(r'^<!--.*?-->\s*', re.DOTALL).sub('', text)
/external/markdown/markdown/
Dpreprocessors.py194 RE = re.compile(r'^(\ ?\ ?\ ?)\[([^\]]*)\]:\s*([^ ]*)(.*)$', re.DOTALL)
Dinlinepatterns.py129 self.compiled_re = re.compile("^(.*?)%s(.*?)$" % pattern, re.DOTALL)
/external/clang/utils/
Dtoken-delta.py107 re.DOTALL | re.MULTILINE)
/external/pcre/
Dpcrecpp.h476 static inline RE_Options DOTALL() { in DOTALL() function
/external/v8/tools/
Djs2c.py50 lines = re.sub(re.compile(r'/\*.*?\*/', re.DOTALL), '', lines) # comments.
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
Dbugzilla.py548 re.DOTALL)

12