Home
last modified time | relevance | path

Searched refs:sourcefile (Results 1 – 2 of 2) sorted by relevance

/tools/asuite/atest/coverage/com/android/jacocolcov/
DJacocoToLcovConverter.java243 String sourcefile = findSourceFileMatching(sourcefile(coverage)); in write() local
244 if (sourcefile == null) { in write()
247 writeLine(writer, "SF:%s", sourcefile); in write()
368 private static String sourcefile(IClassCoverage coverage) { in sourcefile() method in JacocoToLcovConverter
/tools/acloud/internal/lib/
Dutils.py455 def Decompress(sourcefile, dest=None): argument
465 logger.info("Start to decompress %s!", sourcefile)
467 if sourcefile.endswith(".tar.gz"):
468 with tarfile.open(sourcefile, "r:gz") as compressor:
470 elif sourcefile.endswith(".zip"):
471 with zipfile.ZipFile(sourcefile, 'r') as compressor: