/libcore/dalvik/src/main/java/dalvik/system/ |
TemporaryDirectory.java | 30 public static void setUpDirectory(String baseDir) { 36 public static synchronized void setUpDirectory(File baseDir) {
|
/external/chromium_org/third_party/skia/tools/ |
skdiff_html.h | 17 const SkString& baseDir,
|
skdiff_html.cpp | 32 const SkString &baseDir, 71 stream->writeText("</th>\n<th>baseDir: "); 72 stream->writeText(baseDir.c_str()); 227 const SkString& baseDir, 231 SkASSERT(!baseDir.isEmpty()); 284 baseDir, comparisonDir);
|
skdiff_main.cpp | 35 * Returns zero exit code if all images match across baseDir and comparisonDir. 71 printf("%d file pairs %s in baseDir and %s in comparisonDir", 333 const SkString& baseDir, 342 SkASSERT(!baseDir.isEmpty()); 348 get_file_list(baseDir, matchSubstrings, nomatchSubstrings, recurseIntoSubdirs, &baseFiles); 367 SkString basePath(baseDir); 374 // in baseDir, but not in comparisonDir 392 // in comparisonDir, but not in baseDir 410 // Found the same filename in both baseDir and comparisonDir. 474 // files only in baseDir [all...] |
/external/lldb/test/attic/ |
dotest.pl | 18 my $baseDir = abs_path("$scriptDir/.."); 19 my $pluginDir = "$baseDir/test/plugins"; 22 my $dbgPath = "$baseDir/build/Debug/LLDB.framework/Resources/Python"; 23 my $relPath = "$baseDir/build/Release/LLDB.framework/Resources/Python";
|
/external/skia/tools/ |
skdiff_html.h | 17 const SkString& baseDir,
|
skdiff_html.cpp | 32 const SkString &baseDir, 71 stream->writeText("</th>\n<th>baseDir: "); 72 stream->writeText(baseDir.c_str()); 227 const SkString& baseDir, 231 SkASSERT(!baseDir.isEmpty()); 284 baseDir, comparisonDir);
|
skdiff_main.cpp | 35 * Returns zero exit code if all images match across baseDir and comparisonDir. 71 printf("%d file pairs %s in baseDir and %s in comparisonDir", 333 const SkString& baseDir, 342 SkASSERT(!baseDir.isEmpty()); 348 get_file_list(baseDir, matchSubstrings, nomatchSubstrings, recurseIntoSubdirs, &baseFiles); 367 SkString basePath(baseDir); 374 // in baseDir, but not in comparisonDir 392 // in comparisonDir, but not in baseDir 410 // Found the same filename in both baseDir and comparisonDir. 474 // files only in baseDir [all...] |
/external/proguard/src/proguard/ |
LineWordReader.java | 42 File baseDir) throws IOException 44 super(baseDir);
|
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 | 52 public ArgumentWordReader(String[] arguments, File baseDir) 54 super(baseDir);
|
ConfigurationWriter.java | 47 private File baseDir; 57 baseDir = configurationFile.getParentFile(); 604 if (baseDir != null) 606 String baseDirName = baseDir.getAbsolutePath() + File.separator;
|
/external/proguard/src/proguard/ant/ |
ConfigurationElement.java | 46 File baseDir; 74 baseDir = scanner.getBasedir(); 86 baseDir = scanner.getBasedir(); 101 File configurationFile = new File(baseDir, fileNames[index]);
|
ClassPathElement.java | 61 File baseDir = getProject().getBaseDir(); 83 baseDir = scanner.getBasedir(); 120 new ClassPathEntry(file.isAbsolute() ? file : new File(baseDir, fileName),
|
/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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
ClassPathsTest.java | 51 * <BR> - the 'baseDir' directory exists; 67 String baseDir = reply.getNextValueAsString(); 68 logWriter.println("baseDir = " + baseDir); 69 assertTrue("baseDir = " + baseDir + " doesn't exists", 70 new File(baseDir).exists());
|
/external/deqp/framework/delibs/scripts/ |
git-check.py | 42 baseDir = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), "../..")) 50 subDir = os.path.join(baseDir, gitDir) 68 print "Searching in '%s'" % baseDir
|
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
AccessibilityNodeInfoDumper.java | 54 File baseDir = new File(Environment.getDataDirectory(), "local"); 55 if (!baseDir.exists()) { 56 baseDir.mkdir(); 57 baseDir.setExecutable(true, false); 58 baseDir.setWritable(true, false); 59 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...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/ |
RobolectricConfig.java | 40 * The manifest will be baseDir/AndroidManifest.xml, res will be baseDir/res, and assets in baseDir/assets. 42 * @param baseDir the base directory of your Android project 44 public RobolectricConfig(final File baseDir) { 45 this(new File(baseDir, "AndroidManifest.xml"), new File(baseDir, "res"), new File(baseDir, "assets"));
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
commit-log-editor | 88 my $baseDir = baseProductDir(); 96 my $builtEditorApplication = "$baseDir/Release/Commit Log Editor.app/Contents/MacOS/Commit Log Editor"; 103 my $builtEditorApplication = "$baseDir/Debug/Commit Log Editor.app/Contents/MacOS/Commit Log Editor";
|
/hardware/ti/omap4-aah/security/tf_daemon/ |
delegation_client.c | 447 LogInfo("-storageDir <baseDir> Set the directory where the data will be stored; this directory"); [all...] |
/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...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
FileTest.java | [all...] |
/external/chromium_org/third_party/libxslt/win32/ |
configure.js | 11 var baseDir = ".."; 12 var srcDirXslt = baseDir + "\\libxslt"; 13 var srcDirExslt = baseDir + "\\libexslt"; 14 var srcDirUtils = baseDir + "\\xsltproc"; 22 var configFile = baseDir + "\\configure.in";
|