Home | History | Annotate | Download | only in build

Lines Matching refs:inputFile

29     BuildFile inputFile;
62 BuildStep(BuildFile inputFile, BuildFile outputFile) {
63 if (inputFile == null) {
64 throw new NullPointerException("inputFile is null");
69 this.inputFile = inputFile;
120 return (inputFile == o.inputFile ? 0 : (inputFile != null
121 ? (o.inputFile != null ? inputFile.getPath().compareTo(
122 o.inputFile.getPath()) : 1) : -1));