Home
last modified time | relevance | path

Searched refs:getAbsolutePath (Results 1 – 25 of 91) sorted by relevance

1234

/external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
DLibraryLoaderHelper.java97 System.load(libFile.getAbsolutePath()); in tryLoadLibraryUsingWorkaround()
155 Log.i(TAG, "Extracting native libraries into " + outputFile.getAbsolutePath()); in unpackLibrariesOnce()
188 Log.e(TAG, "Failed to delete " + outputFile.getAbsolutePath()); in unpackLibrariesOnce()
237 Log.e(TAG, "Failed to remove " + file.getAbsolutePath()); in deleteDirectorySync()
242 Log.w(TAG, "Failed to remove " + dir.getAbsolutePath()); in deleteDirectorySync()
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
DTestUtil.java58 …File roboSiblingTestDir = file(new File(new File(".").getAbsolutePath()).getParentFile().getParent… in resourcesBaseDir()
62 …+ testDir.getAbsolutePath() + " or " + roboTestDir.getAbsolutePath() + "\n or " + roboSiblingTestD… in resourcesBaseDir()
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
DAntlr3Mojo.java331 log.debug("Output directory base will be " + outputDirectory.getAbsolutePath()); in execute()
333 tool.setOutputDirectory(outputDirectory.getAbsolutePath()); in execute()
342 tool.setLibDirectory(libDirectory.getAbsolutePath()); in execute()
346 log.info("No ANTLR grammars to compile in " + sourceDirectory.getAbsolutePath()); in execute()
351 log.info("ANTLR: Processing source directory " + sourceDirectory.getAbsolutePath()); in execute()
357 tool.setInputDirectory(sourceDirectory.getAbsolutePath()); in execute()
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
DArchiveTest.java91 final String path = new File(getActivity().getFilesDir(), "test.mht").getAbsolutePath(); in testExplicitGoodPath()
103 final String path = getActivity().getFilesDir().getAbsolutePath() + "/"; in testAutoGoodPath()
124 final String path = new File("/foo/bar/baz.mht").getAbsolutePath(); in testExplicitBadPath()
136 final String path = new File("/foo/bar/").getAbsolutePath(); in testAutoBadPath()
/external/emma/core/java12/com/vladium/emma/data/
DMergeProcessor.java72 … throw new IllegalArgumentException ("not a file: [" + _file.getAbsolutePath () + "]"); in setSessionOutFile()
111 log.verbose (" " + nonexistent + f.getAbsolutePath ()); in _run()
142 … if (verbose) log.verbose ("processing input file [" + dataFile.getAbsolutePath () + "] ..."); in _run()
249 …l merged data will be written to a temp file first [" + tempDataOutFile.getAbsolutePath () + "]"); in _run()
289 …timeException ("could not rename temporary file [" + tempDataOutFile.getAbsolutePath () + "] to ["… in _run()
DDataFactory.java68 throw new IOException ("could not delete file [" + file.getAbsolutePath () + "]"); in persist()
83 throw new IOException ("could not delete file [" + file.getAbsolutePath () + "]"); in persist()
98 throw new IOException ("could not delete file [" + file.getAbsolutePath () + "]"); in persist()
409 throw new IOException ("input file does not exist: [" + file.getAbsolutePath () + "]"); in mergeload()
424 …throw new IOException ("file [" + file.getAbsolutePath () + "] is corrupt or was not created by " … in mergeload()
529 ….isFile ()) throw new IOException ("can persist in normal files only: " + file.getAbsolutePath ()); in persist()
550 …throw new IOException ("cannot overwrite [" + file.getAbsolutePath () + "]: not created by " + IAp… in persist()
593 …throw new IOException ("cannot merge new data into [" + file.getAbsolutePath () + "]: created by a… in persist()
597 …throw new IOException ("cannot merge new data into [" + file.getAbsolutePath () + "]: created by a… in persist()
/external/emma/core/java12/com/vladium/emma/instr/
DInstrProcessor.java95 … throw new IllegalArgumentException ("not a file: [" + _file.getAbsolutePath () + "]"); in setMetaOutFile()
122 … throw new IllegalArgumentException ("not a directory: [" + _outDir.getAbsolutePath () + "]"); in setInstrOutDir()
223 …w EMMARuntimeException (IAppErrorCodes.OUT_MKDIR_FAILURE, new Object [] {dir.getAbsolutePath ()}); in createDir()
228 …ew EMMARuntimeException (IAppErrorCodes.OUT_MKDIR_FAILURE, new Object [] {dir.getAbsolutePath ()}); in createDir()
DInstrProcessorST.java99 …ibutes.Name.IMPLEMENTATION_TITLE, "instrumented version of [" + archive.getAbsolutePath () + "]"); in handleArchiveStart()
135 …ace2 ("handleArchiveStart", "created temp archive [" + m_tempArchiveFile.getAbsolutePath () + "]"); in handleArchiveStart()
379 …e2 ("handleArchiveEnd", "renamed temp archive [" + m_tempArchiveFile.getAbsolutePath () + "] to ["… in handleArchiveEnd()
638 log.verbose (" " + nonexistent + f.getAbsolutePath ()); in _run()
691 log.verbose ("metadata output file: " + mdataOutFile.getAbsolutePath ()); in _run()
758 …ooleanValue () ? "merged into" : "written to") + " [" + mdataOutFile.getAbsolutePath () + "] {in "… in _run()
764 …ow new EMMARuntimeException (OUT_IO_FAILURE, new Object [] {mdataOutFile.getAbsolutePath ()}, ioe); in _run()
/external/doclava/src/com/google/doclava/
DClearPage.java170 System.err.println(from.getAbsolutePath() + ": Error opening file"); in copyFile()
177 System.err.println(from.getAbsolutePath() + ": Error opening file"); in copyFile()
194 System.err.println(from.getAbsolutePath() + ": error reading file"); in copyFile()
201 System.err.println(from.getAbsolutePath() + ": error writing file"); in copyFile()
/external/jsilver/src/org/clearsilver/jni/
DJNI.java45 new File(path, platformLibraryName).getAbsolutePath());
95 System.load(new File(path, platformLibraryName).getAbsolutePath()); in loadLibrary()
/external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/
DApplicationData.java74 String cacheDir = targetContext.getCacheDir().getAbsolutePath(); in getAppDirFromTargetContext()
90 if (!file.getAbsolutePath().endsWith("/lib") && !removeFile(file)) in removeAppData()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
DCompileErrorCheck.java97 String absolutePath = aFile.getAbsolutePath(); in findLogs()
203 logFiles[i++]=((File) enumeration.nextElement()).getAbsolutePath(); in sendNotice()
209 String path=((File) enumeration.nextElement()).getAbsolutePath(); in sendNotice()
DVersionNumberStripper.java56 String absolutePath = files[i].getAbsolutePath(); in stripVersions()
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
DResourceLoaderAdaptor.java120 loadPathCache.add(getLoadPaths(), name, file.getAbsolutePath()); in locateFile()
180 return file.getAbsolutePath(); in getKey()
200 fullPath = file.getAbsolutePath(); in getResourceVersionId()
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
DImportantFileWriterAndroidTest.java82 testFile.getAbsolutePath(), data1)); in testAtomicWrite()
89 testFile.getAbsolutePath(), data2)); in testAtomicWrite()
/external/emma/core/java12/com/vladium/emma/report/
DReportProcessor.java131 log.verbose (" " + nonexistent + f.getAbsolutePath ()); in _run()
149 log.verbose (" " + nonexistent + f.getAbsolutePath ()); in _run()
173 … if (verbose) log.verbose ("processing input file [" + dataFile.getAbsolutePath () + "] ..."); in _run()
/external/emma/ant/ant14/com/vladium/emma/instr/
DinstrTask.java72 processor.setInstrOutDir (m_outDir != null ? m_outDir.getAbsolutePath () : null); in execute()
73 processor.setMetaOutFile (m_outFile != null ? m_outFile.getAbsolutePath () : null); in execute()
/external/chromium_org/content/shell/android/java/src/org/chromium/content_shell/
DShellLayoutTestUtils.java23 return appContext.getFilesDir().getAbsolutePath(); in getApplicationFilesDirectory()
/external/emma/core/java12/com/vladium/emma/rt/
DAppRunner.java197 … throw new IllegalArgumentException ("not a file: [" + _file.getAbsolutePath () + "]"); in setSessionOutFile()
282 log.verbose (" " + nonexistent + f.getAbsolutePath ()); in _run()
299 log.verbose (" " + nonexistent + f.getAbsolutePath ()); in _run()
323 log.verbose ("session data output file: " + sdataOutFile.getAbsolutePath ()); in _run()
724 …dataOutMerge ? "merged into" : "written to") + " [" + m_sdataOutFile.getAbsolutePath () + "] {in "… in run()
DRTCoverageDataPersister.java61 …age data " + (merge ? "merged into" : "written to") + " [" + outFile.getAbsolutePath () + "] {in "… in dumpCoverageData()
/external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
DGUnitExecuteMojo.java275 getLog().info( "gUnit report directory : " + reportDirectory.getAbsolutePath() ); in performExecution()
292 final String scriptPath = script.getAbsolutePath(); in performExecution()
302 script.getParentFile().getAbsolutePath() in performExecution()
/external/droiddriver/src/com/google/android/droiddriver/util/
DFileUtils.java40 Logs.log(Log.INFO, "opening file " + file.getAbsolutePath()); in open()
/external/chromium_org/base/android/java/src/org/chromium/base/
DPathUtils.java92 return Environment.getExternalStorageDirectory().getAbsolutePath(); in getExternalStorageDirectory()
/external/chromium_org/testing/android/java/src/org/chromium/native_test/
DChromeNativeTestActivity.java61 nativeRunTests(getFilesDir().getAbsolutePath(), getApplicationContext()); in runTests()
/external/emma/ant/ant14/com/vladium/emma/data/
DmergeTask.java45 processor.setSessionOutFile (m_outFile != null ? m_outFile.getAbsolutePath () : null); in execute()

1234