HomeSort by relevance Sort by last modified time
    Searched defs:re (Results 101 - 125 of 282) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/compile/libbcc/tools/
gen-build-stamp.py 5 import re namespace
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
bug-regex11.c 98 regex_t re; local
109 n = regcomp (&re, tests[i].pattern, tests[i].flags);
113 regerror (n, &re, buf, sizeof (buf));
119 if (regexec (&re, tests[i].string, tests[i].nmatch, rm, 0))
123 regfree (&re);
139 regfree (&re);
bug-regex12.c 49 regex_t re; local
60 n = regcomp (&re, tests[i].pattern, tests[i].flags);
64 regerror (n, &re, buf, sizeof (buf));
70 if (! regexec (&re, tests[i].string, tests[i].nmatch,
77 regfree (&re);
runptests.c 61 regex_t re; local
69 err = regcomp (&re, tests[cnt].reg, tests[cnt].options);
77 regerror (err, &re, buf, sizeof (buf));
92 err = regexec (&re, tests[cnt].str, 20, match, 0);
121 regfree (&re);
  /packages/experimental/procstatlog/
procstatreport.py 22 import re namespace
  /sdk/eclipse/scripts/
collect_sources_for_sdk.py 29 import re namespace
35 _RE_PKG = re.compile("^\s*package\s+([^\s;]+)\s*;.*")
  /bionic/libc/kernel/tools/
update_all.py 3 import sys, cpp, kernel, glob, os, re, getopt, clean_header namespace
20 - if ANDROID_PRODUCT_OUT is defined in your environment, you're
  /build/tools/releasetools/
sign_target_files_apks 77 import re namespace
156 # an APK we're not supposed to sign.
224 m = re.match(r"^(.*)\.x509\.pem$", k)
  /cts/tools/utils/cts/
tools.py 19 import re namespace
134 exp = re.compile(pattern)
149 exp = re.compile(pattern)
  /development/testrunner/
android_mk.py 25 import re namespace
33 _RE_INCLUDE = re.compile(r'include\s+\$\((.+)\)')
34 _RE_VARIABLE_REF = re.compile(r'\$\((.+)\)')
  /external/chromium/build/mac/
strip_save_dsym 33 import re namespace
57 type_match = re.match("^%s (.*)$" % macho_types_re, type_line)
62 type_match = re.match("^Mach-O universal binary with (.*) architectures$",
67 arch_match = re.match(
108 if re.match("^Load command .*$", otool_line):
111 if re.match("^ cmd LC_UUID$", otool_line):
116 if re.match("^ cmdsize 24$", otool_line):
130 new_uuid_match = re.match("^ {3,4}uuid (.{8}-.{4}-.{4}-.{4}-.{12})$",
138 old_uuid_match = re.match("^ uuid 0x(..) 0x(..) 0x(..) 0x(..) "
150 old_uuid_match = re.match("^ 0x(..) 0x(..) 0x(..) 0x(..)
    [all...]
  /external/chromium/build/util/
lastchange.py 10 import re namespace
137 match = re.search(r'^\w+://.*$', output, re.M)
160 match = re.search(r'\S+$', output)
175 git_re = re.compile(r'^\s*git-svn-id:\s+(\S+)@(\d+)')
  /external/chromium/googleurl/
PRESUBMIT_unittest.py 12 import re namespace
19 self.re = re
  /external/clang/utils/
SummarizeErrors 3 import os, sys, re namespace
27 kDiagnosticRE = re.compile(': (error|warning): (.*)')
28 kAssertionRE = re.compile('Assertion failed: (.*, function .*, file .*, line [0-9]+\\.)')
  /external/gtest/test/
gtest_help_test.py 44 import re namespace
60 HELP_REGEX = re.compile(
70 re.DOTALL)
  /external/icu4c/stubdata/
icu_dat_generator.py 39 import re namespace
170 language = re.sub(r"(_.*)", "", locale)
261 icu_version = re.sub(r"([^0-9])", "", os.path.basename(input_files[0]))
  /external/llvm/utils/lit/lit/
TestFormats.py 137 import re namespace
154 self.pattern = re.compile(pattern)
  /external/markdown/markdown/extensions/
codehilite.py 143 import re namespace
150 c = re.compile(r'''
154 ''', re.VERBOSE)
  /external/markdown/markdown/
preprocessors.py 10 import re namespace
194 RE = re.compile(r'^(\ ?\ ?\ ?)\[([^\]]*)\]:\s*([^ ]*)(.*)$', re.DOTALL)
199 m = self.RE.match(line)
treeprocessors.py 2 import re namespace
44 self.__placeholder_re = re.compile(markdown.INLINE_PLACEHOLDER % r'([0-9]{4})')
  /external/mesa3d/src/glsl/builtins/tools/
generate_builtins.py 4 import re namespace
33 for c in re.sub('\s\s+', ' ', s):
56 kill_paren_whitespace = re.compile(r'[ \n]*\)', re.MULTILINE);
72 kill_globals = re.compile(r'^\(declare.*\n', re.MULTILINE);
75 # Kill pointer addresses. They're not necessary in prototypes and just
77 proto_ir = re.sub(r'@0x[0-9a-f]+', '', proto_ir);
86 for func in re.finditer(r'\(function (.+)\n', proto_ir):
237 version = re.sub(r'_(vert|frag)$', '', profile
    [all...]
  /external/protobuf/gtest/test/
gtest_help_test.py 43 import re namespace
55 HELP_REGEX = re.compile(
67 re.DOTALL)
  /external/qemu/
gen-charmap.py 8 import sys, os, string, re namespace
41 re_mapname = re.compile( r".*/(\w+).kcm" )
42 re_start = re.compile( r"(\w+)\s*(.*)" )
43 re_char = re.compile( r"('.')\s*(.*)" )
44 re_hex = re.compile( r"(0x\w+)\s*(.*)" )
  /external/webkit/Tools/QueueStatusServer/model/
attachment.py 29 import re namespace
queues.py 30 import re namespace
100 _dash_regexp = re.compile("-")

Completed in 674 milliseconds

1 2 3 45 6 7 8 91011>>