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

1 2 3 4 56 7 8 91011>>

  /ndk/sources/host-tools/sed-4.2.1/testsuite/
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/apps/Gallery2/tests/exiftool_parser/
parser.py 17 import re namespace
35 p = re.compile(
38 , re.M)
67 _id = re.search("0x[0-9a-f]{4}", s)
71 name = re.search("[0-9]*?\).*?(?:(?: = )|(?: \(SubDirectory\) -->))", s)
75 value = re.search("\(SubDirectory\) -->", s)
79 value = re.search("\(.*\)\n", s)
83 value = re.search("=.*\n", s)
  /packages/experimental/procstatlog/
procstatreport.py 22 import re namespace
  /pdk/build/
prepare_pdk_tree.py 23 import re namespace
33 self.patterns = [re.compile('path=\"([^\"]*)\".*groups=\"([^\"]*)\"'), \
34 re.compile('groups=\"([^\"]*)\".*path=\"([^\"]*)\"')]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/
printing.py 21 import re namespace
164 self.compiled_re = re.compile(regexp)
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/
printing.py 21 import re namespace
164 self.compiled_re = re.compile(regexp)
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/
printing.py 21 import re namespace
164 self.compiled_re = re.compile(regexp)
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/
printing.py 21 import re namespace
164 self.compiled_re = re.compile(regexp)
  /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
  /bionic/libc/tools/
generate-NOTICE.py 9 import re namespace
  /bionic/libc/tools/zoneinfo/
generate 7 import re namespace
68 new_version = re.search('(tzdata.+)\\.tar\\.gz', data_filename).group(1)
125 # If you're several releases behind, we'll walk you through the upgrades
  /build/tools/releasetools/
img_from_target_files 40 import re namespace
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/
buildCts.py 21 import re namespace
43 pattern = re.compile(r'^\s*([^:#=\s]+)\s*:=\s*(.*?[^\\])$', re.MULTILINE + re.DOTALL)
  /cts/tools/utils/cts/
tools.py 19 import re namespace
134 exp = re.compile(pattern)
149 exp = re.compile(pattern)
  /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/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
htmlutil.py 25 import re namespace
117 contents = re.sub(r'<([^\s\w/])',
  /external/icu4c/stubdata/
icu_dat_generator.py 28 import re namespace
157 language = re.sub(r"(_.*)", "", locale)
244 icu_version = re.sub(r"([^0-9])", "", source_dat)
  /external/llvm/utils/lit/lit/
TestFormats.py 140 import re namespace
157 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})')

Completed in 553 milliseconds

1 2 3 4 56 7 8 91011>>