HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 476 - 500 of 3066) sorted by null

<<11121314151617181920>>

  /external/autotest/client/tests/kvm/tests/
module_probe.py 1 import re, commands, logging, os namespace
29 mod_list = re.split("[, ]", mod_str)
  /external/autotest/client/tests/tbench/
tbench.py 1 import time, os, signal, re namespace
45 pattern = re.compile(r"Throughput (.*?) MB/sec (.*?) procs")
  /external/autotest/client/tests/tsc/
tsc.py 1 import os, re, logging namespace
47 latencies = re.findall("CPU \d+ - CPU \d+ =\s+-*\d+",
  /external/autotest/server/cros/
moblab_test.py 5 import re namespace
51 if not re.match(STORAGE_SERVER_REGEX, image_storage_server):
  /external/autotest/server/
site_host_route.py 5 import re, socket, subprocess namespace
22 route_info = re.split("\s*", output.split("\n")[0].rstrip(' '))[1:]
  /external/autotest/server/site_tests/brillo_StorageWriteSpeedTest/
brillo_StorageWriteSpeedTest.py 7 import re namespace
42 match = re.match('.*\(([0-9]+) bytes/sec\)$', line)
  /external/autotest/site_utils/autoupdate/lib/
test_control.py 8 import re namespace
14 _name_re = re.compile('\s*NAME\s*=')
  /external/autotest/site_utils/chromeos_proxy/
bot_config.py 31 import re namespace
64 m = re.match('.*/bot_([\d]+).*', os.getcwd())
  /external/autotest/tko/
utils.py 1 import os, sys, datetime, re namespace
80 match = re.search('^([0-9]+)-.+/(.+)$', tag)
  /external/chromium-trace/catapult/dashboard/dashboard/
get_logs.py 9 import re namespace
49 logs = [l for l in logs if re.match(log_filter, l.message)]
  /external/chromium-trace/catapult/dashboard/dashboard/models/
sheriff.py 7 import re namespace
50 if not re.match(r'[\w.+-]+@[\w.-]', val):
  /external/chromium-trace/catapult/systrace/profile_chrome/
ddms_controller.py 6 import re namespace
28 if re.match(r'.*am profile start.*--sampling', line):
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
ios_device.py 7 import re namespace
32 if line and re.match(r'\s*(iPod|iPhone|iPad):', line):
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
v8_profiler.py 6 import re namespace
35 match = re.match(self._V8_ARG % r'(\S+)', i)
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/rules/
log_url.py 17 import re namespace
32 self._url_re = re.compile(url)
  /external/chromium-trace/catapult/third_party/Paste/paste/util/
dateinterval.py 13 import re namespace
61 _timeRE = re.compile(r'[0-9]+[a-zA-Z]')
  /external/deqp/scripts/
update-copyright-year.py 24 import re namespace
52 data = re.sub(COPYRIGHT_PATTERN, COPYRIGHT_REPLACEMENT, data)
  /external/libchrome/base/
PRESUBMIT.py 13 pattern = input_api.re.compile(r'^\s*@interface', input_api.re.MULTILINE)
  /external/libvpx/libvpx/test/android/
scrape_gtest_log.py 19 import re namespace
43 re.findall(r'{([^}]*.?)}', blob)) + ']'
  /external/llvm/utils/llvm-build/llvmbuild/
configutil.py 5 import re namespace
16 replacement), where the regex and replacement will be used as in 're.sub' to
35 regex = re.compile(regex_string)
  /external/markdown/markdown/extensions/
abbr.py 26 import markdown, re namespace
30 ABBR_REF_RE = re.compile(r'[*]\[(?P<abbr>[^\]]*)\][ ]?:\s*(?P<title>.*)')
  /external/mesa3d/src/glsl/builtins/tools/
generate_builtins.py 6 import re namespace
57 for c in re.sub('\s\s+', ' ', s):
87 kill_paren_whitespace = re.compile(r'[ \n]*\)', re.MULTILINE)
94 kill_globals = re.compile(r'^\(declare.*\n', re.MULTILINE)
113 for func in re.finditer(r'\(function (.+)\n', proto_ir):
279 version = re.sub(r'_(glsl|vert|frag)$', '', profile)
  /external/opencv3/modules/core/src/opencl/runtime/generator/
common.py 1 import sys, os, re namespace
14 pattern = re.compile(
16 re.DOTALL | re.MULTILINE
18 return re.sub(pattern, replacer, s)
22 return re.findall(r'[a-z_A-Z0-9_]+|[^[a-z_A-Z0-9_ \n\r\t]', s)
74 p = re.sub(r'\* *([a-zA-Z0-9_]*) ?\)', '*)', p, 1)
77 parts = re.findall(r'[a-z_A-Z0-9]+|\*', p)
125 result = re.sub(r'([^\n /]) [ ]+', r'\1 ', result) # don't remove spaces at start of line
126 result = re.sub(r' ,', ',', result
    [all...]
  /external/opencv3/modules/ts/misc/
concatlogs.py 4 import glob, sys, os, re namespace
34 html = html[:idx2] + re.sub(r"[ \t\n\r]+", " ", text[idx1:])
  /external/protobuf/python/google/protobuf/
text_encoding.py 35 import re namespace
84 _CUNESCAPE_HEX = re.compile(r'(\\+)x([0-9a-fA-F])(?![0-9a-fA-F])')

Completed in 4119 milliseconds

<<11121314151617181920>>