Searched refs:dataFile (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpkg_gencmn.h14 const char *dataFile, uint32_t max_size, UBool sourceTOC, UBool verbose, char *gencmnFileName);
H A Dpkg_gencmn.c117 const char *dataFile, uint32_t max_size, UBool sourceTOC, UBool verbose, char *gencmnFileName) {
149 if (dataFile == NULL) {
152 in = T_FileStream_open(dataFile, "r");
154 fprintf(stderr, "gencmn: unable to open input file %s\n", dataFile);
213 fprintf(stderr, "gencmn: no files listed in %s\n", dataFile == NULL ? "<stdin>" : dataFile);
116 createCommonDataFile(const char *destDir, const char *name, const char *entrypointName, const char *type, const char *source, const char *copyRight, const char *dataFile, uint32_t max_size, UBool sourceTOC, UBool verbose, char *gencmnFileName) argument
/external/icu/icu4c/source/tools/toolutil/
H A Dpkg_gencmn.h14 const char *dataFile, uint32_t max_size, UBool sourceTOC, UBool verbose, char *gencmnFileName);
H A Dpkg_gencmn.c117 const char *dataFile, uint32_t max_size, UBool sourceTOC, UBool verbose, char *gencmnFileName) {
149 if (dataFile == NULL) {
152 in = T_FileStream_open(dataFile, "r");
154 fprintf(stderr, "gencmn: unable to open input file %s\n", dataFile);
213 fprintf(stderr, "gencmn: no files listed in %s\n", dataFile == NULL ? "<stdin>" : dataFile);
116 createCommonDataFile(const char *destDir, const char *name, const char *entrypointName, const char *type, const char *source, const char *copyRight, const char *dataFile, uint32_t max_size, UBool sourceTOC, UBool verbose, char *gencmnFileName) argument
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/bindings/
H A DValidationTest.java44 public File dataFile; field in class:ValidationTest.TestData
81 for (File dataFile : VALIDATION_TEST_DATA_PATH.listFiles(new DataFileFilter(prefix))) {
82 File resultFile = new File(dataFile.getParent(),
83 dataFile.getName().replaceFirst("\\.data$", ".expected"));
85 testData.dataFile = dataFile;
86 testData.inputData = ValidationTestUtil.parseData(getStringContent(dataFile));
108 fail("Input: " + test.dataFile.getName() +
113 fail("Input: " + test.dataFile.getName() +
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDataLog.cpp84 FilePrintStream& dataFile() function in namespace:WTF
92 dataFile().vprintf(format, argList);
105 dataFile().printf("%s", str);
H A DDataLog.h37 FilePrintStream& dataFile();
46 dataFile().print(value);
52 dataFile().print(value1, value2);
58 dataFile().print(value1, value2, value3);
64 dataFile().print(value1, value2, value3, value4);
70 dataFile().print(value1, value2, value3, value4, value5);
76 dataFile().print(value1, value2, value3, value4, value5, value6);
82 dataFile().print(value1, value2, value3, value4, value5, value6, value7);
88 dataFile().print(value1, value2, value3, value4, value5, value6, value7, value8);
94 dataFile()
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DComponentResults.java270 File dataFile = new File(dir, getName()+".dat"); //$NON-NLS-1$
271 if (!dataFile.exists()) throw new FileNotFoundException();
275 stream = new DataInputStream(new BufferedInputStream(new FileInputStream(dataFile)));
303 println(" => "+size+" scenarios data were read from file "+dataFile); //$NON-NLS-1$ //$NON-NLS-2$
308 println(" !!! "+dataFile+" should be deleted as it contained invalid data !!!"); //$NON-NLS-1$ //$NON-NLS-2$
402 File dataFile = new File(dir, getName()+".dat"); //$NON-NLS-1$
405 if (dataFile.exists()) dataFile.delete();
406 tmpFile.renameTo(dataFile);
407 println(" => rename temporary file to "+dataFile); //
[all...]
H A DPerformanceResults.java535 File dataFile = new File(dir, "performances.dat"); //$NON-NLS-1$
536 if (!dataFile.exists()) return;
540 stream = new DataInputStream(new BufferedInputStream(new FileInputStream(dataFile)));
598 println(" => read from file "+dataFile); //$NON-NLS-1$
600 println(" !!! "+dataFile+" should be deleted as it contained invalid data !!!"); //$NON-NLS-1$ //$NON-NLS-2$
898 File dataFile = new File(dir, "performances.dat"); //$NON-NLS-1$
899 if (dataFile.exists()) {
903 dataFile.delete();
906 DataOutputStream stream = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(dataFile)));
947 println(" => performance results general data written in file " + dataFile); //
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Drbbiapts.h64 void RoundtripRule(const char *dataFile);
H A Drbbiapts.cpp1014 void RBBIAPITest::RoundtripRule(const char *dataFile) { argument
1019 LocalUDataMemoryPointer data(udata_open(U_ICUDATA_BRKITR, "brk", dataFile, &status));
1026 errcheckln(status, "Can't open \"%s\" - %s", dataFile, u_errorName(status));
1039 logln("Comparing \"%s\" len=%d", dataFile, length);
1041 errln("Built rules and rebuilt rules are different %s", dataFile);
/external/icu/icu4c/source/test/intltest/
H A Drbbiapts.h65 void RoundtripRule(const char *dataFile);
H A Drbbiapts.cpp1017 void RBBIAPITest::RoundtripRule(const char *dataFile) { argument
1022 LocalUDataMemoryPointer data(udata_open(U_ICUDATA_BRKITR, "brk", dataFile, &status));
1029 errcheckln(status, "Can't open \"%s\" - %s", dataFile, u_errorName(status));
1042 logln("Comparing \"%s\" len=%d", dataFile, length);
1044 errln("Built rules and rebuilt rules are different %s", dataFile);
/external/emma/core/java12/com/vladium/emma/data/
H A DMergeProcessor.java141 final File dataFile = m_dataPath [f];
142 if (verbose) log.verbose ("processing input file [" + dataFile.getAbsolutePath () + "] ...");
144 final IMergeable [] fileData = DataFactory.load (dataFile);
/external/emma/core/java12/com/vladium/emma/report/
H A DReportProcessor.java172 final File dataFile = m_dataPath [f];
173 if (verbose) log.verbose ("processing input file [" + dataFile.getAbsolutePath () + "] ...");
175 final IMergeable [] fileData = DataFactory.load (dataFile);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs-ant.jarMETA-INF/ META-INF/MANIFEST.MF edu/ edu/umd/ edu/umd/cs/ edu/umd/cs/findbugs/ ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.app_1.3.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 2449 milliseconds