HomeSort by relevance Sort by last modified time
    Searched refs:fileName (Results 26 - 50 of 458) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/html/
File.idl 35 readonly attribute DOMString fileName;
  /libcore/luni/src/test/java/tests/api/java/io/
FileInputStreamTest.java 47 public String fileName;
66 File f = new File(fileName);
96 FileOutputStream fos = new FileOutputStream(fileName);
125 is = new FileInputStream(fileName);
151 is = new FileInputStream(fileName);
174 is = new FileInputStream(fileName);
203 FileInputStream fis = new FileInputStream(fileName);
220 fail("Could not find : " + fileName);
242 FileInputStream fis = new FileInputStream(fileName);
247 fail("Could not find : " + fileName);
    [all...]
  /external/icu4c/samples/layout/
UnicodeReader.cpp 26 const UChar *UnicodeReader::readFile(const char *fileName, GUISupport *guiSupport, int32_t &charCount)
38 f = fopen(fileName, "rb");
41 sprintf(errorMessage,"Couldn't open %s: %s \n", fileName, strerror(errno));
74 sprintf(errorMessage, "Couldn't detect the encoding of %s: (%2.2X, %2.2X, %2.2X, %2.2X)\n", fileName,
86 sprintf(errorMessage,"Couldn't get memory for reading %s: %s \n", fileName, strerror(errno));
94 sprintf(errorMessage,"Couldn't read %s: %s \n", fileName, strerror(errno));
109 sprintf(errorMessage,"Couldn't get memory for reading %s: %s \n", fileName, strerror(errno));
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)
  /external/webkit/WebCore/platform/sql/chromium/
SQLiteFileSystemChromiumWin.cpp 51 // fileName - the name of the file.
55 int chromiumOpen(sqlite3_vfs*, const char* fileName,
58 HANDLE h = ChromiumBridge::databaseOpenFile(fileName, desiredFlags);
62 return chromiumOpen(0, fileName, id, newFlags, usedFlags);
80 // fileName - the name of the file.
83 int chromiumDelete(sqlite3_vfs*, const char* fileName, int)
85 return ChromiumBridge::databaseDeleteFile(fileName);
91 // fileName - the name of the file.
94 int chromiumAccess(sqlite3_vfs*, const char* fileName, int flag, int* res)
96 DWORD attr = ChromiumBridge::databaseGetFileAttributes(fileName);
    [all...]
  /dalvik/libdex/
CmdUtils.c 107 UnzipToFileResult dexOpenAndMap(const char* fileName, const char* tempFileName,
111 int len = strlen(fileName);
119 "ERROR: filename must end in .dex, .zip, .jar, or .apk\n");
125 if (strcasecmp(fileName + len -3, "dex") != 0) {
140 result = dexUnzipToFile(fileName, tempFileName, quiet);
144 fileName = tempFileName;
163 fd = open(fileName, O_RDONLY);
167 fileName, strerror(errno));
173 fprintf(stderr, "ERROR: Unable to map '%s'\n", fileName);
188 fileName);
    [all...]
