HomeSort by relevance Sort by last modified time
    Searched defs:re (Results 26 - 50 of 399) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/tools/
deadcode.py 4 import re namespace
16 headerPattern = re.compile(r'^\s+\|([a-z _]+)\:$', re.MULTILINE)
51 methodPattern = re.compile(r'^\s+\|\[\w{4}\] (.*)$', re.MULTILINE)
  /external/chromium/build/
compiler_version.py 14 import re namespace
24 result = re.match(r"(\d+)\.(\d+)", gcc_output)
  /external/clang/test/SemaCXX/
ref-init-ambiguous.cpp 22 const E2 & re(C c) { function
  /external/llvm/utils/lint/
common_lint.py 5 import re namespace
42 tab_re = re.compile(r'\t')
63 trailing_whitespace_re = re.compile(r'\s+$')
cpp_lint.py 10 import re namespace
23 include_gtest_re = re.compile(r'^#include "gtest/(.*)"')
24 include_llvm_re = re.compile(r'^#include "llvm/(.*)"')
25 include_support_re = re.compile(r'^#include "(Support/.*)"')
26 include_config_re = re.compile(r'^#include "(Config/.*)"')
27 include_system_re = re.compile(r'^#include <(.*)>')
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 105 sub re {
184 sub re {
213 sub re {
294 sub re {
332 sub re {
398 sub re {
424 sub re {
798 if ($label=label->re(\$line)) { print $label->out(); }
800 if (directive->re(\$line)) {
802 } elsif ($opcode=opcode->re(\$line))
104 sub re { subroutine
183 sub re { subroutine
212 sub re { subroutine
293 sub re { subroutine
331 sub re { subroutine
397 sub re { subroutine
423 sub re { subroutine
    [all...]
  /external/qemu/
gen-skin.py 9 import sys, os, string, re namespace
  /external/regex-re2/re2/testing/
regexp_test.cc 16 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/v8/test/mjsunit/bugs/
bug-617.js 38 var re = /foo/; variable
40 re.exec = make_sure_we_dont_get_here;
42 re("foo");
  /external/v8/test/mjsunit/regress/
regress-603.js 32 var re = /b../; variable
34 return re('abcdefghijklm') + 'z';
  /external/v8/test/mjsunit/
string-replace.js 212 var re = /sh/g; variable
214 str.replace(re,"$$" + 'sch'))
string-slices-regexp.js 34 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
35 var r = new RegExp(re)
40 var re = /x/; variable
41 assertEquals("a.yb", "_axyb_".slice(1,-1).replace(re, "."));
42 re.compile("y");
43 assertEquals("ax.b", "_axyb_".slice(1,-1).replace(re, "."));
44 re.compile("(x)");
45 assertEquals(["x", "x"], re.exec("_axyb_".slice(1,-1)));
46 re.compile("(y)");
47 assertEquals(["y", "y"], re.exec("_axyb_".slice(1,-1)))
    [all...]
  /external/v8/tools/
utils.py 30 import re namespace
78 elif (not id) or (not re.match('(x|i[3-6])86$', id) is None):
  /external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
react-to-vsprops-changes.py 5 import re namespace
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-98306.js 31 var re; variable
49 s = 're = /[/';
52 s = 're = /[/]/';
55 s = 're = /[//]/';
  /external/webkit/Source/WebCore/inspector/
inline-javascript-imports.py 38 import re namespace
68 outputScript = re.sub(r'importScripts\([\'"]([^\'"]+)[\'"]\)', replace, inputScript)
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
diff_parser_unittest.py 31 import re namespace
131 p = re.compile(r' ([a|b])/')
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
changelog.py 28 import re namespace
49 if re.search("Unreviewed", line, re.IGNORECASE):
51 if re.search("build", line, re.IGNORECASE) and re.search("fix", line, re.IGNORECASE):
  /external/webkit/Tools/wx/build/
wxpresets.py 27 import re namespace
54 majorVersion = re.search("#define\swxMAJOR_VERSION\s+(\d+)", versionText).group(1)
55 minorVersion = re.search("#define\swxMINOR_VERSION\s+(\d+)", versionText).group(1)
56 releaseVersion = re.search("#define\swxRELEASE_NUMBER\s+(\d+)", versionText).group(1)
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
bug-regex15.c 20 regex_t re; local
37 reerr = regcomp (&re, "^6?3?[25]?5?[14]*[25]*[69]*+[58]*87?4?$",
42 regerror (reerr, &re, buf, sizeof buf);
bug-regex9.c 39 regex_t re; local
47 n = regcomp (&re, "^#! */.*/(k|ba||pdk|z)sh", REG_EXTENDED);
51 regerror (n, &re, buf, sizeof (buf));
58 if (regexec (&re, text, 2, rm, 0))
72 regfree (&re);
  /bionic/libc/tools/
check-symbols.py 5 import re namespace
11 arch = re.sub(r'.*/linux-x86/([^/]+)/.*', r'\1', toolchain)
38 r = re.compile(r' +\d+: [0-9a-f]+ +\d+ (FUNC|OBJECT) +\S+ +\S+ +\d+ (\S+)')
  /build/tools/
event_log_tags.py 17 import re namespace
68 parts = re.split(r"\s+", line, 2)
97 if not re.match(r"\(.*\)\s*$", description):
  /development/testrunner/
am_instrument_parser.py 21 import re namespace
43 re_status_code = re.compile(r'INSTRUMENTATION_STATUS_CODE: (?P<status_code>-?\d)$')
83 re_result = re.compile(r'INSTRUMENTATION_RESULT: ([^=]+)=(.*)$')
84 re_code = re.compile(r'INSTRUMENTATION_CODE: (\-?\d)$')
140 re_status_code = re.search(r'INSTRUMENTATION_STATUS_CODE: '
142 re_fields = re.compile(r'INSTRUMENTATION_STATUS: '
143 '(?P<key>[\w.]+)=(?P<value>.*?)(?=\nINSTRUMENTATION_STATUS)', re.DOTALL)
  /external/markdown/markdown/extensions/
imagelinks.py 21 import re, markdown namespace

Completed in 5090 milliseconds

12 3 4 5 6 7 8 91011>>