Searched defs:fileName (Results 51 - 75 of 213) sorted by relevance

123456789

/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Exceptions/
H A Derrstack-001.js209 var message = 'Hi there!'; var fileName = 'file name'; var lineNumber = 0; variable
210 myErr = Error(message, fileName, lineNumber);
221 myErr = new Error(message, fileName, lineNumber);
/external/webkit/Source/WebCore/platform/efl/
H A DFileSystemEfl.cpp117 char* fileName; local
125 fileName = filePath + cpath.length();
127 fileName[0] = '/';
128 fileName++;
130 fileNameSpace = sizeof(filePath) - (fileName - filePath) - 1;
152 memcpy(fileName, de->d_name, nameLen + 1);
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DImageGtk.cpp124 PassRefPtr<Image> loadImageFromFile(CString fileName) argument
127 if (!fileName.isNull()) {
128 RefPtr<SharedBuffer> buffer = loadResourceSharedBuffer(fileName);
136 CString fileName; local
138 fileName = getThemeIconFileName(GTK_STOCK_MISSING_IMAGE, 16);
139 if (fileName.isNull()) {
142 fileName = glibFileName.get();
145 return loadImageFromFile(fileName);
/external/webkit/Source/WebCore/platform/sql/
H A DSQLiteFileSystem.cpp53 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database, bool) argument
56 String path = fileName;
77 String fileName; local
80 fileName = pathByAppendingComponent(dbDir, String::format("%016"PRIx64".db", seq));
81 } while (fileExists(fileName));
86 String SQLiteFileSystem::appendDatabaseFileNameToPath(const String& path, const String& fileName) argument
88 return pathByAppendingComponent(path, fileName);
98 bool SQLiteFileSystem::ensureDatabaseFileExists(const String& fileName, bool checkPathOnly) argument
100 if (fileName.isEmpty())
104 String dir = directoryName(fileName);
116 deleteDatabaseFile(const String& fileName) argument
121 getDatabaseFileSize(const String& fileName) argument
[all...]
/external/webkit/Source/WebCore/platform/sql/chromium/
H A DSQLiteFileSystemChromiumPosix.cpp46 int chromium_sqlite3_fill_in_unix_sqlite3_file(sqlite3_vfs* vfs, int fd, int dirfd, sqlite3_file* file, const char* fileName, int noLock);
47 int chromium_sqlite3_get_reusable_file_handle(sqlite3_file* file, const char* fileName, int flags, int* fd);
58 // fileName - the name of the file.
62 int chromiumOpen(sqlite3_vfs* vfs, const char* fileName, argument
67 int result = chromium_sqlite3_get_reusable_file_handle(id, fileName, desiredFlags, &fd);
72 fd = PlatformBridge::databaseOpenFile(fileName, desiredFlags);
75 fd = PlatformBridge::databaseOpenFile(fileName, newFlags);
92 result = chromium_sqlite3_fill_in_unix_sqlite3_file(vfs, fd, -1, id, fileName, noLock);
101 // fileName - the name of the file.
104 int chromiumDelete(sqlite3_vfs*, const char* fileName, in argument
115 chromiumAccess(sqlite3_vfs*, const char* fileName, int flag, int* res) argument
[all...]
H A DSQLiteFileSystemChromiumWin.cpp51 // fileName - the name of the file.
55 int chromiumOpen(sqlite3_vfs*, const char* fileName, argument
58 HANDLE h = PlatformBridge::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) argument
85 return PlatformBridge::databaseDeleteFile(fileName);
91 // fileName - the name of the file.
94 int chromiumAccess(sqlite3_vfs*, const char* fileName, int flag, int* res) argument
96 DWORD attr = PlatformBridge::databaseGetFileAttributes(fileName);
[all...]
/external/webkit/Source/WebKit/android/plugins/
H A DANPTypefaceInterface.cpp61 static int32_t anp_getFontPath(const ANPTypeface* tf, char fileName[], argument
63 size_t size = SkFontHost::GetFileName(SkTypeface::UniqueID(tf), fileName,
/external/webkit/Source/WebKit/chromium/tests/
H A DWebPageSerializerTest.cpp76 void registerMockedURLLoad(const WebURL& url, const WebString& fileName) argument
83 filePath.append(fileName.utf8());
/external/webkit/Tools/DumpRenderTree/qt/
H A Dmain.cpp197 QString fileName = takeOptionValue(args, index); local
198 dumper.setRedirectOutputFileName(fileName);
199 if (fileName.isEmpty() || !freopen(qPrintable(fileName), "w", stdout)) {
206 QString fileName = takeOptionValue(args, index); local
207 dumper.setRedirectErrorFileName(fileName);
208 if (!freopen(qPrintable(fileName), "w", stderr)) {
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DJUnitCodeGen.java312 protected void writeTestFile(String dir, String fileName, String content) { argument
314 File f = new File(dir, fileName);
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
H A DTestSuiteAdapter.java67 public static ITestCaseInput createFileInput(String fileName) { argument
68 if(fileName == null) throw new IllegalArgumentException("null");
69 return new TestCaseInputFile(fileName);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3input.h123 pANTLR3_STRING fileName; member in struct:ANTLR3_INPUT_STREAM_struct
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DBufferedInputStreamTest.java34 public String fileName; field in class:BufferedInputStreamTest
492 fileName = System.getProperty("user.dir");
494 if (fileName.charAt(fileName.length() - 1) == separator.charAt(0)) {
495 fileName = Support_PlatformFile.getNewPlatformFile(fileName,
498 fileName = Support_PlatformFile.getNewPlatformFile(fileName
501 OutputStream fos = new FileOutputStream(fileName);
504 isFile = new FileInputStream(fileName);
[all...]
H A DFileInputStreamTest.java35 public String fileName; field in class:FileInputStreamTest
47 java.io.File f = new File(fileName);
56 FileOutputStream fos = new FileOutputStream(fileName);
66 is = new FileInputStream(fileName);
101 is = new FileInputStream(fileName);
113 is = new FileInputStream(fileName);
124 FileInputStream fis1 = new FileInputStream(fileName);
152 FileInputStream fis = new FileInputStream(fileName);
162 InputStreamReader isr = new InputStreamReader(new FileInputStream(fileName));
173 is = new FileInputStream(fileName);
[all...]
H A DFileOutputStreamTest.java31 public String fileName; field in class:FileOutputStreamTest
49 f = new File(fileName = System.getProperty("user.home"), "fos.tst");
57 f = new File(fileName = System.getProperty("user.home"), "fos.tst");
58 fileName = f.getAbsolutePath();
59 fos = new FileOutputStream(fileName);
62 fis = new FileInputStream(fileName);
72 f = new File(fileName = System.getProperty("user.home"), "fos.tst");
73 fileName = f.getAbsolutePath();
74 fos = new FileOutputStream(fileName);
145 f = new File(fileName
[all...]
/external/doclava/src/com/google/doclava/
H A DNavTree.java55 public static void writeYamlTree(String dir, String fileName){ argument
77 ClearPage.write(data, "yaml_navtree.cs", Doclava.ensureSlash(dir) + fileName);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/
H A Dhelpbase-ant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/help/ org/eclipse/help/internal/ ...
/external/icu4c/samples/layout/
H A DFontMap.cpp22 FontMap::FontMap(const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status) argument
43 file = fopen(fileName, "r");
46 sprintf(errorMessage, "Could not open the font map file: %s.", fileName);
102 sprintf(errorMessage, "The font map file %s does not contain any valid scripts.", fileName);
/external/icu4c/tools/ctestfw/unicode/
H A Duperf.h153 const char* fileName; member in class:UPerfTest
/external/icu4c/tools/toolutil/
H A Dfilestrm.c223 T_FileStream_remove(const char* fileName){ argument
224 return (remove(fileName) == 0);
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
H A DPhoneNumberOfflineGeocoder.java75 String fileName = mappingFileProvider.getFileName(prefixMapKey, language, script, region);
76 if (fileName.length() == 0) {
79 if (!availablePhonePrefixMaps.containsKey(fileName)) {
80 loadAreaCodeMapFromFile(fileName);
82 return availablePhonePrefixMaps.get(fileName);
85 private void loadAreaCodeMapFromFile(String fileName) { argument
87 PhoneNumberOfflineGeocoder.class.getResourceAsStream(phonePrefixDataDirectory + fileName);
93 availablePhonePrefixMaps.put(fileName, map);
/external/srec/tools/grxmlcompile/
H A Dnetw_dump.cpp44 void SubGraph::WriteForwardGraphFile( std::string & fileName, GRXMLDoc &p_Doc ) argument
57 outfile.open ( fileName.c_str() );
97 void SubGraph::WriteForwardGraphWithSemantic ( std::string & fileName, GRXMLDoc &p_Doc ) argument
110 outfile.open ( fileName.c_str() );
183 void SubGraph::WriteHMMGraphFile( std::string & fileName, GRXMLDoc &p_Doc ) argument
203 outfile.open ( fileName.c_str() );
266 void SubGraph::WritePhonemeGraphFile( std::string & fileName, GRXMLDoc &p_Doc ) argument
277 outfile.open ( fileName.c_str() );
/external/webkit/Source/JavaScriptCore/API/tests/
H A Dminidom.c36 static char* createStringWithContentsOfFile(const char* fileName);
98 static char* createStringWithContentsOfFile(const char* fileName) argument
106 FILE* f = fopen(fileName, "r");
108 fprintf(stderr, "Could not open file: %s\n", fileName);
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptengine.cpp86 \a fileName is used for error reporting. For example in error objects
87 the file name is accessible through the "fileName" property if it's
90 QScriptValue QScriptEngine::evaluate(const QString& program, const QString& fileName, int lineNumber) argument
92 return QScriptValuePrivate::get(d_ptr->evaluate(program, fileName, lineNumber));
H A Dqscriptengine_p.cpp68 QScriptValuePrivate* QScriptEnginePrivate::evaluate(const QString& program, const QString& fileName, int lineNumber) argument
71 JSStringRef file = QScriptConverter::toString(fileName);

Completed in 481 milliseconds

123456789