Searched defs:fileName (Results 76 - 100 of 213) sorted by relevance

123456789

/external/webkit/Source/WebCore/platform/leveldb/
H A DLevelDBDatabase.cpp99 LevelDBDatabase* LevelDBDatabase::open(const String& fileName, const LevelDBComparator* comparator) argument
109 leveldb::Status s = leveldb::DB::Open(options, fileName.utf8().data(), &db);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3tokenstream.h92 pANTLR3_STRING fileName; member in struct:ANTLR3_TOKEN_SOURCE_struct
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DManifestTest.java59 private Manifest getManifest(String fileName) { argument
61 Support_Resources.copyFile(resources, null, fileName);
62 JarFile jarFile = new JarFile(new File(resources, fileName));
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DURLConnectionTest.java80 static String getContentType(String fileName) throws IOException { argument
81 String resourceName = "org/apache/harmony/luni/tests/" + fileName;
354 public String getContentTypeFor(String fileName) {
365 // RI fails since it does not support fileName that does not begin with
/external/apache-http/src/org/apache/commons/logging/
H A DLogFactory.java1402 ClassLoader classLoader, String fileName) {
1408 Enumeration urls = getResources(classLoader, fileName);
1474 "[LOOKUP] No properties file of name '" + fileName
1478 "[LOOKUP] Properties file of name '" + fileName
1401 getConfigurationFile( ClassLoader classLoader, String fileName) argument
/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 DScenarioResults.java35 String fileName; field in class:ScenarioResults
132 if (this.fileName == null) {
133 this.fileName = "Scenario" + this.id; //$NON-NLS-1$
135 return this.fileName;
/external/emma/ant/ant14/com/vladium/emma/report/
H A DReportCfg.java88 public void setOutfile (final String fileName) argument
90 m_settings.setProperty (m_prefix.concat (OUT_FILE), fileName);
389 public void setOutfile (final String fileName) argument
391 m_settings.setProperty (PREFIX.concat (OUT_FILE), fileName);
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrProcessor.java84 * @param fileName [null unsets the previous override setting]
86 public synchronized final void setMetaOutFile (final String fileName) argument
88 if (fileName == null)
92 final File _file = new File (fileName);
/external/guava/guava/src/com/google/common/io/
H A DFiles.java759 public static String getFileExtension(String fileName) { argument
760 checkNotNull(fileName);
761 int dotIndex = fileName.lastIndexOf('.');
762 return (dotIndex == -1) ? "" : fileName.substring(dotIndex + 1);
/external/icu4c/samples/layout/
H A Dcgnomelayout.c37 GtkWidget *newSample(const gchar *fileName);
81 gchar *fileName = g_strdup(gtk_file_selection_get_filename(fileselection)); local
86 newPara = pf_factory(fileName, font, guiSupport);
89 gchar *title = prettyTitle(fileName);
106 g_free(fileName);
224 GtkWidget *newSample(const gchar *fileName) argument
235 context->paragraph = pf_factory(fileName, font, guiSupport);
237 title = prettyTitle(fileName);
H A Dclayout.c42 void PrettyTitle(HWND hwnd, char *fileName) argument
46 sprintf(title, "%s - %s", APP_NAME, fileName);
H A Dgnomelayout.cpp47 GtkWidget *newSample(const gchar *fileName);
89 gchar *fileName = g_strdup(gtk_file_selection_get_filename(fileselection)); local
94 newPara = Paragraph::paragraphFactory(fileName, font, guiSupport);
97 gchar *title = prettyTitle(fileName);
114 g_free(fileName);
230 GtkWidget *newSample(const gchar *fileName) argument
236 context->paragraph = Paragraph::paragraphFactory(fileName, font, guiSupport);
238 gchar *title = prettyTitle(fileName);
H A Dlayout.cpp41 void PrettyTitle(HWND hwnd, char *fileName) argument
45 sprintf(title, "%s - %s", APP_NAME, fileName);
H A Dparagraph.cpp252 Paragraph *Paragraph::paragraphFactory(const char *fileName, const LEFontInstance *font, GUISupport *guiSupport) argument
256 const UChar *text = UnicodeReader::readFile(fileName, guiSupport, charCount);
/external/icu4c/samples/ugrep/
H A Dugrep.cpp45 const char *fileName; variable
266 fileName = name;
275 fprintf(stderr, "ugrep: Could not open file \"%s\"\n", fileName);
289 fprintf(stderr, "Error reading file \"%s\"\n", fileName);
443 printf("%s:", fileName);
/external/icu4c/test/cintltst/
H A Dspooftest.c133 char *fileName; local
144 fileName = malloc(strlen(dataSrcDir) + 100);
145 strcpy(fileName, dataSrcDir);
146 strcat(fileName, U_FILE_SEP_STRING "unidata" U_FILE_SEP_STRING "confusables.txt");
147 f = fopen(fileName, "rb");
154 strcpy(fileName, dataSrcDir);
155 strcat(fileName, U_FILE_SEP_STRING "unidata" U_FILE_SEP_STRING "confusablesWholeScript.txt");
156 f = fopen(fileName, "rb");
169 free(fileName);
/external/icu4c/test/intltest/
H A Ddcfmtest.cpp444 UChar *DecimalFormatTest::ReadAndConvertFile(const char *fileName, int32_t &ulen, argument
459 f = fopen(fileName, "rb");
461 dataerrln("Error opening test data file %s\n", fileName);
493 errln("Test data file %s is missing its BOM", fileName);
/external/icu4c/test/letest/
H A DFontObject.cpp14 FontObject::FontObject(char *fileName) argument
20 file = fopen(fileName, "rb");
23 printf("?? Couldn't open %s", fileName);
H A DPortableFontInstance.cpp67 PortableFontInstance::PortableFontInstance(const char *fileName, float pointSize, LEErrorCode &status) argument
76 fFile = fopen(fileName, "rb");
/external/icu4c/test/thaitest/
H A Dthaitest.cpp108 // fileName - the path name of the file
111 static const UChar *readFile(char *fileName, int32_t &charCount);
305 const UChar *ThaiWordbreakTest::readFile(char *fileName, int32_t &charCount) argument
313 f = fopen(fileName, "rb");
316 fprintf(stderr,"Couldn't open %s reason: %s \n", fileName, strerror(errno));
327 fprintf(stderr,"Couldn't get memory for reading %s reason: %s \n", fileName, strerror(errno));
334 fprintf(stderr,"Couldn't read %s reason: %s \n", fileName, strerror(errno));
348 fprintf(stderr,"Couldn't get memory for reading %s reason: %s \n", fileName, strerror(errno));
440 char *fileName = "space.txt"; local
456 fileName
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h65 std::string fileName() { return theFileName; } function in class:llvm::LineReader
/external/stlport/test/unit/
H A Dcodecvt_test.cpp293 const char* fileName = "test_file.txt"; local
295 ofstream ostr(fileName);
305 ifstream istr(fileName);
339 ifstream istr(fileName);
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptengine_p.h53 QScriptValuePrivate* evaluate(const QString& program, const QString& fileName, int lineNumber);
55 inline JSValueRef evaluate(JSStringRef program, JSStringRef fileName, int lineNumber);
110 JSValueRef QScriptEnginePrivate::evaluate(JSStringRef program, JSStringRef fileName, int lineNumber) argument
113 JSValueRef result = JSEvaluateScript(m_context, program, /* Global Object */ 0, fileName, lineNumber, &exception);
168 JSRetainPtr<JSStringRef> fileName(Adopt, JSValueToStringCopy(m_context, jsFileName, &exception));
171 .arg(QScriptConverter::toString(fileName.get()))
/external/webkit/Source/WebCore/bindings/v8/
H A DWorkerContextExecutionProxy.cpp191 ScriptValue WorkerContextExecutionProxy::evaluate(const String& script, const String& fileName, const TextPosition0& scriptStartPosition, WorkerContextExecutionState* state) argument
203 v8::Handle<v8::Script> compiledScript = V8Proxy::compileScript(scriptString, fileName, scriptStartPosition);
/external/webkit/Source/WebCore/html/
H A DImageDocument.cpp162 String fileName = decodeURLEscapeSequences(document()->url().lastPathComponent()); local
163 if (fileName.isEmpty())
164 fileName = document()->url().host();
165 document()->setTitle(imageTitle(fileName, size));

Completed in 1201 milliseconds

123456789