HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 301 - 325 of 1775) sorted by null

<<11121314151617181920>>

  /development/testrunner/
android_build.py 22 import re namespace
86 host_os = re.search("HOST_OS=(\w+)", config).group(1)
87 host_arch = re.search("HOST_ARCH=(\w+)", config).group(1)
android_mk.py 25 import re namespace
33 _RE_INCLUDE = re.compile(r'include\s+\$\((.+)\)')
34 _RE_VARIABLE_REF = re.compile(r'\$\((.+)\)')
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/debug/
wdg_validate.py 11 import re namespace
35 _end_body_regex = re.compile(r'</body>', re.I)
  /external/deqp/framework/qphelper/
gen_release_info.py 4 import re namespace
24 m = re.search(r'^[a-zA-Z0-9]{40}', src)
27 m = re.search(r'^ref:\s+([^\s]+)', src)
  /external/libcxx/test/libcxx/android/
compiler.py 2 import re namespace
25 match = re.search(r'-target\s+(\S+)', self.cxx_template)
36 match = re.search(r'^Target: (.+)$', line)
  /external/lldb/test/lang/objc/foundation/
TestFoundationDisassembly.py 30 match = re.search(" (/.*/Foundation.framework/.*)$", line)
43 codeRE = re.compile(r"""
48 """, re.VERBOSE)
  /external/lldb/utils/test/
run-dis.py 9 import re namespace
21 # And the re-compiled regular expression object.
31 mach_o = re.compile('\sMach-O.+binary')
45 # We're not interested in .h file.
112 path_regexp = re.compile(path_pattern)
  /external/llvm/utils/release/
findRegressions-nightly.py 2 import re, string, sys, os, time namespace
17 d = re.sub(r',\d+:\d','', d)
19 r = re.findall(r'TEST-(PASS|FAIL|RESULT.*?):\s+(.*?)\s+(.*?)\r*\n', d)
  /external/llvm/utils/unittest/googletest/src/
