HomeSort by relevance Sort by last modified time
    Searched refs:rootDir (Results 1 - 25 of 34) sorted by null

1 2

  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
FileSystemResourceLoader.java 34 private final File rootDir;
36 public FileSystemResourceLoader(File rootDir) {
37 this.rootDir = rootDir;
40 public FileSystemResourceLoader(String rootDir) {
41 this(new File(rootDir));
46 File file = new File(rootDir, name);
61 + rootDir + "'");
73 File file = new File(rootDir, filename);
  /external/jsilver/src/com/google/clearsilver/jsilver/precompiler/
PrecompiledTemplateMapFileReader.java 43 private final String rootDir;
53 * rootDir to update template file paths.
54 * @param rootDir optional string to prepend to all non-absolute template filenames. Should be set
57 public PrecompiledTemplateMapFileReader(String filename, String dirPattern, String rootDir) {
60 this.rootDir = rootDir;
65 templateMap = makeTemplateMap(mapFileName, rootDir);
70 private Map<Object, String> makeTemplateMap(String templateMapFile, String rootDir)
80 rootDir);
91 Map<Object, String> templateMap, String templateMapFile, String rootDir) {
    [all...]
  /external/qemu/distrib/sdl-1.2.15/Xcode/
package 48 if ( $?rootDir ) then
49 echo ${prog}: root-dir parameter already set to ${rootDir}.
57 set rootDir = $argv[2]
116 if ( $?rootDir ) then
121 set rootDir = "$argv[1]"
129 if ( ! $?rootDir ) then
158 set pkgTop = ${rootDir:t}
159 set parent = ${rootDir:h}
162 set parent = $rootDir
235 $mkbom $rootDir $pkgBom >& /dev/nul
    [all...]
  /external/webkit/Tools/DumpRenderTree/android/
view_source.php 27 $rootDir = realpath($_SERVER['DOCUMENT_ROOT'] . '..' . DIRECTORY_SEPARATOR . '..');
30 global $rootDir;
31 return $rootDir . DIRECTORY_SEPARATOR . $relPath;
35 global $rootDir;
get_layout_tests_dir_contents.php 30 $rootDir = realpath($_SERVER['DOCUMENT_ROOT'] . '..' . DIRECTORY_SEPARATOR . '..');
33 global $rootDir;
34 return $rootDir . DIRECTORY_SEPARATOR . $relPath;
75 global $rootDir;
99 $relPath = substr(realpath(getAbsolutePath($path)), strlen($rootDir) + 1);
  /external/fsck_msdos/
ext.h 53 extern struct dosDirEntry *rootDir;
dir.c 217 struct dosDirEntry *rootDir;
235 || !(rootDir = newDosDirEntry())) {
239 memset(rootDir, 0, sizeof *rootDir);
267 rootDir->head = boot->RootCl;
287 for (d = rootDir; d; d = nd) {
296 rootDir = lostDir = NULL;
982 mod = readDosDirSection(dosfs, boot, fat, rootDir);
1028 for (lostDir = rootDir->child; lostDir; lostDir = lostDir->next) {
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/build/
CtsBuildHelper.java 47 * @param rootDir the parent folder that contains the "android-cts" directory and all its
50 public CtsBuildHelper(File rootDir) {
51 mRootDir = rootDir;
  /external/antlr/antlr-3.4/runtime/Python/
setup.py 194 rootDir = os.path.abspath(
201 os.path.join(rootDir, 'tool', 'target', 'classes'),
202 os.path.join(rootDir, 'runtime', 'Java', 'target', 'classes')
206 os.path.join(rootDir, 'archive',
211 os.path.join(rootDir, 'lib', 'antlr-2.7.7.jar'),
212 os.path.join(rootDir, 'lib', 'stringtemplate-3.2.1.jar'),
213 os.path.join(rootDir, 'lib', 'ST-4.0.2.jar'),
214 os.path.join(rootDir, 'lib', 'junit-4.2.jar')
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
SdkSelectionPage.java 270 * @param rootDir The "samples" root directory. Doesn't change during recursion.
271 * @param currDir The directory being scanned. Caller must initially set it to {@code rootDir}.
280 File rootDir,
291 findSampleManifestInDir(f, rootDir, extraName, targetVersion, samplesPaths);
300 findSamplesManifests(rootDir, f, extraName, targetVersion, samplesPaths);
308 File rootDir,
335 String name = getSampleDisplayName(extraName, rootDir, sampleDir);
351 private String getSampleDisplayName(String extraName, File rootDir, File sampleDir) {
353 if (!rootDir.equals(sampleDir)) {
355 int n = rootDir.getPath().length()
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
FileCache.java 74 public static void deleteFiles(Context context, File rootDir, String dbName) {
77 File[] files = rootDir.listFiles();
79 for (File file : rootDir.listFiles()) {
89 public FileCache(Context context, File rootDir, String dbName, long capacity) {
90 mRootDir = Utils.checkNotNull(rootDir);
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaScene.java 74 String rootDir = names[0].substring(0, names[0].lastIndexOf('/') + 1);
93 sceneSource.init(is, rootDir);
ColladaParser.java 74 public void init(InputStream is, String rootDir) {
79 mRootDir = rootDir;
  /frameworks/base/include/androidfw/
AssetManager.h 237 String8 createPathNameLocked(const asset_path& path, const char* rootDir);
247 const asset_path& path, const char* rootDir, const char* dirName);
250 const asset_path& path, const char* rootDir, const char* dirName);
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
LintDriver.java 532 @NonNull File rootDir) {
533 fileToProject.put(file, mClient.getProject(projectDir, rootDir));
560 File rootDir = sharedRoot;
561 if (rootDir == null) {
562 rootDir = file;
564 rootDir = file.getParentFile();
565 if (rootDir == null) {
566 rootDir = file;
581 registerProjectFile(fileToProject, file, file, rootDir);
599 addProjects(file, fileToProject, rootDir);
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 222 String rootDir = new File(appInfo.dataDir).getCanonicalPath();
243 fullBackupFileTree(packageName, FullBackup.ROOT_TREE_TOKEN, rootDir, filterSet, data);
246 filterSet.add(rootDir);
  /frameworks/base/libs/androidfw/
AssetManager.cpp 1016 * Create a path to a loose asset (asset-base/app/rootDir).
1018 String8 AssetManager::createPathNameLocked(const asset_path& ap, const char* rootDir)
1021 if (rootDir != NULL) path.appendPath(rootDir);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
ScenarioData.java 50 private File rootDir;
69 this.rootDir = outputDir;
178 final File outputDir = new File(this.rootDir, configName);
  /tools/build/gradle/wrapper/
gradle-wrapper.jar 
  /frameworks/base/core/jni/
AndroidRuntime.cpp 824 const char* rootDir = getenv("ANDROID_ROOT");
825 if (rootDir == NULL) {
826 rootDir = "/system";
831 setenv("ANDROID_ROOT", rootDir, 1);
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileTest.java     [all...]
  /external/yaffs2/yaffs2/
yaffs_guts.h 714 yaffs_Object *rootDir;
yaffs_guts.c 339 return dev->rootDir;
    [all...]
  /external/llvm/lib/Support/
PathV2.cpp 582 bool rootDir = has_root_directory(p),
589 return rootDir && rootName;
  /external/yaffs2/yaffs2/direct/
yaffsfs.c 198 return dev->rootDir;

Completed in 3907 milliseconds

1 2