CmdUtils.h 63 UnzipToFileResult dexOpenAndMap(const char* fileName, const char* tempFileName,
OptInvocation.c 37 * Given the filename of a .jar or .dex file, construct the DEX file cache
45 char* dexOptGenerateCacheFileName(const char* fileName, const char* subFileName)
58 if (fileName[0] != '/') {
61 * should, e.g. if filename is "./out/whatever" it doesn't crunch
70 strncat(absoluteFile, fileName, kBufLen);
82 /* Turn the path into a flat filename by replacing
104 LOGV("Cache file for '%s' '%s' is '%s'\n", fileName, subFileName, nameBuf);
  /frameworks/base/core/java/android/content/res/
AssetManager.java 281 * @param fileName The name of the asset to open. This name can be
287 public final InputStream open(String fileName) throws IOException {
288 return open(fileName, ACCESS_STREAMING);
297 * @param fileName The name of the asset to open. This name can be
308 public final InputStream open(String fileName, int accessMode)
314 int asset = openAsset(fileName, accessMode);
321 throw new FileNotFoundException("Asset file: " + fileName);
324 public final AssetFileDescriptor openFd(String fileName)
330 ParcelFileDescriptor pfd = openAssetFd(fileName, mOffsets);
335 throw new FileNotFoundException("Asset file: " + fileName);
    [all...]
  /libcore/support/src/test/java/tests/util/
SerializationTester.java 117 * @param fileName
123 public static boolean assertCompabilitySame(Object obj, String fileName)
125 return obj == readObject(obj, fileName);
134 * @param fileName
140 public static boolean assertCompabilityEquals(Object obj, String fileName)
142 return obj.equals(readObject(obj, fileName));
150 * @param fileName
156 public static Object readObject(Object obj, String fileName)
161 fileName);
164 writeObject(obj, new File(fileName).getName())
    [all...]
  /cts/tools/vm-tests/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 38 args.fileNames = new String[] {inputFile.fileName.getAbsolutePath()};
40 args.outName = outputFile.fileName.getAbsolutePath();
46 inputFile.fileName.delete();
51 + inputFile.fileName.getAbsolutePath() + " to "
  /external/webkit/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...]
  /development/simulator/app/
LoadableImage.cpp 28 bool LoadableImage::Create(const char* fileName, int x, int y)
30 if (fileName == NULL || x < 0 || y < 0) {
36 mName = android::strdupNew(fileName);
  /external/webkit/WebCore/platform/chromium/
DragDataChromium.cpp 70 String fileName = m_platformDragData->filenames[0];
71 fileName = ChromiumBridge::getAbsolutePath(fileName);
72 if (fileExists(fileName) && !ChromiumBridge::isDirectory(fileName))
73 url = ChromiumBridge::filePathToURL(fileName).string();
  /external/guava/src/com/google/common/io/
PatternFilenameFilter.java 54 /*@Override*/ public boolean accept(File dir, String fileName) {
55 return pattern.matcher(fileName).matches();
  /external/proguard/src/proguard/gui/
ExtensionFileFilter.java 66 String fileName = file.getName().toLowerCase();
70 if (fileName.endsWith(extensions[index]))
  /external/webkit/JavaScriptCore/qt/api/
qscriptengine_p.cpp 45 QScriptValuePrivate* QScriptEnginePrivate::evaluate(const QString& program, const QString& fileName, int lineNumber)
48 JSStringRef file = QScriptConverter::toString(fileName);
  /frameworks/base/include/utils/
misc.h 78 FileType getFileType(const char* fileName);
80 time_t getFileModDate(const char* fileName);
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/
FileURLConnection.java 41 String fileName;
59 fileName = url.getFile();
60 if (fileName == null) {
61 fileName = "";
63 fileName = Util.decode(fileName, false);
76 File f = new File(fileName);
198 String path = fileName;
  /packages/apps/Settings/src/com/android/settings/
SettingsLicenseActivity.java 53 String fileName = SystemProperties.get(PROPERTY_LICENSE_PATH, DEFAULT_LICENSE_PATH);
54 if (TextUtils.isEmpty(fileName)) {
66 if (fileName.endsWith(".gz")) {
68 new GZIPInputStream(new FileInputStream(fileName)));
70 inputReader = new FileReader(fileName);
76 Log.e(TAG, "License HTML file not found at " + fileName, e);
80 Log.e(TAG, "Error reading license HTML file at " + fileName, e);
93 Log.e(TAG, "License HTML is empty (from " + fileName + ")");
  /cts/tests/src/android/provider/cts/
FileCopyHelper.java 52 * Copy the file from the resources with a filename .
55 * @param fileName the file name
59 public String copy(int resId, String fileName) {
65 target = mContext.openFileOutput(fileName, Context.MODE_WORLD_READABLE);
86 mFilesList.add(fileName);
87 return mContext.getFileStreamPath(fileName).getAbsolutePath();

Completed in 7024 milliseconds

12 3 4 5 6 7 8 91011>>