HomeSort by relevance Sort by last modified time
    Searched refs:InputPath (Results 1 - 7 of 7) sorted by null

  /sdk/anttasks/src/com/android/ant/
InputPath.java 22 public class InputPath {
32 public InputPath(File file) {
36 public InputPath(File file, Set<String> extensionsToCheck) {
49 * This is configured by constructing the {@link InputPath} with additional restriction
68 * Returns whether the InputPath ignores a given file or folder. If it is ignored then
BaseTask.java 49 * Creates a list of {@link InputPath} from a list of {@link File} and an optional list of
50 * extensions. All the {@link InputPath} will share the same extension restrictions.
55 * @return a list of {@link InputPath}
57 protected static List<InputPath> getInputPaths(List<File> paths,
59 List<InputPath> result = new ArrayList<InputPath>(paths.size());
62 result.add(new InputPath(f, extensionsToCheck));
75 protected boolean initDependencies(String dependencyFile, List<InputPath> inputPaths) {
114 List<InputPath> inputs, String outputFile) {
127 InputPath input = inputs.get(i)
    [all...]
ApkBuilderTask.java 55 private static class SourceFolderInputPath extends InputPath {
229 List<InputPath> inputPaths = new ArrayList<InputPath>();
232 InputPath resourceInputPath = new InputPath(new File(mOutFolder, mResourceFile));
236 inputPaths.add(new InputPath(dexFile));
244 inputPaths.add(new InputPath(f));
278 inputPaths.add(new InputPath(f));
289 inputPaths.add(new InputPath(f));
307 inputPaths.add(new InputPath(entry.mFile))
    [all...]
DependencyGraph.java 48 private final List<InputPath> mNewInputs;
50 public DependencyGraph(String dependencyFilePath, List<InputPath> newInputPaths) {
222 for (InputPath input : mNewInputs) {
252 private DependencyStatus checkInputFolder(File folder, InputPath inputFolder,
282 private DependencyStatus checkInputFile(File file, InputPath inputFolder,
316 // TODO: Optimize for the case of a specific file as inputPath.
317 // We should have a map of filepath to inputpath to quickly search through them?
329 for (InputPath input : mNewInputs) {
AaptExecTask.java 354 List<InputPath> inputPaths = getInputPaths(paths, Collections.singleton("xml"));
358 inputPaths.add(new InputPath(new File(mManifest)));
372 List<InputPath> inputPaths = getInputPaths(paths, null /*extensionsToCheck*/);
376 inputPaths.add(new InputPath(new File(mManifest)));
383 inputPaths.add(new InputPath(assetsDir));
DexExecTask.java 131 // get InputPath with no extension restrictions
132 List<InputPath> inputPaths = getInputPaths(paths, null /*extensionsToCheck*/);
  /external/quake/quake/src/QW/client/
qwcl.mak     [all...]

Completed in 45 milliseconds