/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/ |
D | run_tests.py | 37 def run_tests(basedir, libdir): argument 104 basedir = shell.native(basedir) 105 strip = len(basedir) - len(_os.path.basename(basedir)) 106 for dirname, dirs, files in shell.walk(basedir): 114 if not _os.path.isdir(_os.path.join(basedir, dirname, 'out')): 129 basedir, libdir = None, None 159 basedir = args[0] 162 return run_tests(basedir, libdir)
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/ |
D | FileMultiReportOutput.java | 28 private final File basedir; field in FileMultiReportOutput 36 public FileMultiReportOutput(final File basedir) { in FileMultiReportOutput() argument 37 this.basedir = basedir; in FileMultiReportOutput() 41 final File file = new File(basedir, path); in createFile()
|
/external/libxml2/ |
D | check-xinclude-test-suite.py | 55 def runTest(test, basedir): argument 76 if basedir != None: 77 URI = basedir + "/" + uri 81 print "Test %s missing: base %s uri %s" % (URI, basedir, uri) 94 if basedir != None: 95 output = basedir + "/" + output 177 basedir = case.prop('basedir') 178 if basedir != None: 179 base = libxml2.buildURI(basedir, base)
|
/external/testng/ant/ |
D | build.properties | 11 root.dir=${basedir} 15 lib.dir=${basedir}/lib 16 lib-supplied.dir=${basedir}/lib-supplied 17 src.dir=${basedir}/src/main/java 18 src.resources.dir=${basedir}/src/main/resources 20 test.dir=${basedir}/src/test/java 23 test.resources.dir=${basedir}/src/test/resources 24 example.dir=${basedir}/examples
|
/external/jacoco/jacoco-maven-plugin.test/it/it-site-failsafe/ |
D | verify.bsh | 15 String projectReportsPage = FileUtils.fileRead( new File( basedir, "target/site/project-reports.htm… 20 File htmlReportFile = new File( basedir, "target/site/jacoco/index.html" ); 25 File xmlReportFile = new File( basedir, "target/site/jacoco/jacoco.xml" ); 30 File csvReportFile = new File( basedir, "target/site/jacoco/jacoco.csv" ); 39 File htmlReportFile = new File( basedir, "target/site/jacoco-it/index.html" ); 44 File xmlReportFile = new File( basedir, "target/site/jacoco-it/jacoco.xml" ); 49 File csvReportFile = new File( basedir, "target/site/jacoco-it/jacoco.csv" );
|
/external/libcap-ng/libcap-ng-0.7/ |
D | py-compile | 44 basedir= 48 --basedir) 52 basedir=$2 66 Usage: py-compile [--help] [--version] [--basedir DIR] [--destdir DIR] FILES..." 105 if [ -z "$basedir" ]; then
|
/external/jacoco/jacoco-maven-plugin.test/it/it-multi-module/ |
D | verify.bsh | 15 String buildLog = FileUtils.fileRead( new File( basedir, "build.log" ) ); 20 File dump2 = new File( basedir, "skip-child/target/jacoco.exec" ); 29 File file = new File( basedir, "child/target/jacoco.exec" ); 35 File xmlReport = new File( basedir, "child/target/site/jacoco/jacoco.xml" ); 41 File csvReport = new File( basedir, "child/target/site/jacoco/jacoco.csv" ); 47 File htmlReport = new File( basedir, "child/target/site/jacoco/index.html" );
|
/external/emma/ |
D | module.dirs.properties | 30 lib.dir.root: ${basedir}/${lib} 38 core.dir.root: ${basedir}/${core} 50 ant.dir.root: ${basedir}/${ant} 61 tools.dir.root: ${basedir}/${tools} 71 test.dir.root: ${basedir}/${test}
|
D | work.dirs.properties | 12 out.dir: ${basedir}/out 15 dist.dir: ${basedir}/dist 18 release.dir: ${basedir}/release
|
/external/rootdev/ |
D | rootdev.c | 90 const char *basedir, dev_t *dev, int depth) { in match_sysfs_device() argument 99 if (!name || !name_len || !basedir || !dev) { in match_sysfs_device() 103 basedir_len = strlen(basedir); in match_sysfs_device() 110 dirp = opendir(basedir); in match_sysfs_device() 114 warn("match_sysfs_device:opendir(%s)", basedir); in match_sysfs_device() 120 working_path_size = pathconf(basedir, _PC_NAME_MAX) + 1; in match_sysfs_device() 162 basedir, entry->d_name); in match_sysfs_device() 182 sprintf(working_path, "%s/%s", basedir, entry->d_name); in match_sysfs_device()
|
/external/jacoco/jacoco-maven-plugin.test/it/it-multiple-executions/ |
D | verify.bsh | 15 File file = new File( basedir, "target/nospace.exec" ); 21 File file = new File( basedir, "target/with space.exec" ); 27 file = new File( basedir, "target/third.exec" ); 34 String buildLog = FileUtils.fileRead( new File( basedir, "build.log" ) );
|
/external/jacoco/jacoco-maven-plugin.test/it/it-customize-agent/ |
D | verify.bsh | 15 String agentOptions = "destfile=" + basedir + File.separator + "target" + File.separator + "coverag… 25 + ",classdumpdir=" + basedir + File.separator + "target" + File.separator + "classdumps"; 29 String buildLog = FileUtils.fileRead( new File( basedir, "build.log" ) ); 34 File file = new File( basedir, "target/coverage.exec" );
|
/external/jacoco/jacoco-maven-plugin.test/it/it-site/ |
D | verify.bsh | 15 String projectReportsPage = FileUtils.fileRead( new File( basedir, "target/site/project-reports.htm… 20 File htmlReportFile = new File( basedir, "target/site/jacoco/index.html" ); 25 File xmlReportFile = new File( basedir, "target/site/jacoco/jacoco.xml" ); 30 File csvReportFile = new File( basedir, "target/site/jacoco/jacoco.csv" );
|
/external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/ |
D | project.py | 48 def appendRel(self, basedir, filename): argument 49 assert os.path.isabs(basedir) 51 n = os.path.abspath(os.path.join(basedir, filename)) 55 def extendRel(self, basedir, iterable): argument 57 assert os.path.isabs(basedir) 59 n = os.path.abspath(os.path.join(basedir, filename))
|
/external/parameter-framework/upstream/test/xml-generator/ |
D | test.py | 88 basedir = os.path.dirname(sys.argv[0]) variable 90 config_dir = os.path.join(basedir, "PFConfig") 91 vector_dir = os.path.join(basedir, "testVector") 97 os.path.join(basedir, "../../schemas"))
|
/external/jacoco/jacoco-maven-plugin.test/it/it-includes-excludes/ |
D | verify.bsh | 17 String buildLog = FileUtils.fileRead( new File( basedir, "build.log" ) ); 22 File databaseUtilReportFile = new File( basedir, "target/site/jacoco/org.project/DatabaseUtil.html"… 28 File testUtilReportFile = new File( basedir, "target/site/jacoco/org.project/TestUtil.html" );
|
/external/jacoco/jacoco-maven-plugin.test/it/it-offline-instrumentation/ |
D | verify.bsh | 15 File file = new File( basedir, "child/target/generated-classes/jacoco/Example.class" ); 19 file = new File( basedir, "child/target/generated-classes/jacoco/DoNotInstrument.class" ); 24 file = new File( basedir, "child/target/coverage.exec" );
|
/external/antlr/antlr-3.4/runtime/Perl5/tools/ |
D | port.pl | 19 my $basedir = '../..'; 59 $basedir, 60 "$basedir/runtime/Java/src",
|
/external/chromium-trace/catapult/perf_insights/perf_insights/ |
D | local_directory_corpus_driver.py | 10 def _GetFilesIn(basedir): argument 12 for dirpath, dirnames, filenames in os.walk(basedir, followlinks=True): 22 rel_f = os.path.relpath(full_f, basedir)
|
/external/snakeyaml/ |
D | mvnw | 200 local basedir=$(pwd) 205 basedir=$wdir 209 echo "${basedir}"
|
/external/clang/docs/ |
D | conf.py | 220 basedir = os.path.dirname(__file__) variable 223 command_guide_path = os.path.join(basedir, command_guide_subpath)
|
/external/libexif/test/nls/ |
D | test-nls.c | 62 const char *basedir = bindtextdomain(GETTEXT_PACKAGE, localedir); in main() local 63 printf("message basedir: %s\n", basedir); in main()
|
/external/llvm/docs/ |
D | conf.py | 219 basedir = os.path.dirname(__file__) variable 222 command_guide_path = os.path.join(basedir, command_guide_subpath)
|
/external/autotest/client/tools/ |
D | crash_handler.py | 134 basedir = os.path.dirname(path) 135 gdb_command_path = os.path.join(basedir, 'gdb_cmd') 165 report_path = os.path.join(basedir, 'report')
|
/external/jacoco/jacoco-maven-plugin.test/it/it-prepend-property/ |
D | verify.bsh | 16 String buildLog = FileUtils.fileRead( new File( basedir, "build.log" ) ); 21 File file = new File( basedir, "target/jacoco.exec" );
|