gtest-port.cc 113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
127 // Returns true iff regular expression re matches the entire str.
128 bool RE::FullMatch(const char* str, const RE& re) {
129 if (!re.is_valid_) return false;
132 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
135 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-port.cc 113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
127 // Returns true iff regular expression re matches the entire str.
128 bool RE::FullMatch(const char* str, const RE& re) {
129 if (!re.is_valid_) return false;
132 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
135 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/nanopb-c/tests/site_scons/
site_init.py 3 import re namespace
88 if pattern.strip() and not re.search(pattern.strip(), data, re.MULTILINE):
  /external/pdfium/testing/tools/
fixup_pdf_template.py 18 import re namespace
66 match = re.match(self.OBJECT_PATTERN, line)
69 line = re.sub(self.OBJECT_PATTERN, self.OBJECT_REPLACEMENT, line)
  /external/protobuf/gtest/src/
gtest-port.cc 111 // Implements RE. Currently only needed for death tests.
113 RE::~RE() {
125 // Returns true iff regular expression re matches the entire str.
126 bool RE::FullMatch(const char* str, const RE& re) {
127 if (!re.is_valid_) return false;
130 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
133 // Returns true iff regular expression re matches a substring of st
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
AutoExpand.py 2 import re namespace
53 wbefore = re.findall(r"\b" + word + r"\w+\b", before)
56 wafter = re.findall(r"\b" + word + r"\w+\b", after)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sgmllib.py 18 import re namespace
24 interesting = re.compile('[&<]')
25 incomplete = re.compile('&([a-zA-Z][a-zA-Z0-9]*|#[0-9]*)?|'
30 entityref = re.compile('&([a-zA-Z][-.a-zA-Z0-9]*)[^a-zA-Z0-9]')
31 charref = re.compile('&#([0-9]+)[^0-9]')
33 starttagopen = re.compile('<[>a-zA-Z]')
34 shorttagopen = re.compile('<[a-zA-Z][-.a-zA-Z0-9]*/')
35 shorttag = re.compile('<([a-zA-Z][-.a-zA-Z0-9]*)/([^/]*)/')
36 piclose = re.compile('>')
37 endbracket = re.compile('[<>]'
    [all...]
token.py 88 import re namespace
102 prog = re.compile(
104 re.IGNORECASE)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
AutoExpand.py 2 import re namespace
53 wbefore = re.findall(r"\b" + word + r"\w+\b", before)
56 wafter = re.findall(r"\b" + word + r"\w+\b", after)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sgmllib.py 18 import re namespace
24 interesting = re.compile('[&<]')
25 incomplete = re.compile('&([a-zA-Z][a-zA-Z0-9]*|#[0-9]*)?|'
30 entityref = re.compile('&([a-zA-Z][-.a-zA-Z0-9]*)[^a-zA-Z0-9]')
31 charref = re.compile('&#([0-9]+)[^0-9]')
33 starttagopen = re.compile('<[>a-zA-Z]')
34 shorttagopen = re.compile('<[a-zA-Z][-.a-zA-Z0-9]*/')
35 shorttag = re.compile('<([a-zA-Z][-.a-zA-Z0-9]*)/([^/]*)/')
36 piclose = re.compile('>')
37 endbracket = re.compile('[<>]'
    [all...]
token.py 88 import re namespace
102 prog = re.compile(
104 re.IGNORECASE)
  /external/google-breakpad/src/testing/gtest/scripts/
pump.py 68 import re namespace
73 (re.compile(r'\$var\s+'), '$var'),
74 (re.compile(r'\$elif\s+'), '$elif'),
75 (re.compile(r'\$else\s+'), '$else'),
76 (re.compile(r'\$for\s+'), '$for'),
77 (re.compile(r'\$if\s+'), '$if'),
78 (re.compile(r'\$range\s+'), '$range'),
79 (re.compile(r'\$[_A-Za-z]\w*'), '$id'),
80 (re.compile(r'\$\(\$\)'), '$($)'),
81 (re.compile(r'\$'), '$')
    [all...]
  /frameworks/base/tools/apilint/
apilint.py 29 import re, sys, collections, traceback, argparse namespace
87 raw = re.sub("<.+?>", "", raw)
89 raw = re.split("[\s(),;]+", raw)
108 ident = re.sub("<.+?>", "", ident)
173 re_blame = re.compile("^([a-z0-9]{7,}) \(<([^>]+)>.+?\) (.+?)$")
261 if re.match("android\.R\.[a-z]+", clazz.fullname): return
265 if re.match("[A-Z0-9_]+", f.name) is None:
279 if re.match("android\.R\.[a-z]+", clazz.fullname): return
281 if re.search("[A-Z]{2,}", clazz.name) is not None:
283 if re.match("[^A-Z]", clazz.name)
    [all...]
  /external/doclava/src/com/google/doclava/parser/
JavaParser.java 123 * type and then move on to decide whether we're dealing with a field
631 catch (RecognitionException re) {
632 reportError(re);
633 recover(input,re);
    [all...]
  /external/pcre/dist/
pcre_study.c 69 re compiled pattern block
82 find_minlength(const REAL_PCRE *re, const pcre_uchar *code,
133 d = find_minlength(re, cc, startcode, options, recurse_depth);
388 pcre_uchar *slot = (pcre_uchar *)re +
389 re->name_table_offset + GET2(cc, 1) * re->name_entry_size;
404 int dd = find_minlength(re, cs, startcode, options, recurse_depth);
407 slot += re->name_entry_size;
428 d = find_minlength(re, cs, startcode, options, recurse_depth);
481 branchlength += find_minlength(re, cs, startcode, options
1427 const REAL_PCRE *re = (const REAL_PCRE *)external_re; local
    [all...]
  /external/protobuf/gtest/scripts/
pump.py 68 import re namespace
73 (re.compile(r'\$var\s+'), '$var'),
74 (re.compile(r'\$elif\s+'), '$elif'),
75 (re.compile(r'\$else\s+'), '$else'),
76 (re.compile(r'\$for\s+'), '$for'),
77 (re.compile(r'\$if\s+'), '$if'),
78 (re.compile(r'\$range\s+'), '$range'),
79 (re.compile(r'\$[_A-Za-z]\w*'), '$id'),
80 (re.compile(r'\$\(\$\)'), '$($)'),
81 (re.compile(r'\$\$.*'), '$$')
    [all...]
  /bionic/libc/arch-x86_64/bionic/
__bionic_clone.S 41 # They're flipped for x86-64 compared to all our other architectures and __bionic_clone.
65 # We're in the child now, so call __start_thread
74 # We're the parent; nothing to do.

Completed in 427 milliseconds

<<11121314151617181920>>