Searched refs:re (Results 276 - 300 of 1591) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/gpu/gles2_conform_support/
H A Dgenerate_gles2_conform_tests.py9 import re namespace
42 "name": re.sub(r'[^A-Za-z0-9]', '_', test),
/external/chromium_org/media/tools/layout_tests/
H A Dbug.py7 import re namespace
35 match = re.match('Bug\((\w+)\)$', bug_modifier)
/external/chromium_org/native_client_sdk/src/build_tools/
H A Deasy_template.py10 import re namespace
19 indent_re = re.compile(r'\s*')
48 re.sub(expr_re, '%s', line),
49 ', '.join(re.findall(expr_re, line)))
64 statement_re = statement_re or re.compile(STATEMENT_RE)
65 expr_re = expr_re or re.compile(EXPR_RE)
108 f.read(), re.compile(STATEMENT_RE), re.compile(EXPR_RE))
/external/chromium_org/testing/gtest/scripts/
H A Dcommon.py35 import re namespace
43 _SVN_INFO_URL_RE = re.compile(r'^URL: https://(\w+)\.googlecode\.com/svn(.*)')
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DPRESUBMIT.py23 bucketFinder = input_api.re.compile(r'.*CSSProperty.*return\s*([0-9]+).*')
25 maximumFinder = input_api.re.compile(
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dbuilders.py29 import re namespace
80 return re.sub(r'[\s().]', '_', builder_name)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Dxcodeproj.py26 import re namespace
37 self._development_region_regex = re.compile('developmentRegion = (?P<region>.+);')
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
H A Dtest_parser.py31 import re namespace
134 return bool(self.test_doc.find(src=re.compile('[\'\"/]?/resources/testharness')))
143 elements_with_src_attributes = doc.findAll(src=re.compile('.*'))
144 elements_with_href_attributes = doc.findAll(href=re.compile('.*'))
146 url_pattern = re.compile('url\(.*\)')
149 url = re.search(url_pattern, url)
150 url = re.sub('url\([\'\"]?', '', url.group(0))
151 url = re.sub('[\'\"]?\)', '', url)
/external/chromium_org/third_party/libvpx/source/libvpx/test/android/
H A Dscrape_gtest_log.py19 import re namespace
43 re.findall(r'{([^}]*.?)}', blob)) + ']'
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
H A Dgenerate_builtins.py6 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/chromium_org/third_party/re2/re2/testing/
H A Dpossible_match_test.cc110 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/chromium_org/tools/check_ecs_deps/
H A Dcheck_ecs_deps.py10 import re namespace
147 forbidden_regexp = re.compile(string.join(map(re.escape,
149 mapping_regexp = re.compile(r"\s*([^/]*) => (.*)")
150 blessed_regexp = re.compile(r"(%s)[-0-9.]*\.so" % string.join(map(re.escape,
152 built_regexp = re.compile(re.escape(build_dir + os.sep))
/external/chromium_org/tools/deep_memory_profiler/tests/
H A Dmock_gsutil.py7 import re namespace
13 ZIP_PATTERN = re.compile('dmprof......\.zip')
/external/chromium_org/tools/findit/common/
H A Dutils.py5 import re namespace
11 GIT_HASH_PATTERN = re.compile(r'^[0-9a-fA-F]{40}$')
/external/chromium_org/tools/gyp/test/linux/
H A Dgyptest-implicit-rpath.py13 import re namespace
26 r = re.compile(r'Library rpath: \[([^\]]+)\]')
/external/chromium_org/tools/gyp/tools/
H A Dpretty_gyp.py10 import re namespace
13 # Regex to remove comments when we're counting braces.
14 COMMENT_RE = re.compile(r'\s*#.*')
16 # Regex to remove quoted strings when we're counting braces.
21 QUOTE_RE = re.compile(QUOTE_RE_STR)
30 search_re = re.compile(r'(.*?)(#)(.*)')
43 search_re = re.compile(r'(.*?)' + QUOTE_RE_STR)
64 lines (lines that matche the double_*_brace re's above) before
71 double_open_brace_re = re.compile(r'(.*?[\[\{\(,])(\s*)([\[\{\(])')
72 double_close_brace_re = re
[all...]
/external/chromium_org/tools/metrics/histograms/
H A Dupdate_net_error_codes.py13 import re namespace
29 ERROR_REGEX = re.compile(r'^NET_ERROR\(([\w]+), -([0-9]+)\)')
/external/chromium_org/tools/perf/page_sets/
H A Dgmail_compose_discard.py5 import re namespace
17 '.singleNodeValue' % re.escape(xpath))
H A Dindexeddb_offline.py5 import re namespace
17 '.singleNodeValue' % re.escape(xpath))
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dinspector_console_unittest.py5 import re namespace
31 self.assertTrue(re.match(expected_line, line))
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dv8_profiler.py5 import re namespace
34 match = re.match(self._V8_ARG % '(\S+)', i)
/external/chromium_org/v8/test/mjsunit/
H A Dregexp-captures.js28 var re = /^(((N({)?)|(R)|(U)|(V)|(B)|(H)|(n((n)|(r)|(v)|(h))?)|(r(r)?)|(v)|(b((n)|(b))?)|(h))|((Y)|(A)|(E)|(o(u)?)|(p(u)?)|(q(u)?)|(s)|(t)|(u)|(w)|(x(u)?)|(y)|(z)|(a((T)|(A)|(L))?)|(c)|(e)|(f(u)?)|(g(u)?)|(i)|(j)|(l)|(m(u)?)))+/; variable
29 var r = new RegExp(re)
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dlitlint.py11 import re namespace
15 runRegex = re.compile(r'(?<!-o)(?<!%run) %t\s')
/external/libvpx/libvpx/test/android/
H A Dscrape_gtest_log.py19 import re namespace
43 re.findall(r'{([^}]*.?)}', blob)) + ']'
/external/llvm/utils/llvm-build/llvmbuild/
H A Dconfigutil.py5 import re namespace
16 replacement), where the regex and replacement will be used as in 're.sub' to
35 regex = re.compile(regex_string)

Completed in 9323 milliseconds

<<11121314151617181920>>