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

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/Python/tests/
t002lexer.py 16 def reportError(self, re):
18 raise re
t003lexer.py 16 def reportError(self, re):
18 raise re
t039labels.py 13 def recover(self, input, re):
22 def recover(self, input, re):
  /external/chromium-trace/trace-viewer/build/
check_grit.py 7 import re namespace
21 grit_files.extend(re.findall(
  /external/chromium_org/
PRESUBMIT.py 12 import re namespace
233 inclusion_pattern = input_api.re.compile(r'(%s)\s*\(' % base_function_pattern)
234 comment_pattern = input_api.re.compile(r'//.*%s' % base_function_pattern)
235 exclusion_pattern = input_api.re.compile(
270 pattern = input_api.re.compile(r'^#include\s*<iostream>',
271 input_api.re.MULTILINE)
368 if input_api.re.match(item, local_path):
394 pattern = input_api.re.compile(r'^#pragma\s+once',
395 input_api.re.MULTILINE)
414 pattern = input_api.re.compile(r'\?\s*(true|false)\s*:\s*(true|false)'
    [all...]
  /external/chromium_org/base/
PRESUBMIT.py 13 pattern = input_api.re.compile(r'^\s*@interface', input_api.re.MULTILINE)
  /external/chromium_org/chrome/
PRESUBMIT.py 11 import re namespace
63 m = re.search(r"'(.*\/content\/.*unittest.*)'", line)
  /external/chromium_org/chrome/browser/nacl_host/test/
gdb_rsp.py 7 import re namespace
55 match = re.match('\+\$([^#]*)#([0-9a-fA-F]{2})$', reply)
  /external/chromium_org/google_apis/
google_api_keys.py 14 import re namespace
30 line_pattern = re.compile(line_regexp)
  /external/chromium_org/media/
PRESUBMIT.py 42 problem_re = input_api.re.compile(
44 exception_re = input_api.re.compile(
  /external/chromium_org/media/tools/layout_tests/
bug.py 7 import re namespace
35 match = re.match('Bug\((\w+)\)$', bug_modifier)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
inline-javascript-imports.py 38 import re namespace
68 outputScript = re.sub(r'importScripts?\([\'"]([^\'"]+)[\'"]\)', replace, inputScript)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
patchreader.py 32 import re namespace
68 match = re.search("\s*png$", path)
  /external/chromium_org/third_party/mesa/src/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/chromium_org/tools/find_runtime_symbols/
reduce_debugline.py 16 import re namespace
20 _FILENAME_PATTERN = re.compile('(CU: |)(.+)\:')
  /external/chromium_org/tools/grit/grit/tool/
postprocess_unittest.py 12 import re namespace
52 smarter = re.compile(r'(DUMMY)(.*)')
  /external/chromium_org/tools/heapcheck/
PRESUBMIT.py 10 import re namespace
14 sup_regex = re.compile('suppressions.*\.txt$')
  /external/chromium_org/tools/perf/page_sets/
PRESUBMIT.py 5 import re namespace
38 if not re.match('^([A-Za-z0-9]{40})$', file_hash):
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
inspector_console_unittest.py 5 import re namespace
36 self.assertTrue(re.match(expected_line, line))
  /external/chromium_org/v8/test/webkit/fast/js/
regexp-lastindex.js 28 var re = new RegExp("[^\\s$]+", "g");
31 shouldBe('while (match = re.exec(" abcdefg")) accumulate += match + "; "; accumulate', '"abcdefg; "');
33 var re = new RegExp(/\d/g);
35 shouldBe('while (match = re.exec("123456789")) accumulate += match + "; "; accumulate', '"1; 2; 3; 4; 5; 6; 7; 8; 9; "');
  /external/chromium_org/v8/tools/testrunner/local/
utils.py 34 import re namespace
88 elif (not machine) or (not re.match('(x|i[3-6])86$', machine) is None):
  /external/chromium_org/webkit/tools/layout_tests/
PRESUBMIT.py 38 is_error = lambda line: (input_api.re.match('^Line:', line) or
39 input_api.re.search('ERROR Line:', line))
  /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)

Completed in 1839 milliseconds

<<11121314151617181920>>