/libcore/dalvik/src/main/java/dalvik/system/ |
TemporaryDirectory.java | 42 * <code>setupDirectory(new File(baseDir))</code>. 44 * @param baseDir the base directory of the temporary directory 46 public static void setUpDirectory(String baseDir) { 47 setUpDirectory(new File(baseDir)); 66 * @param baseDir the base directory of the temporary directory 68 public static synchronized void setUpDirectory(File baseDir) { 74 File dir = new File(baseDir, PATH_NAME);
|
/external/proguard/src/proguard/ |
WordReader.java | 40 private File baseDir; 52 protected WordReader(File baseDir) 54 this.baseDir = baseDir; 61 public void setBaseDir(File baseDir) 65 includeWordReader.setBaseDir(baseDir); 69 this.baseDir = baseDir; 81 baseDir;
|
ArgumentWordReader.java | 51 public ArgumentWordReader(String[] arguments, File baseDir) 53 super(baseDir);
|
ConfigurationWriter.java | 47 private File baseDir; 57 baseDir = configurationFile.getParentFile(); 596 if (baseDir != null) 598 String baseDirName = baseDir.getAbsolutePath() + File.separator;
|
ConfigurationParser.java | 59 File baseDir) throws IOException 61 reader = new ArgumentWordReader(args, baseDir); [all...] |
/development/tools/mkstubs/src/com/android/mkstubs/ |
SourceGenerator.java | 52 public void generateSource(File baseDir, 63 fw = createWriter(baseDir, name); 71 FileWriter createWriter(File baseDir, String name) throws IOException { 72 File f = new File(baseDir, name);
|
/external/proguard/src/proguard/ant/ |
ClassPathElement.java | 61 File baseDir = getProject().getBaseDir(); 83 baseDir = scanner.getBasedir(); 120 new ClassPathEntry(file.isAbsolute() ? file : new File(baseDir, fileName),
|
/external/webkit/Source/WebKit/android/jni/ |
CacheManager.cpp | 65 static String baseDir; 66 if (baseDir.isEmpty()) { 72 baseDir = jstringToWtfString(env, static_cast<jstring>(env->CallObjectMethod(fileObject, getPathMethod))); 74 return baseDir;
|
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/ |
AccessibilityNodeInfoDumper.java | 45 File baseDir = new File(Environment.getDataDirectory(), "local"); 46 if (!baseDir.exists()) { 47 baseDir.mkdir(); 48 baseDir.setExecutable(true, false); 49 baseDir.setWritable(true, false); 50 baseDir.setReadable(true, false);
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
testbase.py | 67 baseDir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', '..')) 68 libDir = os.path.join(baseDir, 'lib') 94 cp.append(os.path.join(baseDir, 'runtime', 'Python', 'build')) 129 def baseDir(self): 221 # % (self.baseDir, javaOptions, classpath, grammarPath)) 235 # (os.path.join(self.baseDir, a.strip()), 236 # [os.path.join(self.baseDir, b.strip())]) 274 # self._invokeantlr(self.baseDir, grammarPath, options, javaOptions) 276 self._invokeantlr(self.baseDir, grammarPath, options, javaOptions) 304 = imp.find_module(name, [self.baseDir]) [all...] |
t052import.py | 11 sys.path.insert(0, self.baseDir) [all...] |
t054main.py | 14 sys.path.insert(0, self.baseDir)
|
/external/webkit/Tools/Scripts/ |
commit-log-editor | 65 my $baseDir = baseProductDir(); 73 my $builtEditorApplication = "$baseDir/Release/Commit Log Editor.app/Contents/MacOS/Commit Log Editor"; 80 my $builtEditorApplication = "$baseDir/Debug/Commit Log Editor.app/Contents/MacOS/Commit Log Editor";
|
resolve-ChangeLogs | 420 my ($baseDir) = @_; 424 my $file = findChangeLog(canonicalRelativePath(File::Spec->catfile($baseDir, $ARGV[$i])));
|
/hardware/ti/omap4xxx/security/tf_daemon/ |
delegation_client.c | 404 LogInfo("-storageDir <baseDir> Set the directory where the data will be stored; this directory"); [all...] |
/external/quake/quake/src/WinQuake/ |
sys_android.cpp | 448 void CheckGLCacheVersion(const char* baseDir) 451 if ((int) (sizeof(cachePath)-1) < snprintf(cachePath, sizeof(cachePath), "%s" GLQUAKE_RELPATH "/cacheversion", baseDir)) { 475 if ( (int)(sizeof(cacheDirPath)-1) < snprintf(cacheDirPath, sizeof(cacheDirPath), "%s" GLQUAKE_RELPATH, baseDir)) { 559 const char* basedir = basedir2; local 562 basedir = basedir1; 566 basedir = basedir2; 572 parms.basedir = basedir; 574 CheckGLCacheVersion(basedir);
|
/gdk/samples/quake/jni/ |
sys_android.cpp | 453 void CheckGLCacheVersion(const char* baseDir) 456 if ((int) (sizeof(cachePath)-1) < snprintf(cachePath, sizeof(cachePath), "%s" GLQUAKE_RELPATH "/cacheversion", baseDir)) { 480 if ( (int)(sizeof(cacheDirPath)-1) < snprintf(cacheDirPath, sizeof(cacheDirPath), "%s" GLQUAKE_RELPATH, baseDir)) { 568 const char* basedir = basedir2; local 571 basedir = basedir1; 575 basedir = basedir2; 581 parms.basedir = basedir; 583 CheckGLCacheVersion(basedir);
|
/frameworks/base/services/java/com/android/server/am/ |
ServiceRecord.java | 69 final String baseDir; // where activity source (resources etc) located 208 pw.print(prefix); pw.print("baseDir="); pw.println(baseDir); 209 if (!resDir.equals(baseDir)) { 292 baseDir = sInfo.applicationInfo.sourceDir;
|
ActivityRecord.java | 75 final String baseDir; // where activity source (resources etc) located 144 pw.print(prefix); pw.print("baseDir="); pw.println(baseDir); 145 if (!resDir.equals(baseDir)) { 362 baseDir = aInfo.applicationInfo.sourceDir; 438 baseDir = null; [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
FileTest.java | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20100503.jar | |
/external/guava/guava/src/com/google/common/io/ |
Files.java | 419 File baseDir = new File(System.getProperty("java.io.tmpdir")); 423 File tempDir = new File(baseDir, baseName + counter);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant.jar | |
/prebuilts/tools/common/ant/ |
ant.jar | |
/dalvik/vm/jdwp/ |
JdwpHandler.cpp | 408 char baseDir[2] = "/"; 417 expandBufAddUtf8String(pReply, (const u1*) baseDir); [all...] |