HomeSort by relevance Sort by last modified time
    Searched refs:fileName (Results 51 - 75 of 748) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tools/vm-tests-tf/src/util/build/
DFHBuildStep.java 37 File out_dir = outputFile.fileName.getParentFile();
48 r = new FileReader(inputFile.fileName);
49 os = new FileOutputStream(outputFile.fileName);
58 System.err.println("error in DFHBuildStep for inputfile "+inputFile.fileName+", outputfile "+outputFile.fileName);
JarBuildStep.java 42 if (!inputFile.fileName.equals(tempFile)) {
43 copyFile(inputFile.fileName, tempFile);
53 File outDir = outputFile.fileName.getParentFile();
60 "-cMf", outputFile.fileName.getAbsolutePath(), "-C",
70 inputFile.fileName.delete();
74 " \"-cMf\", "+outputFile.fileName.getAbsolutePath()+", \"-C\"," +
BuildStep.java 34 final File fileName;
36 BuildFile(String folder, String fileName) {
38 this.fileName = new File(this.folder, fileName);
42 return fileName.getAbsolutePath();
47 return fileName.hashCode();
56 return fileName.equals(other.fileName);
DexBuildStep.java 39 args.fileNames = new String[] {inputFile.fileName.getAbsolutePath()};
41 args.outName = outputFile.fileName.getAbsolutePath();
53 inputFile.fileName.delete();
58 + inputFile.fileName.getAbsolutePath() + " to "
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Exceptions/
regress-50447.js 23 * SUMMARY: New properties fileName, lineNumber have been added to Error objects
30 var summary = 'Test (non-ECMA) Error object properties fileName, lineNumber';
65 if (e.fileName.search (/-50447\.js$/i) == -1)
66 reportFailure ("expected fileName to end with '-50447.js'");
85 reportCompare ("file", e.fileName,
86 "fileName property returned unexpected value.");
103 reportCompare ("", e.fileName,
104 "fileName property returned unexpected value.");
122 reportCompare ("", e.fileName,
123 "fileName property returned unexpected value.")
    [all...]
  /frameworks/base/core/java/android/database/
DefaultDatabaseErrorHandler.java 96 private void deleteDatabaseFile(String fileName) {
97 if (fileName.equalsIgnoreCase(":memory:") || fileName.trim().length() == 0) {
100 Log.e(TAG, "deleting the database file: " + fileName);
102 new File(fileName).delete();
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRFileStream.m 40 @synthesize fileName;
42 + (id) newANTLRFileStream:(NSString*)fileName
44 return [[ANTLRFileStream alloc] init:fileName];
56 fileName = aFileName;
66 fileName = aFileName;
74 return fileName;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarAnalysisAbortedMessage.java 48 String fileName = probe.dfa.nfa.grammar.getFileName();
49 if ( fileName!=null ) {
50 file = fileName;
  /external/icu4c/samples/layout/
GDIFontMap.cpp 18 GDIFontMap::GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status)
19 : FontMap(fileName, pointSize, guiSupport, status), fSurface(surface)
GnomeFontMap.cpp 20 GnomeFontMap::GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status)
21 : FontMap(fileName, pointSize, guiSupport, status), fEngine(engine)
GDIFontMap.h 27 GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
GnomeFontMap.h 27 GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
  /external/proguard/src/proguard/gui/
ExtensionFileFilter.java 66 String fileName = file.getName().toLowerCase();
70 if (fileName.endsWith(extensions[index]))
  /external/webkit/Source/WebCore/platform/graphics/gtk/
ImageGtk.cpp 124 PassRefPtr<Image> loadImageFromFile(CString fileName)
127 if (!fileName.isNull()) {
128 RefPtr<SharedBuffer> buffer = loadResourceSharedBuffer(fileName);
136 CString fileName;
138 fileName = getThemeIconFileName(GTK_STOCK_MISSING_IMAGE, 16);
139 if (fileName.isNull()) {
142 fileName = glibFileName.get();
145 return loadImageFromFile(fileName);
  /frameworks/av/libvideoeditor/osal/src/
M4PSW_DebugTrace.c 76 M4OSA_Char* fileName,
82 M4OSA_DebugTrace(line, fileName, level, stringCondition, message, returnedError);
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 57 for (String fileName : mInputFileNames) {
58 RandomAccessFile raf = openInputFile(fileName);
64 Output.generateFirstHeader(fileName, mOutputFormat);
66 Output.generateHeader(fileName, mOutputFormat);
92 * @param fileName the name of the file to open
94 RandomAccessFile openInputFile(String fileName) throws IOException {
97 raf = openInputFileAsZip(fileName);
99 File inputFile = new File(fileName);
110 * @param fileName the name of the file to open
116 RandomAccessFile openInputFileAsZip(String fileName) throws IOException
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldBufferedInputStreamTest.java 34 public String fileName;
200 fileName = System.getProperty("user.dir");
202 if (fileName.charAt(fileName.length() - 1) == separator.charAt(0)) {
203 fileName = Support_PlatformFile.getNewPlatformFile(fileName,
206 fileName = Support_PlatformFile.getNewPlatformFile(fileName
209 OutputStream fos = new FileOutputStream(fileName);
212 isFile = new FileInputStream(fileName);
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatLfnDirectoryEntry.java 46 private String fileName;
54 this.fileName = name;
64 FatDirectoryEntry realEntry, String fileName) {
70 this.fileName = fileName;
77 final String fileName;
81 fileName = realEntry.getShortName().asSimpleString();
91 fileName = name.toString().trim();
94 return new FatLfnDirectoryEntry(dir, realEntry, fileName);
197 int result = (fileName.length() / 13) + 1
    [all...]
  /cts/libs/util/src/android/provider/cts/
FileCopyHelper.java 54 * Copy the file from the resources with a filename .
57 * @param fileName the file name
62 public String copy(int resId, String fileName) throws IOException {
64 OutputStream target = mContext.openFileOutput(fileName, Context.MODE_WORLD_READABLE);
66 mFilesList.add(fileName);
67 return mContext.getFileStreamPath(fileName).getAbsolutePath();
  /dalvik/libdex/
CmdUtils.h 63 UnzipToFileResult dexOpenAndMap(const char* fileName, const char* tempFileName,
OptInvocation.cpp 39 * Given the filename of a .jar or .dex file, construct the DEX file cache
47 char* dexOptGenerateCacheFileName(const char* fileName, const char* subFileName)
59 if (fileName[0] != '/') {
62 * should, e.g. if filename is "./out/whatever" it doesn't crunch
71 strncat(absoluteFile, fileName, kBufLen);
83 /* Turn the path into a flat filename by replacing
105 ALOGV("Cache file for '%s' '%s' is '%s'", fileName, subFileName, nameBuf);
  /external/webkit/Source/WebKit/android/
RenderSkinNinePatch.h 44 static bool decodeAsset(android::AssetManager*, const char* fileName, NinePatch*);
  /external/webkit/Tools/DumpRenderTree/chromium/
TestEventPrinter.h 43 virtual void handleImage(const char* actualHash, const char* expectedHash, const unsigned char* imageData, size_t imageSize, const char* fileName) const = 0;
  /frameworks/native/opengl/tests/gl_perfapp/jni/
gl_code.cpp 75 const char* fileName = "/sdcard/glperf.csv";
81 ALOGI("Writing to: %s\n",fileName);
82 fOut = fopen(fileName, "w");
84 ALOGE("Could not open: %s\n", fileName);
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_derivedsourcesallinone.py 123 (parentPath, fileName) = os.path.split(f)
124 (interfaceName, ext) = os.path.splitext(fileName)
173 (parentPath, fileName) = os.path.split(outputFileName)
193 for fileName in outputFileNames:
194 print 'Generating derived sources list into %s...' % fileName
195 partition = outputFileNames.index(fileName)
197 writeContent(fileContents, fileName)

Completed in 2325 milliseconds

1 23 4 5 6 7 8 91011>>