Home | History | Annotate | Download | only in ant

Lines Matching refs:Path

24 import org.apache.tools.ant.types.Path;
37 * 'executable' ({@link Path} with a single path) for the location of the llvm executable<br>
38 * 'framework' ({@link Path} with 1 or more paths) for the include paths.<br>
39 * 'genFolder' ({@link Path} with a single path) for the location of the gen folder.<br>
40 * 'resFolder' ({@link Path} with a single path) for the location of the res folder.<br>
43 * It also expects one or more inner elements called "source" which are identical to {@link Path}
49 private Path mFramework;
52 private final List<Path> mPaths = new ArrayList<Path>();
59 public void setExecutable(Path executable) {
63 public void setFramework(Path value) {
67 public void setGenFolder(Path value) {
71 public void setResFolder(Path value) {
86 public Path createSource() {
87 Path p = new Path(getProject());
114 for (Path p : mPaths) {
151 for (String path : mFramework.list()) {
152 File res = new File(path);
155 task.createArg().setValue(path);