Home
last modified time | relevance | path

Searched refs:InputPath (Results 1 – 6 of 6) sorted by relevance

/sdk/anttasks/src/com/android/ant/
DBaseTask.java57 protected static List<InputPath> getInputPaths(List<File> paths, in getInputPaths()
59 List<InputPath> result = new ArrayList<InputPath>(paths.size()); in getInputPaths()
62 result.add(new InputPath(f, extensionsToCheck)); in getInputPaths()
75 protected boolean initDependencies(String dependencyFile, List<InputPath> inputPaths) { in initDependencies()
114 List<InputPath> inputs, String outputFile) { in generateDependencyFile()
127 InputPath input = inputs.get(i); in generateDependencyFile()
143 private void writeContent(PrintStream ps, File file, InputPath input) { in writeContent()
DInputPath.java22 public class InputPath { class
32 public InputPath(File file) { in InputPath() method in InputPath
36 public InputPath(File file, Set<String> extensionsToCheck) { in InputPath() method in InputPath
DApkBuilderTask.java55 private static class SourceFolderInputPath extends InputPath {
229 List<InputPath> inputPaths = new ArrayList<InputPath>(); in execute()
232 InputPath resourceInputPath = new InputPath(new File(mOutFolder, mResourceFile)); in execute()
236 inputPaths.add(new InputPath(dexFile)); in execute()
244 inputPaths.add(new InputPath(f)); in execute()
278 inputPaths.add(new InputPath(f)); in execute()
289 inputPaths.add(new InputPath(f)); in execute()
307 inputPaths.add(new InputPath(entry.mFile)); in execute()
DDependencyGraph.java48 private final List<InputPath> mNewInputs;
50 public DependencyGraph(String dependencyFilePath, List<InputPath> newInputPaths) { in DependencyGraph()
222 for (InputPath input : mNewInputs) { in checkInputs()
252 private DependencyStatus checkInputFolder(File folder, InputPath inputFolder, in checkInputFolder()
282 private DependencyStatus checkInputFile(File file, InputPath inputFolder, in checkInputFile()
329 for (InputPath input : mNewInputs) { in checkPrereqFiles()
DAaptExecTask.java354 List<InputPath> inputPaths = getInputPaths(paths, Collections.singleton("xml")); in callAapt()
358 inputPaths.add(new InputPath(new File(mManifest))); in callAapt()
372 List<InputPath> inputPaths = getInputPaths(paths, null /*extensionsToCheck*/); in callAapt()
376 inputPaths.add(new InputPath(new File(mManifest))); in callAapt()
383 inputPaths.add(new InputPath(assetsDir)); in callAapt()
DDexExecTask.java132 List<InputPath> inputPaths = getInputPaths(paths, null /*extensionsToCheck*/); in execute()