HomeSort by relevance Sort by last modified time
    Searched refs:re_result (Results 1 - 3 of 3) sorted by null

  /development/testrunner/
am_instrument_parser.py 83 re_result = re.compile(r'INSTRUMENTATION_RESULT: ([^=]+)=(.*)$')
92 if re_result.match(line):
94 key = re_result.search(line).group(1).strip(string.whitespace)
97 val = re_result.search(line).group(2).strip(string.whitespace)
  /external/chromium_org/third_party/android_testrunner/
am_instrument_parser.py 83 re_result = re.compile(r'INSTRUMENTATION_RESULT: ([^=]+)=(.*)$')
92 if re_result.match(line):
94 key = re_result.search(line).group(1).strip(string.whitespace)
97 val = re_result.search(line).group(2).strip(string.whitespace)
  /external/lldb/examples/python/
disasm-stress-test.py 23 re_result = re.match("(.*)/Developer/usr/bin/lldb", lldb_path)
24 if re_result == None:
26 xcode_contents_path = re_result.group(1)

Completed in 69 milliseconds