HomeSort by relevance Sort by last modified time
    Searched refs:re_result (Results 1 - 2 of 2) 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)

Completed in 39 milliseconds