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

1 2 3 4 5

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
ParserValidate.py 130 ReIsValieFamily = re.compile(r"^[A-Z]+[A-Za-z0-9]{0,}$", re.DOTALL)
161 ReIsValieArch = re.compile(r"^[a-zA-Z]+[a-zA-Z0-9]{0,}$", re.DOTALL)
181 ReIsValidFamily = re.compile(r"^[A-Z]+[A-Za-z0-9]{0,}$", re.DOTALL)
423 re.compile(r"^[0-9A-Za-z][0-9A-Za-z\-_]*$", re.DOTALL)
459 ReIsValidHexVersion = re.compile(r"[0][xX][0-9A-Fa-f]{8}$", re.DOTALL)
473 ReIsValieBuildNumber = re.compile(r"[0-9]{1,4}$", re.DOTALL)
490 ReIsValidCName = re.compile(r"^[A-Za-z_][0-9A-Za-z_\s\.]*$", re.DOTALL)
587 ReIsValidIntegerSingle = re.compile(r"^\s*[0-9]\s*$", re.DOTALL)
591 ReIsValidIntegerMulti = re.compile(r"^\s*[1-9][0-9]+\s*$", re.DOTALL)
623 ReIsValidByteHex = re.compile(r"^\s*0x[0-9a-fA-F]{1,2}\s*$", re.DOTALL)
    [all...]
  /external/curl/tests/
curl_test_data.py 33 REPLY_DATA = re.compile("<reply>\s*<data>(.*?)</data>", re.MULTILINE | re.DOTALL)
  /external/google-breakpad/src/testing/gtest/xcode/Scripts/
versiongenerate.py 76 re.DOTALL)
  /external/googletest/googletest/xcode/Scripts/
versiongenerate.py 76 re.DOTALL)
  /external/linux-kselftest/tools/testing/selftests/tc-testing/plugin-lib/
valgrindPlugin.py 100 r'definitely lost:\s+([,0-9]+)\s+bytes in\s+([,0-9]+)\sblocks', re.MULTILINE | re.DOTALL)
102 r'indirectly lost:\s+([,0-9]+)\s+bytes in\s+([,0-9]+)\s+blocks', re.MULTILINE | re.DOTALL)
104 r'possibly lost:\s+([,0-9]+)bytes in\s+([,0-9]+)\s+blocks', re.MULTILINE | re.DOTALL)
106 r'ERROR SUMMARY:\s+([,0-9]+) errors from\s+([,0-9]+)\s+contexts', re.MULTILINE | re.DOTALL)
  /external/cldr/tools/java/org/unicode/cldr/draft/
Rule.java 84 tempPrematch = Pattern.compile("(?<=" + pre + ")", Pattern.COMMENTS + Pattern.DOTALL);
87 tempPrematch = Pattern.compile(pre + "$", Pattern.COMMENTS + Pattern.DOTALL);
92 postmatch = Pattern.compile(post, Pattern.COMMENTS + Pattern.DOTALL);
  /external/markdown/markdown/extensions/
fenced_code.py 68 re.MULTILINE|re.DOTALL
  /external/skia/tools/copyright/
fileparser.py 74 self._comment_pattern = re.compile('/\*.*?\*/', re.DOTALL)
  /external/skqp/tools/copyright/
fileparser.py 74 self._comment_pattern = re.compile('/\*.*?\*/', re.DOTALL)
  /external/testng/src/main/java/org/testng/internal/
RegexpExpectedExceptionsHolder.java 40 return message != null && Pattern.compile(messageRegExp, Pattern.DOTALL).matcher(message).matches();
  /external/vogar/src/vogar/
Expectation.java 42 = Pattern.compile(".*", Pattern.MULTILINE | Pattern.DOTALL);
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
ExtendedWikiHelper.java 60 Pattern.compile("^=+(.+?)=+.+?(?=^=)", Pattern.MULTILINE | Pattern.DOTALL);
186 "\\[http.+?\\]|\\[\\[Category:.+?\\]\\])", "", Pattern.MULTILINE | Pattern.DOTALL));
  /external/doclava/src/com/google/doclava/
AttrTagInfo.java 34 private static final Pattern TEXT = Pattern.compile("(\\S+)\\s*(.*)", Pattern.DOTALL);
35 private static final Pattern NAME_TEXT = Pattern.compile("(\\S+)(.*)", Pattern.DOTALL);
ThrowsTagInfo.java 31 static final Pattern PATTERN = Pattern.compile("(\\S+)\\s+(.*)", Pattern.DOTALL);
ParamTagInfo.java 31 static final Pattern PATTERN = Pattern.compile("([^ \t\r\n]+)[ \t\r\n]+(.*)", Pattern.DOTALL);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
scanner.py 13 (re.VERBOSE | re.MULTILINE | re.DOTALL))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
scanner.py 13 (re.VERBOSE | re.MULTILINE | re.DOTALL))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/ssl/
get-remote-certificate.py 25 certfile_contents, re.MULTILINE | re.DOTALL)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfDepexSectionParser.py 87 ReFormatComment = re.compile(r"""#(?:\s*)\[(.*?)\](?:.*)""", re.DOTALL)
  /external/python/cpython2/Lib/json/
scanner.py 13 (re.VERBOSE | re.MULTILINE | re.DOTALL))
  /external/python/cpython2/Tools/ssl/
get-remote-certificate.py 25 certfile_contents, re.MULTILINE | re.DOTALL)
  /external/sl4a/Docs/
generate_api_from_javadoc.py 31 flags=re.MULTILINE | re.DOTALL)
59 re.MULTILINE | re.DOTALL)
69 flags=re.MULTILINE | re.DOTALL)
  /art/runtime/interpreter/mterp/
gen_mterp.py 31 opcode_re = re.compile(r"^\s*V\((....), (\w+),.*", re.DOTALL)
  /cts/hostsidetests/incident/src/com/android/server/cts/
PackageIncidentTest.java 58 Pattern.DOTALL);
  /external/autotest/client/site_tests/policy_PlatformKeys/
policy_PlatformKeys.py 77 '-----END CERTIFICATE-----', flags=re.DOTALL)

Completed in 2414 milliseconds

1 2 3 4 5