Home
last modified time | relevance | path

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

/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/sourcefile/
DSourceFileTest.kt17 package com.android.tools.metalava.model.testsuite.sourcefile
38 fun `test sourcefile imports`() { in test sourcefile imports()
128 fun `test sourcefile classes`() { in test sourcefile classes()
/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.py450 def Decompress(sourcefile, dest=None): argument
460 logger.info("Start to decompress %s!", sourcefile)
462 if sourcefile.endswith(".tar.gz"):
463 with tarfile.open(sourcefile, "r:gz") as compressor:
465 elif sourcefile.endswith(".zip"):
466 with zipfile.ZipFile(sourcefile, 'r') as compressor: