HomeSort by relevance Sort by last modified time
    Searched defs:fileName (Results 76 - 100 of 225) sorted by null

1 2 34 5 6 7 8 9

  /external/proguard/src/proguard/
ProGuard.java 169 System.out.println("Printing configuration to [" + fileName(configuration.printConfiguration) + "]...");
289 System.out.println("Printing usage to [" + fileName(configuration.printUsage) + "]...");
341 System.out.println("Applying mapping [" + fileName(configuration.applyMapping) + "]");
347 System.out.println("Printing mapping to [" + fileName(configuration.printMapping) + "]...");
402 System.out.println("Printing classes to [" + fileName(configuration.dump) + "]...");
451 private String fileName(File file)
  /external/proguard/src/proguard/ant/
ProGuardTask.java 297 String fileName = file.getName();
300 fileName.equalsIgnoreCase("false") ||
301 fileName.equalsIgnoreCase("no") ||
302 fileName.equalsIgnoreCase("off") ? null :
303 fileName.equalsIgnoreCase("true") ||
304 fileName.equalsIgnoreCase("yes") ||
305 fileName.equalsIgnoreCase("on") ? new File("") :
  /external/stlport/test/unit/
codecvt_test.cpp 293 const char* fileName = "test_file.txt";
295 ofstream ostr(fileName);
305 ifstream istr(fileName);
339 ifstream istr(fileName);
  /external/webkit/Source/JavaScriptCore/
jsc.cpp 72 static bool fillBufferWithContentsOfFile(const UString& fileName, Vector<char>& buffer);
210 UString fileName = exec->argument(0).toString(exec);
212 if (!fillBufferWithContentsOfFile(fileName, script))
219 evaluate(globalObject->globalExec(), globalObject->globalScopeChain(), makeSource(script.data(), fileName));
227 UString fileName = exec->argument(0).toString(exec);
229 if (!fillBufferWithContentsOfFile(fileName, script))
233 Completion result = evaluate(globalObject->globalExec(), globalObject->globalScopeChain(), makeSource(script.data(), fileName));
241 UString fileName = exec->argument(0).toString(exec);
243 if (!fillBufferWithContentsOfFile(fileName, script))
250 Completion result = checkSyntax(globalObject->globalExec(), makeSource(script.data(), fileName));
    [all...]
  /external/webkit/Source/WebCore/html/
ImageDocument.cpp 160 // Compute the title, we use the decoded filename of the resource, falling
162 String fileName = decodeURLEscapeSequences(document()->url().lastPathComponent());
163 if (fileName.isEmpty())
164 fileName = document()->url().host();
165 document()->setTitle(imageTitle(fileName, size));
  /external/webkit/Source/WebCore/platform/network/win/
