HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 451 - 475 of 2026) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_syntax.py 485 import re namespace
506 mo = re.search(errtext, str(err))
525 source = re.sub('(?m)^ *:', '', """\
540 source = re.sub('(?m)^ *:', '', """\
  /external/chromium_org/tools/win/split_link/
split_link.py 13 import re namespace
102 if any(re.search(spec, input_file) for spec in description_all):
106 if any(re.search(spec, input_file) for spec in spec_list):
119 (re.compile(r' : error LNK2019: unresolved external symbol ".*" \((.*)\)'
122 (re.compile(r' : error LNK2001: unresolved external symbol ".*" \((.*)\)$'),
124 (re.compile(r' : error LNK2019: unresolved external symbol (.*)'
127 (re.compile(r' : error LNK2001: unresolved external symbol (.*)$'),
141 mo = re.search(r'fatal error LNK1120: (\d+) unresolved externals', output)
318 if re.search(lib_spec, input_file):
322 if re.search(obj_spec, obj, re.I)
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t004lexer.py 16 def reportError(self, re):
18 raise re
t006lexer.py 16 def reportError(self, re):
18 raise re
t007lexer.py 16 def reportError(self, re):
18 raise re
t008lexer.py 16 def reportError(self, re):
18 raise re
t009lexer.py 16 def reportError(self, re):
18 raise re
t044trace.py 27 def recover(self, input, re):
50 def recover(self, input, re):
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
filetestcase.py 27 import re namespace
41 _EXPECTED_RE = re.compile(r'\s*//\s*(?:(?P<line>[+-]?[0-9]+):)?'
  /external/chromium_org/chrome_frame/
combine_libs.py 15 import re namespace
98 remove_re = re.compile(opt.remove)
  /external/chromium_org/chromeos/ime/
gen_input_methods.py 46 import re namespace
105 if not line or re.match(r'#', line):
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
make_style_shorthands.py 30 import re namespace
72 return re.sub(r'(^[^-])|-(.)', lambda match: (match.group(1) or match.group(2)).upper(), property_name)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
crashlogs.py 29 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/layout_tests/servers/
http_server_unittest.py 29 import re namespace
59 self.assertEqual(re.findall(r"alias.url.+", config_file), [
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
phystokens.py 3 import keyword, re, token, tokenize namespace
11 re-create a faithful representation of the original source.
84 for part in re.split('(\n)', ttext):
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
filetestcase.py 27 import re namespace
41 _EXPECTED_RE = re.compile(r'\s*//\s*(?:(?P<line>[+-]?[0-9]+):)?'
  /external/chromium_org/third_party/jinja2/
tests.py 11 import re namespace
24 number_re = re.compile(r'^-?\d+(\.\d+)?$')
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/
sexps.py 30 import re namespace
49 sexp_token_regexp = re.compile(
  /external/chromium_org/tools/checkdeps/
cpp_checker.py 9 import re namespace
34 _EXTRACT_INCLUDE_PATH = re.compile(
89 # Check to see if we're at / inside a #if 0 block
  /external/chromium_org/tools/code_coverage/
croc_scan_test.py 8 import re namespace
33 s.re_token = re.compile(r'([\:\"\(\)])')
  /external/chromium_org/tools/grit/grit/format/
c_format.py 10 import re namespace
75 two_digit_hex_num = re.compile(
  /external/chromium_org/tools/json_schema_compiler/
cpp_util.py 12 import re namespace
35 return '_'.join([x[0].upper() + x[1:] for x in re.split('\W', s)])
  /external/chromium_org/tools/telemetry/telemetry/core/
repeat_options.py 6 import re namespace
39 match = re.match('([0-9]+)([sS]?)$', str(getattr(browser_options,
  /external/chromium_org/tools/valgrind/memcheck/
PRESUBMIT.py 10 import re namespace
14 sup_regex = re.compile('suppressions.*\.txt$')
  /external/chromium_org/v8/test/webkit/
regexp-in-and-foreach-handling.js 40 var re = tests[i][0],
43 matches = re.exec(str);
55 var re = tests[i][0],
58 matches = re.exec(str);

Completed in 637 milliseconds

<<11121314151617181920>>