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

1 2 3 4 5 6 7 8 91011>>

  /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/nanohttpd/webserver/src/main/java/fi/iki/elonen/
WebServerPlugin.java 16 boolean canServeUri(String uri, File rootDir);
  /external/chromium_org/third_party/angle/tests/gles_conformance_tests/
generate_gles_conformance_tests.py 40 def GenerateTestList(sourceFile, rootDir):
46 tests += GenerateTestList(os.path.join(os.path.dirname(sourceFile), line), rootDir)
48 tests.append(os.path.relpath(os.path.realpath(sourceFile), rootDir).replace("\\", "/"))
  /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) {
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatFileSystem.java 45 private final FatLfnDirectory rootDir;
105 this.rootDir = new FatLfnDirectory(rootDirStore, fat, isReadOnly());
203 rootDir.flush();
216 return rootDir;
SuperFloppyFormatter.java 248 final FatLfnDirectory rootDir =
251 rootDir.flush();
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/build/
CtsBuildHelper.java 42 * @param rootDir the parent folder that contains the "android-cts" directory and all its
45 public CtsBuildHelper(File rootDir) {
46 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')
  /external/chromium_org/third_party/skia/gm/
gm_expectations.h 189 * image files found within rootDir.
191 * rootDir: directory under which to look for image files
194 explicit IndividualImageExpectationsSource(const char *rootDir) : fRootDir(rootDir) {}
  /external/nanohttpd/webserver/markdown-plugin/src/main/java/fi/iki/elonen/
MarkdownWebServerPlugin.java 26 @Override public boolean canServeUri(String uri, File rootDir) {
27 File f = new File(rootDir, uri);
  /external/skia/gm/
gm_expectations.h 189 * image files found within rootDir.
191 * rootDir: directory under which to look for image files
194 explicit IndividualImageExpectationsSource(const char *rootDir) : fRootDir(rootDir) {}
  /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/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
ObbBackupService.java 128 ArrayList<File> allFileContents(File rootDir) {
132 dirs.add(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);
  /frameworks/base/include/androidfw/
AssetManager.h 252 String8 createPathNameLocked(const asset_path& path, const char* rootDir);
262 const asset_path& path, const char* rootDir, const char* dirName);
265 const asset_path& path, const char* rootDir, const char* dirName);
  /cts/hostsidetests/aadb/src/com/android/cts/aadb/
TestDeviceFuncTest.java 311 File rootDir = FileUtil.createTempDir("tmp");
314 File tmpDir = FileUtil.createTempDir("tmp", rootDir);
321 assertTrue(mTestDevice.pushDir(rootDir, externalStorePath));
329 FileUtil.recursiveDelete(rootDir);
  /frameworks/base/libs/androidfw/
AssetManager.cpp     [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);
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 283 String rootDir = new File(appInfo.dataDir).getCanonicalPath();
304 fullBackupFileTree(packageName, FullBackup.ROOT_TREE_TOKEN, rootDir, filterSet, data);
307 filterSet.add(rootDir);
    [all...]
  /developers/build/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/androidtv/leanback/gradle/wrapper/
gradle-wrapper.jar 

Completed in 960 milliseconds

1 2 3 4 5 6 7 8 91011>>