HomeSort by relevance Sort by last modified time
    Searched refs:inputFile (Results 1 - 25 of 582) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/tools/dexfuzz/src/dexfuzz/fuzzers/
FuzzerMultiple.java 35 String inputFile = Options.inputFileList.get(0);
38 inputFile = Options.inputFileList.get(nextIndex);
40 listener.handleFuzzingFile(inputFile);
41 return inputFile;
  /cts/tools/vm-tests-tf/src/util/build/
JillBuildStep.java 24 JillBuildStep(BuildFile inputFile, BuildFile outputFile) {
25 super(inputFile, outputFile);
31 File tmpInputJar = new File(inputFile.fileName.getPath() + ".jar");
43 inputFile,
44 inputFile.fileName.getName(),
71 + inputFile.fileName.getAbsolutePath() + " to "
86 return inputFile.equals(other.inputFile) && outputFile.equals(other.outputFile);
93 return inputFile.hashCode() ^ outputFile.hashCode();
JarBuildStep.java 30 public JarBuildStep(BuildFile inputFile, String destFileName,
32 super(inputFile, outputFile);
40 File tempFile = new File(inputFile.folder, destFileName);
42 if (!inputFile.fileName.equals(tempFile)) {
43 copyFile(inputFile.fileName, tempFile);
61 inputFile.folder.getAbsolutePath(), destFileName};
70 inputFile.fileName.delete();
75 inputFile.folder.getAbsolutePath()+", "+ destFileName);
84 return inputFile.hashCode() ^ outputFile.hashCode()
92 return inputFile.equals(other.inputFile
    [all...]
DFHBuildStep.java 30 public DFHBuildStep(BuildFile inputFile, BuildFile outputFile) {
31 super(inputFile, outputFile);
48 r = new FileReader(inputFile.fileName);
58 System.err.println("error in DFHBuildStep for inputfile "+inputFile.fileName+", outputfile "+outputFile.fileName);
71 return inputFile.equals(((DFHBuildStep) obj).inputFile)
79 return (inputFile == null ? 31 : inputFile.hashCode())
DxBuildStep.java 26 DxBuildStep(BuildFile inputFile, BuildFile outputFile,
28 super(inputFile, outputFile);
39 args.fileNames = new String[] {inputFile.fileName.getAbsolutePath()};
53 inputFile.fileName.delete();
58 + inputFile.fileName.getAbsolutePath() + " to "
68 return inputFile.hashCode() ^ outputFile.hashCode();
76 return inputFile.equals(other.inputFile)
JackDexBuildStep.java 28 JackDexBuildStep(BuildFile inputFile, BuildFile outputFile,
30 super(inputFile, outputFile);
66 commandLine.add(inputFile.fileName.getAbsolutePath());
85 inputFile.fileName.delete();
90 + inputFile.fileName.getAbsolutePath() + " to "
103 return inputFile.hashCode() ^ outputFile.hashCode();
111 return inputFile.equals(other.inputFile)
BuildStep.java 29 BuildFile inputFile;
66 BuildStep(BuildFile inputFile, BuildFile outputFile) {
67 if (inputFile == null) {
68 throw new NullPointerException("inputFile is null");
73 this.inputFile = inputFile;
DasmBuildStep.java 38 DasmBuildStep(BuildFile inputFile, BuildFile outputFile) {
39 super(inputFile, outputFile);
46 return assemble(inputFile.fileName);
163 return inputFile.equals(other.inputFile)
172 return inputFile.hashCode() ^ outputFile.hashCode()
  /frameworks/support/samples/SupportLeanbackShowcase/
build-release.py 8 # Does an inplace substitution of the pattern with newVal in inputFile
9 def replace(inputFile, pattern, newVal, ):
10 print 'About to replace repo path to {0} in {1}'.format(newVal, inputFile)
12 if os.path.exists(inputFile):
13 for line in fileinput.input(inputFile, inplace = 1):
20 file = open(inputFile, "a")
build-local.py 8 # Does an inplace substitution of the pattern with newVal in inputFile
9 def replace(inputFile, pattern, newVal, ):
10 print 'About to replace repo path to {0} in {1}'.format(newVal, inputFile)
12 if os.path.exists(inputFile):
13 for line in fileinput.input(inputFile, inplace = 1):
20 file = open(inputFile, "a")
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/headers/
HeaderFixer.java 41 protected void processFile (Entry inputFile) throws Exception {
43 String content = new FileHandle(inputFile.inputFile).readString();
45 System.out.println("File '" + inputFile.inputFile + "' header fixed");
47 BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(new FileHandle(inputFile.outputFile).write(false)));
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
Icu4jTransformRules.java 40 File inputFile = new File(dirNames[i]);
42 if (isValidDir(inputFile)) {
43 inputFileGenerator = new DirectoryInputFileGenerator(inputFile);
44 } else if (isValidFile(inputFile)) {
45 inputFileGenerator = new FilesInputFileGenerator(inputFile);
47 throw new IllegalArgumentException("Input arg [" + inputFile + "] does not exist.");
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
TexturePackerFileProcessor.java 59 public ArrayList<Entry> process (File inputFile, File outputRoot) throws Exception {
60 root = inputFile;
65 protected void processFile (Entry inputFile) throws Exception {
66 settingsFiles.add(inputFile.inputFile);
70 settingsProcessor.process(inputFile, null);
97 return super.process(inputFile, outputRoot);
121 protected void processFile (Entry inputFile) throws Exception {
122 inputFile.inputFile.delete()
    [all...]
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/output/
NullOutputSourceFileGenerator.java 33 @Override public File generate(CompilationUnit cu, File inputFile) {
OutputSourceFileGenerator.java 27 File generate(CompilationUnit cu, File inputFile);
BasicOutputSourceFileGenerator.java 36 public File generate(CompilationUnit cu, File inputFile) {
37 String sourceFileName = inputFile.getName();
  /external/parameter-framework/upstream/test/test-subsystem/
TESTSubsystemObject.cpp 82 std::ifstream inputFile;
84 inputFile.open(_strFilePath.c_str());
86 if (!inputFile.is_open()) {
91 receiveFromFile(inputFile);
93 inputFile.close();
126 void CTESTSubsystemObject::receiveFromFile(std::ifstream &inputFile)
136 inputFile >> strValue;
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
MergeMojo.java 99 final File inputFile = new File(fileSet.getDirectory(),
101 if (inputFile.isDirectory()) {
107 + inputFile.getAbsolutePath());
108 loader.load(inputFile);
111 + inputFile.getAbsolutePath(), e);
  /external/opencv3/modules/cudacodec/perf/
perf_video.cpp 74 const string inputFile = perf::TestBase::getDataPath(GetParam());
78 cv::Ptr<cv::cudacodec::VideoReader> d_reader = cv::cudacodec::createVideoReader(inputFile);
88 cv::VideoCapture reader(inputFile);
110 const string inputFile = perf::TestBase::getDataPath(GetParam());
115 cv::VideoCapture reader(inputFile);
  /external/opencv3/modules/cudacodec/test/
test_video.cpp 58 const std::string inputFile = std::string(cvtest::TS::ptr()->get_data_path()) + "video/" + GET_PARAM(1);
60 cv::Ptr<cv::cudacodec::VideoReader> reader = cv::cudacodec::createVideoReader(inputFile);
80 const std::string inputFile = std::string(cvtest::TS::ptr()->get_data_path()) + "video/" + GET_PARAM(1);
85 cv::VideoCapture reader(inputFile);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/
FileProcessor.java 49 return comparator.compare(o1.inputFile, o2.inputFile);
149 entry.inputFile = mapEntry.getKey();
157 throw new Exception("Error processing directory: " + entry.inputFile.getAbsolutePath(), ex);
167 throw new Exception("Error processing file: " + entry.inputFile.getAbsolutePath(), ex);
207 entry.inputFile = file;
241 public File inputFile;
250 public Entry (File inputFile, File outputFile) {
251 this.inputFile = inputFile;
    [all...]
  /external/opencv3/modules/cudalegacy/perf/
perf_bgsegm.cpp 80 const string inputFile = perf::TestBase::getDataPath(GetParam());
82 cv::VideoCapture cap(inputFile);
150 const std::string inputFile = perf::TestBase::getDataPath(GET_PARAM(0));
154 cv::VideoCapture cap(inputFile);
190 cap.open(inputFile);
222 cap.open(inputFile);
  /external/vogar/src/vogar/android/
JackDexTask.java 38 private final File inputFile;
43 File inputFile, Action action, File localDex) {
48 this.inputFile = inputFile;
56 // What we do depends on the nature of the nature of inputFile. Ultimately we want a
58 // For the inputFile we might be given:
80 cacheKey = jackCache.makeKey(inputFile.toString(), classpathSubKey,
102 addClassPathEntryToJack(jack, resourcesReverseClasspath, inputFile);
  /external/opencv3/modules/video/perf/opencl/
perf_bgfg_mog2.cpp 59 const string inputFile = getDataPath(get<0>(params));
66 cv::VideoCapture cap(inputFile);
89 const string inputFile = getDataPath(get<0>(params));
96 cv::VideoCapture cap(inputFile);
  /external/opencv3/modules/video/test/ocl/
test_bgfg_mog2.cpp 44 string inputFile = string(TS::ptr()->get_data_path()) + "video/768x576.avi";
45 VideoCapture cap(inputFile);
92 string inputFile = string(TS::ptr()->get_data_path()) + "video/768x576.avi";
93 VideoCapture cap(inputFile);

Completed in 420 milliseconds

1 2 3 4 5 6 7 8 91011>>