Searched defs:isClassFile (Results 1 – 2 of 2) sorted by relevance
8 fun File.isClassFile() = this.isFile && this.extension == SdkConstants.EXT_CLASS method11 fun ZipEntry.isClassFile() = !this.isDirectory && this.name.endsWith(SdkConstants.DOT_CLASS) method
29 protected fun File.isClassFile() = toString().endsWith(".class") in isClassFile() method in kotlinx.atomicfu.transformer.AtomicFUTransformerBase