Home
last modified time | relevance | path

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

/cts/tools/vm-tests-tf/src/util/build/
DJavacBuildStep.java30 private final Set<String> sourceFiles = new HashSet<String>(); field in JavacBuildStep
40 sourceFiles.add(sourceFile); in addSourceFile()
47 if (sourceFiles.isEmpty()) in build()
59 String[] commandLine = new String[sourceFiles.size()+args]; in build()
69 String[] files = new String[sourceFiles.size()]; in build()
70 sourceFiles.toArray(files); in build()
86 && sourceFiles.equals(other.sourceFiles); in equals()
93 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode(); in hashCode()
DJackBuildStep.java32 private final Set<String> sourceFiles = new HashSet<String>(); field in JackBuildStep
42 sourceFiles.add(sourceFile); in addSourceFile()
48 if (sourceFiles.isEmpty()) { in build()
72 for (String source : sourceFiles) { in build()
79 List<String> commandLine = new ArrayList<String>(6 + sourceFiles.size()); in build()
129 && sourceFiles.equals(other.sourceFiles); in equals()
136 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode(); in hashCode()
/cts/tools/cts-java-scanner/src/com/android/cts/javascanner/
DDocletRunner.java97 List<String> sourceFiles = new ArrayList<String>(); in getSourceFiles() local
108 sourceFiles.addAll(getSourceFiles(file)); in getSourceFiles()
110 sourceFiles.add(file.toString()); in getSourceFiles()
114 return sourceFiles; in getSourceFiles()