Searched refs:baseDir (Results 1 - 25 of 75) sorted by relevance

123

/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/input/
H A DDirectoryInputFileGenerator.java29 private final File baseDir; field in class:DirectoryInputFileGenerator
31 public DirectoryInputFileGenerator(File baseDir) { argument
32 if (baseDir == null) {
33 throw new NullPointerException("Null baseDir");
35 this.baseDir = baseDir;
41 collectFiles(baseDir, files);
45 private void collectFiles(File baseDir, List<File> files) { argument
46 if (!baseDir.exists()) {
47 throw new IllegalArgumentException("Not found: " + baseDir
[all...]
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/output/
H A DBasicOutputSourceFileGenerator.java29 private final File baseDir; field in class:BasicOutputSourceFileGenerator
31 public BasicOutputSourceFileGenerator(File baseDir) { argument
32 this.baseDir = baseDir;
40 return new File(new File(baseDir, packageSubDir), sourceFileName);
/external/skia/tools/skdiff/
H A Dskdiff_html.h17 const SkString& baseDir,
H A Dskdiff_html.cpp32 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);
28 print_table_header(SkFILEWStream* stream, const int matchCount, const int colorThreshold, const RecordArray& differences, const SkString &baseDir, const SkString &comparisonDir, bool doOutputDate = false) argument
224 print_diff_page(const int matchCount, const int colorThreshold, const RecordArray& differences, const SkString& baseDir, const SkString& comparisonDir, const SkString& outputDir) argument
H A Dskdiff_main.cpp33 * Returns zero exit code if all images match across baseDir and comparisonDir.
95 printf("%d file pairs %s in baseDir and %s in comparisonDir",
379 const SkString& baseDir,
388 SkASSERT(!baseDir.isEmpty());
394 get_file_list(baseDir, matchSubstrings, nomatchSubstrings, recurseIntoSubdirs, &baseFiles);
417 SkString basePath(baseDir);
424 // in baseDir, but not in comparisonDir
442 // in comparisonDir, but not in baseDir
460 // Found the same filename in both baseDir and comparisonDir.
523 // files only in baseDir
376 create_diff_images(DiffMetricProc dmp, const int colorThreshold, RecordArray* differences, const SkString& baseDir, const SkString& comparisonDir, const SkString& outputDir, const StringArray& matchSubstrings, const StringArray& nomatchSubstrings, bool recurseIntoSubdirs, bool getBounds, bool verbose, DiffSummary* summary) argument
620 SkString baseDir; local
[all...]
/external/skqp/tools/skdiff/
H A Dskdiff_html.h17 const SkString& baseDir,
H A Dskdiff_html.cpp32 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);
28 print_table_header(SkFILEWStream* stream, const int matchCount, const int colorThreshold, const RecordArray& differences, const SkString &baseDir, const SkString &comparisonDir, bool doOutputDate = false) argument
224 print_diff_page(const int matchCount, const int colorThreshold, const RecordArray& differences, const SkString& baseDir, const SkString& comparisonDir, const SkString& outputDir) argument
H A Dskdiff_main.cpp33 * Returns zero exit code if all images match across baseDir and comparisonDir.
95 printf("%d file pairs %s in baseDir and %s in comparisonDir",
379 const SkString& baseDir,
388 SkASSERT(!baseDir.isEmpty());
394 get_file_list(baseDir, matchSubstrings, nomatchSubstrings, recurseIntoSubdirs, &baseFiles);
417 SkString basePath(baseDir);
424 // in baseDir, but not in comparisonDir
442 // in comparisonDir, but not in baseDir
460 // Found the same filename in both baseDir and comparisonDir.
523 // files only in baseDir
376 create_diff_images(DiffMetricProc dmp, const int colorThreshold, RecordArray* differences, const SkString& baseDir, const SkString& comparisonDir, const SkString& outputDir, const StringArray& matchSubstrings, const StringArray& nomatchSubstrings, bool recurseIntoSubdirs, bool getBounds, bool verbose, DiffSummary* summary) argument
620 SkString baseDir; local
[all...]
/external/deqp/external/openglcts/scripts/
H A Dverify_kc_cts_rev.py42 def __init__(self, baseDir, extractDir):
43 self.baseDir = baseDir
47 fullDstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir)
52 def __init__(self, url, revision, baseDir, extractDir = "src"):
53 Source.__init__(self, baseDir, extractDir)
58 fullDstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir)
70 fullDstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir)
/external/proguard/src/proguard/
H A DLineWordReader.java42 File baseDir) throws IOException
44 super(baseDir);
40 LineWordReader(LineNumberReader lineNumberReader, String description, File baseDir) argument
H A DWordReader.java40 private File baseDir; field in class:WordReader
52 protected WordReader(File baseDir) argument
54 this.baseDir = baseDir;
61 public void setBaseDir(File baseDir) argument
65 includeWordReader.setBaseDir(baseDir);
69 this.baseDir = baseDir;
81 baseDir;
H A DArgumentWordReader.java52 public ArgumentWordReader(String[] arguments, File baseDir) argument
54 super(baseDir);
/external/proguard/src/proguard/ant/
H A DConfigurationElement.java45 File baseDir;
73 baseDir = scanner.getBasedir();
85 baseDir = scanner.getBasedir();
100 File configurationFile = new File(baseDir, fileNames[index]);
H A DClassPathElement.java63 File baseDir = getProject().getBaseDir();
85 baseDir = scanner.getBasedir();
122 new ClassPathEntry(file.isAbsolute() ? file : new File(baseDir, fileName),
/external/deqp/external/
H A Dfetch_sources.py47 def __init__(self, baseDir, extractDir):
48 self.baseDir = baseDir
52 fullDstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir)
61 def __init__(self, url, filename, checksum, baseDir, extractDir = "src", postExtract=None):
62 Source.__init__(self, baseDir, extractDir)
83 archiveDir = os.path.join(EXTERNAL_DIR, pkg.baseDir, pkg.archiveDir)
88 archiveFile = os.path.join(EXTERNAL_DIR, pkg.baseDir, pkg.archiveDir, pkg.filename)
95 return os.path.join(EXTERNAL_DIR, pkg.baseDir, pkg.archiveDir, "extracted")
132 dstPath = os.path.join(EXTERNAL_DIR, self.baseDir, sel
[all...]
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
H A DMavenManifestFactory.java37 final FsFile baseDir = manifestFile.getParent();
38 final FsFile resDir = baseDir.join(config.resourceDir());
39 final FsFile assetDir = baseDir.join(config.assetDir());
48 FsFile libDir = baseDir.join(libraryDirName);
98 FsFile baseDir = resDirectory.getParent();
99 final Properties properties = getProperties(baseDir.join("project.properties"));
100 Properties overrideProperties = getProperties(baseDir.join("test-project.properties"));
106 FsFile libraryDir = baseDir.join(lib);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
H A DClassPathsTest.java52 * <BR>&nbsp;&nbsp; - the 'baseDir' directory exists;
68 String baseDir = reply.getNextValueAsString();
69 logWriter.println("baseDir = " + baseDir);
70 assertTrue("baseDir = " + baseDir + " doesn't exists",
71 new File(baseDir).exists());
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/dependency/
H A DPropertiesDependencyResolver.java13 private final FsFile baseDir; field in class:PropertiesDependencyResolver
18 this.baseDir = propertiesFile.getParent();
37 pathFile = new File(baseDir.getPath(), path);
/external/libxml2/xstc/
H A Dfixup-tests.py8 baseDir = os.path.join('msxsdtest', 'Particles') variable
9 filenames = os.listdir(baseDir)
38 schemaFile = os.path.join(baseDir, mainXSD)
64 impFile = os.path.join(baseDir, loc)
/external/deqp/scripts/
H A Dgen_android_mk.py98 baseDir = os.path.join(DEQP_DIR, srcRoot)
99 for root, dirs, files in os.walk(baseDir):
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dtestbase.py67 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): member in class:ANTLRTest
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-shadows/robolectric/src/test/java/org/robolectric/
H A DManifestFactoryTest.java68 String baseDir = "./" + TestUtil.resourcesBaseDir().getPath();
70 baseDir + "/res",
71 baseDir + "/lib1/res",
72 baseDir + "/lib1/../lib3/res",
73 baseDir + "/lib1/../lib2/res");
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/util/
H A DTestUtil.java26 String baseDir = System.getProperty("robolectric-tests.base-dir");
27 return testDirLocation = new File(baseDir, "src/test/resources");
/external/caliper/caliper/src/test/java/com/google/caliper/options/
H A DParsedOptionsTest.java58 private static void makeTestVmTree(File baseDir) throws IOException { argument
59 File bin = new File(baseDir, "testVm/bin");
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/
H A DRobolectricConfig.java40 * 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) { argument
45 this(new File(baseDir, "AndroidManifest.xml"), new File(baseDir, "res"), new File(baseDir, "assets"));

Completed in 2264 milliseconds

123