/external/autotest/client/tests/kernel_sysrq_info/ |
kernel_sysrq_info.py | 8 import re namespace 44 if re.search(test_cases[key], s) == None:
|
/external/autotest/client/tools/ |
oprofile_diff | 2 import re, sys namespace 7 if re.match('\d', line):
|
/external/autotest/site_utils/bootperf-bin/ |
resultsdir.py | 14 import re namespace 19 _PERF_KEYVAL_PATTERN = re.compile("(.*){perf}=(.*)\n")
|
/external/autotest/site_utils/presubmit_hooks/ |
check_suite_scheduler.py | 8 import os, re, sys namespace 24 pattern = re.compile(r'.*files/suite_scheduler.ini$|.*/control(?:\.\w+)?$')
|
/external/autotest/site_utils/stats/ |
apacheinfo.py | 6 import re namespace 35 m = re.search("(\d+) requests/sec", page)
|
/external/chromium-trace/catapult/devil/devil/utils/ |
lsusb.py | 6 import re namespace 10 _COULDNT_OPEN_ERROR_RE = re.compile(r'Couldn\'t open device.*') 11 _INDENTATION_RE = re.compile(r'^( *)') 12 _LSUSB_BUS_DEVICE_RE = re.compile(r'^Bus (\d{3}) Device (\d{3}): (.*)') 13 _LSUSB_ENTRY_RE = re.compile(r'^ *([^ ]+) +([^ ]+) *([^ ].*)?$') 14 _LSUSB_GROUP_RE = re.compile(r'^ *([^ ]+.*):$')
|
/external/chromium-trace/catapult/firefighter/default/common/ |
query_filter.py | 5 import re namespace 43 if re.search(r'[^A-Za-z0-9\(\)-_. ]', parameter_value):
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/ |
inspector_console_unittest.py | 5 import re namespace 29 self.assertTrue(re.match(expected_line, line))
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/scripts/ |
extract_implies.py | 12 import re namespace 17 import_re = re.compile('PyImport_ImportModule\w+\("(\w+)"\);')
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/appstats/protorpc_appstats/ |
main.py | 19 import re namespace 35 _SERVICE_PATH_REGEX = re.compile(r'(.*)/service(%s|/protorpc(%s)?)?' %
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/filters/ |
whitespace.py | 3 import re namespace 9 SPACES_REGEX = re.compile("[%s]+" % spaceCharacters)
|
/external/compiler-rt/lib/sanitizer_common/scripts/ |
litlint.py | 11 import re namespace 15 runRegex = re.compile(r'(?<!-o)(?<!%run) %t\s')
|
/external/regex-re2/re2/testing/ |
possible_match_test.cc | 110 Regexp* re = Regexp::Parse(t.regexp, Regexp::LikePerl, NULL); local 111 CHECK(re); 112 Prog* prog = re->CompileToProg(0); 117 re->Decref(); 199 RE2 re(regexp, RE2::Latin1); 200 CHECK_EQ(re.error(), ""); 203 if(!re.PossibleMatchRange(&min, &max, 10)) { 216 if (!RE2::FullMatch(s, re))
|
/external/v8/test/mjsunit/harmony/ |
regexp-property-scripts.js | 7 function t(re, s) { assertTrue(re.test(s)); } 8 function f(re, s) { assertFalse(re.test(s)); }
|
/external/v8/test/simdjs/ |
generate.py | 6 # Script to re-generate SimdJs.json from a SimdJs.json.template. 10 import re namespace 25 tests = re.findall("load \\(\\'([^']+)[.]js\\'\\)", run_js)
|
/external/v8/tools/gyp/test/linux/ |
gyptest-implicit-rpath.py | 13 import re namespace 26 r = re.compile(r'Library rpath: \[([^\]]+)\]')
|
gyptest-target-rpath.py | 13 import re namespace 26 r = re.compile(r'Library rpath: \[([^\]]+)\]')
|
/external/v8/tools/gyp/test/mac/ |
gyptest-strip.py | 14 import re namespace 31 r = re.compile(r'nsyms\s+(\d+)')
|
/frameworks/base/core/java/android/app/admin/ |
DevicePolicyManager.java | 664 * device admin is already installed on the device, it will only be re-downloaded from [all...] |
/frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/ |
XMLParser.java | 121 catch (RecognitionException re) { 122 _localctx.exception = re; 123 _errHandler.reportError(this, re); 124 _errHandler.recover(this, re); 185 catch (RecognitionException re) { 186 _localctx.exception = re; 187 _errHandler.reportError(this, re); 188 _errHandler.recover(this, re); 318 catch (RecognitionException re) { 319 _localctx.exception = re; [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/macholib/ |
dylib.py | 8 import re namespace 12 DYLIB_RE = re.compile(r"""(?x)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
ZoomHeight.py | 3 import re namespace 25 m = re.match(r"(\d+)x(\d+)\+(-?\d+)\+(-?\d+)", geom)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_unicode.py | 5 import re namespace 10 _literal_re = re.compile(ur"[uU][rR]?[\'\"]")
|
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/macholib/ |
dylib.py | 8 import re namespace 12 DYLIB_RE = re.compile(r"""(?x)
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
ZoomHeight.py | 3 import re namespace 25 m = re.match(r"(\d+)x(\d+)\+(-?\d+)\+(-?\d+)", geom)
|