Home | History | Annotate | Download | only in ant

Lines Matching refs:Path

22 import org.apache.tools.ant.types.Path;
32 * 'executable' ({@link Path} with a single path) for the location of the llvm executable<br>
33 * 'framework' ({@link Path} with 1 or more paths) for the include paths.<br>
34 * 'genFolder' ({@link Path} with a single path) for the location of the gen folder.<br>
35 * 'resFolder' ({@link Path} with a single path) for the location of the res folder.<br>
38 * It also expects one or more inner elements called "source" which are identical to {@link Path}
44 private Path mFramework;
47 private final List<Path> mPaths = new ArrayList<Path>();
75 for (String path : mFramework.list()) {
76 File res = new File(path);
79 task.createArg().setValue(path);
146 public void setExecutable(Path executable) {
150 public void setFramework(Path value) {
154 public void setGenFolder(Path value) {
158 public void setResFolder(Path value) {
173 public Path createSource() {
174 Path p = new Path(getProject());