HomeSort by relevance Sort by last modified time
    Searched defs:outputName (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /external/libgdx/extensions/gdx-setup/src/com/badlogic/gdx/setup/
ProjectFile.java 21 * of the template file, the outputName specifies the final name of the
31 public String outputName;
39 this.outputName = name;
45 this.outputName = name;
49 public ProjectFile(String resourceName, String outputName, boolean isTemplate) {
51 this.outputName = outputName;
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
Main.java 211 String outputName = source + "dot";
221 FileWriter outputStream = new FileWriter(outputName);
229 Process proc = Runtime.getRuntime().exec("dot -Tpng -o" + source + "png " + outputName);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/
FileProcessor.java 145 String outputName = inputDir.getName();
146 if (outputSuffix != null) outputName = outputName.replaceAll("(.*)\\..*", "$1") + outputSuffix;
152 entry.outputFile = newOutputDir.length() == 0 ? new File(outputName) : new File(newOutputDir, outputName);
202 String outputName = file.getName();
203 if (outputSuffix != null) outputName = outputName.replaceAll("(.*)\\..*", "$1") + outputSuffix;
211 entry.outputFile = new File(outputRoot, outputName);
213 entry.outputFile = new File(outputDir, outputName);
    [all...]