Searched refs:re (Results 1 – 15 of 15) sorted by relevance
/development/testrunner/ |
D | am_instrument_parser.py | 21 import re 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)
|
D | android_build.py | 22 import re 67 host_os = re.search("HOST_OS=(\w+)", config).group(1) 68 host_arch = re.search("HOST_ARCH=(\w+)", config).group(1)
|
D | android_mk.py | 25 import re 33 _RE_INCLUDE = re.compile(r'include\s+\$\((.+)\)') 34 _RE_VARIABLE_REF = re.compile(r'\$\((.+)\)')
|
D | runtest.py | 36 import re 79 _RE_MAKE_INSTALL = re.compile(r'Install:\s(.+)') 83 _RE_MAKE_INSTALL_PATH = re.compile(r'out\/target\/product\/\w+\/(.+)$')
|
/development/tools/findunused/ |
D | find_unused_resources.rb | 75 def findAllOccurrences(re, string) argument 79 matchData = re.match(s) 83 matchData = re.match(s) 95 @@javaIdPatterns.each { |re| 96 findAllOccurrences(re, line).each { |id| 121 @@stringXmlPatterns.each { |re| 122 findAllOccurrences(re, line).each {|id| 134 @@stringXmlPatterns.each { |re| 135 findAllOccurrences(re, line).each {|id|
|
/development/scripts/ |
D | stack | 11 import re 89 fingerprint_regex = re.compile("^.*Build fingerprint:\s'(?P<fingerprint>.*)'") 139 url_regex = re.compile(regex_str) 240 process_info_line = re.compile("(pid: [0-9]+, tid: [0-9]+.*)") 241 signal_line = re.compile("(signal [0-9]+ \(.*\).*)") 242 register_line = re.compile("(([ ]*[0-9a-z]{2} [0-9a-f]{8}){4})") 243 thread_line = re.compile("(.*)(\-\-\- ){15}\-\-\-") 254 …trace_line = re.compile("(.*)\#([0-9]+)[ \t]+(..)[ \t]+([0-9a-f]{8})[ \t]+([^\r\n \t]*)( \((.*)\))… 259 value_line = re.compile("(.*)([0-9a-f]{8})[ \t]+([0-9a-f]{8})[ \t]+([^\r\n \t]*)") 267 …code_line = re.compile("(.*)[ \t]*[a-f0-9]{8}[ \t]*[a-f0-9]{8}[ \t]*[a-f0-9]{8}[ \t]*[a-f0-9]{8}[ …
|
D | symbol.py | 11 import re 227 func_regexp = re.compile("(^[a-f0-9]*) \<(.*)\>:$") 228 offset_regexp = re.compile("(.*)\+0x([a-f0-9]*)") 232 asm_regexp = re.compile("(^[ a-f0-9]*):[ a-f0-0]*.*$")
|
/development/testrunner/test_defs/ |
D | gtest.py | 22 import re 117 if re.search("_test$|_test_$|_unittest$|_unittest_$|^test_", name):
|
D | native_test.py | 22 import re 120 if re.search("_test$|_test_$|_unittest$|_unittest_$|^test_", name):
|
D | instrumentation_test.py | 21 import re 358 re_package = re.compile(r'package\s+(.*);')
|
/development/build/tools/ |
D | mk_sources_zip.py | 18 import re 28 _RE_PKG = re.compile("^\s*package\s+([^\s;]+)\s*;.*")
|
/development/scripts/app_engine_server/ |
D | memcache_zipserve.py | 34 import re 315 if re.match(redirect[self.REDIRECT_SRC], uri): 317 redirect_uri = re.sub('^' + redirect[self.REDIRECT_SRC],
|
/development/tools/idegen/ |
D | README | 5 If you're using IntelliJ... 32 If you're using Eclipse...
|
/development/tools/apkcheck/ |
D | README.txt | 10 They're generated from the sources, and can take into acount javadoc 139 default package (i.e. that have no package name). In most cases they're
|
/development/cmds/monkey/ |
D | README.NETWORK.txt | 23 Now you're ready to run commands
|