Searched defs:re (Results 51 - 75 of 1081) sorted by relevance

1234567891011>>

/external/chromium_org/chromeos/ime/
H A Dgen_input_methods.py48 import re namespace
110 if not line or re.match(r'#', line):
/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/third_party/WebKit/Source/build/scripts/
H A Dmake_private_script_source.py14 import re namespace
31 match = re.search(r'partial\s+interface\s+(\w+)\s*{', contents)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A Dinline-javascript-imports.py38 import re namespace
68 outputScript = re.sub(r'importScripts?\([\'"]([^\'"]+)[\'"]\)', replace, inputScript)
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dcheck_injected_webgl_calls_info.py30 import re namespace
40 source = re.sub(r"//.*\n", "", source) # Remove line comments
41 source = re.sub(r"\s+", " ", source) # Line breaks to spaces, collapse spaces
42 source = re.sub(r"/\*.*?\*/", "", source) # Remove block comments
43 source = re.sub(r"\[.*?\]", "", source) # Remove method parameters and array type suffixes
44 source = re.sub(r"\?", "", source) # Remove optional type suffixes
50 match = re.match(r"^\s*(\w[\w\s]*)\s+(\w+)\s*\(([^()]*)\)", line)
61 match = re.match(r"^\s*(\w[\w\s]*)\s+(\w+)\s*$", argument)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
H A Dchecksvnconfigfile.py28 import re namespace
45 errorcode_autoprop = not re.search("^\s*enable-auto-props\s*=\s*yes", config_file, re.MULTILINE)
46 errorcode_png = not re.search("^\s*\*\.png\s*=\s*svn:mime-type=image/png", config_file, re.MULTILINE)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dcrashlogs.py29 import re namespace
56 first_line_regex = re.compile(r'^Process:\s+(?P<process_name>.*) \[(?P<pid>\d+)\]$')
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Djsonchecker.py26 import re namespace
46 match = re.search(r': line (?P<line>\d+) column \d+', str(error))
/external/chromium_org/third_party/angle/tests/deqp_tests/
H A Dgenerate_deqp_tests.py2 import re namespace
/external/chromium_org/third_party/cython/src/Tools/
H A Dcython-epydoc.py5 import re namespace
8 CYTHON_SIGNATURE_RE = re.compile(
/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/re2/re2/testing/
H A Dregexp_test.cc16 Regexp* re; local
17 re = Regexp::Parse("x", Regexp::NoParseFlags, NULL);
19 re->Incref();
21 re->Decref();
22 CHECK_EQ(re->Ref(), 1);
23 re->Decref();
35 Regexp* re = Regexp::Concat(&v[0], v.size(), Regexp::NoParseFlags); local
36 CHECK_EQ(re->ToString(), string(v.size(), 'x'));
37 re->Decref();
/external/chromium_org/tools/android/
H A Dremove_strings.py9 import re namespace
22 names_pattern = '|'.join(map(re.escape, string_names))
24 grd = re.sub(pattern, '', grd, flags=re.DOTALL)
/external/chromium_org/tools/generate_library_loader/
H A Dgenerate_library_loader.py20 import re namespace
172 re.sub(r'[\W]', '_', options.output_h).upper())
/external/chromium_org/tools/git/
H A Dmffr.py21 import re namespace
39 Once files are found, |re.sub| is run to replace |original| with
53 posix_ere_original = re.sub(r"\\s", "[[:space:]]", original)
66 contents = re.sub(original, replacement, original_contents)
/external/chromium_org/tools/grit/grit/format/
H A Dchrome_messages_json.py10 import re namespace
H A Djs_map_format.py9 import re namespace
34 en_message = re.sub(r'%\d\$([a-z])', r'%\1', en_message)
36 en_message = re.sub(r'\\', r'\\\\', en_message)
37 en_message = re.sub(r'"', r'\"', en_message)
41 loc_message = re.sub(r'\\', r'\\\\', loc_message)
42 loc_message = re.sub(r'"', r'\"', loc_message)
/external/chromium_org/tools/grit/grit/gather/
H A Dregexp.py9 import re namespace
56 regexp: re.compile('...', re.MULTILINE)
/external/chromium_org/tools/grit/grit/
H A Dlazy_re.py12 import re namespace
30 self._lazy_re = re.compile(*self._stash_args, **self._stash_kwargs)
42 re.RegexObject (via re.compile) with the same arguments passed to
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-installname.py14 import re namespace
27 r = re.compile(r'cmd LC_ID_DYLIB.*?name (.*?) \(offset \d+\)', re.DOTALL)
H A Dgyptest-rpath.py14 import re namespace
27 r = re.compile(r'cmd LC_RPATH.*?path (.*?) \(offset \d+\)', re.DOTALL)
/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/
H A Dextension_page.py5 import re namespace
11 return re.match(r"(chrome-extension://)([^/]+)", url).group(2)
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
H A Dlist_ports.py19 import sys, os, re namespace
42 r = re.compile(regexp, re.I)
/external/chromium_org/v8/test/mjsunit/bugs/
H A Dbug-617.js38 var re = /foo/; variable
40 re.exec = make_sure_we_dont_get_here;
42 re("foo");

Completed in 4225 milliseconds

1234567891011>>