ResourceHandleWin.cpp 364 String fileName = firstRequest().url().fileSystemPath();
365 HANDLE fileHandle = CreateFileW(fileName.charactersWithNullTermination(), GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
374 int dotPos = fileName.reverseFind('.');
375 int slashPos = fileName.reverseFind('/');
378 String ext = fileName.substring(dotPos + 1);
  /external/webkit/Source/WebCore/plugins/
PluginPackage.h 59 const String& fileName() const { return m_fileName; }
  /external/webkit/Source/WebCore/plugins/mac/
PluginPackageMac.cpp 71 static WTF::RetainPtr<CFDictionaryRef> readPListFile(CFStringRef fileName, bool createFile, CFBundleRef bundle)
82 CFURLCreateWithFileSystemPath(kCFAllocatorDefault, fileName, kCFURLPOSIXPathStyle, false);
141 WTF::RetainPtr<CFStringRef> fileName = (CFStringRef)mimeTypesFileName.get();
143 WTF::RetainPtr<CFStringRef> path = CFStringCreateWithFormat(0, 0, CFSTR("%@/Library/Preferences/%@"), homeDir.get(), fileName.get());
  /external/webkit/Source/WebCore/storage/
AbstractDatabase.cpp 354 String AbstractDatabase::fileName() const
  /external/webkit/Source/WebKit/qt/tests/qwebplugindatabase/
tst_qwebplugindatabase.cpp 68 QString fileName = jsPlugin["filename"].toString();
72 QCOMPARE(QFileInfo(plugin.path()).fileName(), fileName);
  /external/webkit/Tools/MiniBrowser/qt/
BrowserWindow.cpp 245 QString fileName = QFileDialog::getSaveFileName(label, "Screenshot", QString(), QString("PNG File (.png)"));
246 if (!fileName.isEmpty()) {
251 if (!rx.exactMatch(fileName))
252 fileName += ".png";
254 pixmap.save(fileName, "png");
256 label->setWindowTitle(QString("Screenshot - Saved at %1").arg(fileName));
  /frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp 67 isFilenameSafe(const char* filename)
71 switch (*(filename + offset)) {
146 sumFiles(JNIEnv* env, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntry, const char* fileName)
166 copyFileIfChanged(JNIEnv *env, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntry, const char* fileName)
186 const size_t fileNameLen = strlen(fileName);
196 if (strlcpy(localFileName + nativeLibPath.size() + 1, fileName, sizeof(localFileName)
230 LOGI("Failed uncompressing %s to %s\n", fileName, localTmpFileName);
285 char fileName[PATH_MAX];
293 // Make sure this entry has a filename.
294 if (zipFile.getEntryFileName(entry, fileName, sizeof(fileName)))
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Font.java 214 String fileName = getFontFileName(familyName, fontStyle);
216 fontPath += "/fonts/" + fileName;
  /frameworks/base/test-runner/src/junit/runner/
TestCaseClassLoader.java 114 String fileName= className.replace('.', '/')+".class";
116 data= loadJarData(path, fileName);
118 data= loadFileData(path, fileName);
132 private byte[] loadFileData(String path, String fileName) {
133 File file= new File(path, fileName);
157 private byte[] loadJarData(String path, String fileName) {
168 ZipEntry entry= zipFile.getEntry(fileName);
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
FsUtils.java 190 String fileName = url.substring(slashPostion + 1, qmPostion);
191 if ("index.html".equals(fileName)) {
205 public static void writeDrawTime(String fileName, String url, long[] times) {
217 FileWriter fw = new FileWriter(fileName, true);
  /hardware/ril/mock-ril/src/cpp/
js_support.cpp 96 int ReadFile(const char *fileName, char** data, size_t *length) {
102 DBG("ReadFile E fileName=%s", fileName);
104 f = fopen(fileName, "rb");
106 DBG("Could not fopen '%s'", fileName);
141 const char* fileName = ToCString(fileNameUtf8Value);
144 int fullPathLength = strlen(directory) + strlen(fileName) + 1;
147 strncat(fullPath, fileName, fullPathLength);
151 // A javascript read file function arg[0] = filename
162 char *fileName = CreateFileName(args)
    [all...]
requests.cpp 471 const char *fileName= "/sdcard/data/mock_ril.js";
472 int status = ReadFile(fileName, &buffer);
474 runJs(context, &try_catch, fileName, buffer);
  /libcore/dalvik/src/main/java/dalvik/system/
DexPathList.java 272 * Get the filename component of the path, and replace the
283 String fileName = path.getName();
284 if (!fileName.endsWith(DEX_SUFFIX)) {
285 int lastDot = fileName.lastIndexOf(".");
287 fileName += DEX_SUFFIX;
290 sb.append(fileName, 0, lastDot);
292 fileName = sb.toString();
296 File result = new File(optimizedDirectory, fileName);
372 String fileName = System.mapLibraryName(libraryName);
375 File file = new File(directory, fileName);
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
FileHandler.java 87 * one {@code FileHandler} tries to open the filename which is currently in use
91 * value will be added to the end of the filename in question immediately to the
136 String fileName = null;
171 fileName = files[0].getAbsolutePath();
174 * if current process has held lock for this fileName continue
177 if (allLocks.get(fileName) != null) {
189 FileOutputStream fileStream = new FileOutputStream(fileName
202 allLocks.put(fileName, lock);
207 new FileOutputStream(fileName, append)), files[0].length());
254 * @return transformed filename ready for use
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCache.java 122 private static String fileName(String host, int port) {
136 String name = fileName(host, port);
188 String name = fileName(host, session.getPeerPort());
  /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...]
OldFileInputStreamTest.java 32 public String fileName;
39 File f = new File(fileName);
73 is = new FileInputStream(fileName);
91 is = new FileInputStream(fileName);
112 FileInputStream fis = new FileInputStream(fileName);
129 fail("Could not find : " + fileName);
138 is = new FileInputStream(fileName);
154 is = new FileInputStream(fileName);
173 is = new FileInputStream(fileName);
190 fileName = System.getProperty("java.io.tmpdir")
    [all...]
OldFileTest.java 87 String fileName = null;
89 f = new File(d, fileName);
110 String fileName = "input.tst";
115 File f = new File(dirName, fileName);
124 fileName = null;
126 f = new File(dirName, fileName);
132 fileName = "input.tst";
133 f = new File(dirName, fileName);
OldFilterInputStreamTest.java 35 private String fileName;
118 new java.io.FileInputStream(fileName), 100));
139 new java.io.FileInputStream(fileName), 100));
252 new java.io.FileInputStream(fileName), 100));
297 fileName = System.getProperty("java.io.tmpdir");
299 if (fileName.charAt(fileName.length() - 1) == separator.charAt(0))
300 fileName = Support_PlatformFile.getNewPlatformFile(fileName,
303 fileName = Support_PlatformFile.getNewPlatformFile(fileNam
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldJarFileTest.java 54 String fileName = (new File(resources, jarName)).getCanonicalPath();
55 new JarFile(fileName);
66 String fileName = (new File(resources, jarName)).getCanonicalPath();
67 new JarFile(fileName, true);

Completed in 1327 milliseconds

1 2 34 5 6 7 8 9