/external/chromium-trace/catapult/tracing/third_party/gl-matrix/tasks/support/ |
D | gl-matrix.rb | 27 File.expand_path GLMatrix.base_path.join('spec/jasmine.yml') 51 env = Sprockets::Environment.new base_path 52 env.append_path base_path.join('src') 56 def base_path method 64 dest = base_path.join dest 72 puts "compiled #{source} to #{dest.relative_path_from base_path}" 81 puts "minified #{source} to #{dest.relative_path_from base_path}"
|
/external/chromium-trace/catapult/tracing/third_party/gl-matrix/tasks/test/ |
D | coverage.rake | 15 unless File.exist?(base_path.join('node_modules')) 35 rm_rf base_path.join('covershot') 36 rm_rf base_path.join('tmp') 41 coverage_path = base_path.join('tmp/coverage') 55 input = base_path.join('tmp/coverage/lib').to_s 56 output = base_path.join('tmp/coverage/lib-cov').to_s 65 coverage_path = base_path.join('tmp/coverage') 100 jasmine_node = base_path.join('node_modules/jasmine-node/bin/jasmine-node').to_s 101 spec = base_path.join('spec').to_s 109 covershot = base_path.join('node_modules/covershot/bin/covershot').to_s [all …]
|
/external/chromium-trace/catapult/third_party/Paste/paste/debug/ |
D | fsdiff.py | 60 (self.before.base_path, 97 def __init__(self, base_path, files=None, ignore_wildcards=(), argument 99 self.base_path = base_path 131 full = os.path.join(self.base_path, path) 135 result[path] = Dir(self.base_path, path) 142 result[path] = File(self.base_path, path) 146 self.__class__.__name__, self.base_path, 199 return self.__class__(base_path=self.base_path, 231 def __init__(self, base_path, path): argument 232 self.base_path = base_path [all …]
|
/external/chromium-trace/catapult/third_party/Paste/paste/evalexception/ |
D | middleware.py | 255 def make_view_url(self, environ, base_path, count): argument 256 return base_path + '/_debug/view/%s' % count 297 base_path = request.construct_url(environ, with_path_info=False, 328 view_uri = self.make_view_url(environ, base_path, count) 341 debug_info = DebugInfo(count, exc_info, exc_data, base_path, 372 def __init__(self, counter, exc_info, exc_data, base_path, argument 376 self.base_path = base_path 415 html = format_eval_html(self.exc_data, self.base_path, self.counter) 428 base_path = self.base_path + '/_debug' 438 % (base_path, base_path, base_path, self.counter)) [all …]
|
/external/libchrome/base/files/ |
D | scoped_temp_dir_unittest.cc | 67 FilePath base_path; in TEST() local 69 &base_path)); in TEST() 74 EXPECT_TRUE(dir.CreateUniqueTempDirUnderPath(base_path)); in TEST() 77 EXPECT_TRUE(base_path.IsParent(test_path)); in TEST() 78 EXPECT_TRUE(test_path.value().find(base_path.value()) != std::string::npos); in TEST() 81 base::DeleteFile(base_path, true); in TEST()
|
D | scoped_temp_dir.cc | 32 bool ScopedTempDir::CreateUniqueTempDirUnderPath(const FilePath& base_path) { in CreateUniqueTempDirUnderPath() argument 37 if (!base::CreateDirectory(base_path)) in CreateUniqueTempDirUnderPath() 41 if (!base::CreateTemporaryDirInDir(base_path, in CreateUniqueTempDirUnderPath()
|
/external/autotest/client/ |
D | setup_modules.py | 108 def setup(base_path, root_module_name=""): argument 126 base_path = os.path.abspath(os.path.join(base_path, '..')) 129 _import_children_into_module(root_module_name, base_path) 137 sys.path.insert(0, os.path.join(base_path, "site-packages"))
|
/external/jsoncpp/test/ |
D | pyjsontestrunner.py | 13 base_path = os.path.splitext(input_path)[0] variable 14 actual_path = base_path + '.actual' 15 rewrite_path = base_path + '.rewrite' 16 rewrite_actual_path = base_path + '.actual-rewrite'
|
D | runjsontests.py | 77 base_path = os.path.splitext(input_path)[0] 78 actual_output = safeReadFile( base_path + '.actual' ) 79 actual_rewrite_output = safeReadFile( base_path + '.actual-rewrite' ) 80 file(base_path + '.process-output','wt').write( process_output )
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
D | certutils_test.py | 92 base_path = os.path.join(self._temp_dir, 'testCA') 93 ca_cert_path = base_path + '.pem' 94 cert_path = base_path + '-cert.pem' 95 ca_cert_android = base_path + '-cert.cer' 96 ca_cert_windows = base_path + '-cert.p12'
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
D | control.py | 44 base_path=None, argument 100 if base_path: 101 mr_params["base_path"] = base_path
|
D | base_handler.py | 186 def base_path(self): member in JsonHandler 199 base_path = path[:path.rfind("/")] 200 if not base_path.endswith("/command"): 203 return base_path[:base_path.rfind("/")]
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
D | fixture.py | 1337 def __init__(self, base_path, template_path=None, argument 1366 self.base_path = base_path 1378 cwd = base_path 1382 elif not os.path.exists(base_path): 1383 os.makedirs(base_path) 1465 for fn in os.listdir(self.base_path): 1479 full = os.path.join(self.base_path, path) 1481 result[path] = FoundDir(self.base_path, path) 1488 result[path] = FoundFile(self.base_path, path) 1494 if os.path.exists(self.base_path): [all …]
|
D | recursive.py | 260 base_path = self.original_environ.get('SCRIPT_NAME') 262 assert path.startswith(base_path), ( 264 "path %r (not %r)" % (base_path, path)) 265 path = path[len(base_path)+1:]
|
D | urlmap.py | 237 def __init__(self, map, base_paste_url, base_path, builder): argument 240 self.base_path = base_path 245 app_fn = os.path.join(self.base_path, app)
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | dependency_manager_util.py | 32 base_path = ResolvePath(os.getcwd()) + os.path.sep 34 if not ResolvePath(os.path.join(base_path, member)).startswith(base_path):
|
D | base_config.py | 128 base_path = os.path.dirname(self._config_path) 141 paths.append(os.path.abspath(os.path.join(base_path, path))) 151 os.path.join(base_path, download_path))
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/ |
D | support.py | 9 base_path = os.path.split(__file__)[0] variable 11 test_dir = os.path.join(base_path, 'testdata') 12 sys.path.insert(0, os.path.abspath(os.path.join(base_path, 17 del base_path
|
/external/autotest/site_utils/ |
D | lxc.py | 781 base_path = os.path.join(self.container_path, name) 791 utils.run('sudo chown -R root "%s"' % base_path) 792 utils.run('sudo chgrp -R root "%s"' % base_path) 803 path_to_cleanup = [tar_path, base_path] 813 utils.run('sudo chown -R root "%s"' % base_path) 814 utils.run('sudo chgrp -R root "%s"' % base_path) 817 config_path = os.path.join(base_path, 'config')
|
/external/tlsdate/src/ |
D | tlsdated.c | 131 opts->base_path = kCacheDir; in set_conf_defaults() 181 opts->base_path = optarg; in parse_argv() 351 opts->base_path = strdup (e->value); in load_conf() 352 if (!opts->base_path) in load_conf() 405 "%s/timestamp", opts->base_path); in check_conf() 407 fatal ("supplied base path is too long: '%s'", opts->base_path); in check_conf()
|
/external/chromium-trace/catapult/third_party/pipeline/pipeline/ |
D | pipeline.py | 508 def base_path(self): member in Pipeline 511 return self._context.base_path 616 base_path='/_ah/pipeline', argument 660 context = _PipelineContext('', queue_name, base_path) 675 def start_test(self, idempotence_key=None, base_path='', **kwargs): argument 686 context = _PipelineContext('', 'default', base_path) 852 return '%s/callback?%s' % (self.base_path, params) 873 kwargs['url'] = self.base_path + '/callback' 900 'base_path': '%s.appspot.com%s' % (app_id, self.base_path), 954 url=self.base_path + '/cleanup', [all …]
|
/external/chromium-trace/catapult/catapult_build/ |
D | js_checks.py | 68 base_path = os.path.abspath(os.path.join( 71 base_path, 'third_party', 'closure_linter') 73 base_path, 'third_party', 'python_gflags')
|
/external/autotest/client/tests/netpipe/ |
D | netpipe.py | 25 base_path = os.path.join(self.srcdir, 'NPtcp -h') 26 self.client_path = '%s %%s -o %s %%s' % (base_path, self.NP_FILE)
|
/external/chromium-trace/catapult/tracing/third_party/gl-matrix/tasks/support/gl-matrix/ |
D | version.rb | 23 MAJOR, MINOR, PATCH, REL = *File.read(base_path.join 'VERSION').split(".")
|
/external/chromium-trace/catapult/third_party/WebOb/docs/comment-example-code/ |
D | example.py | 83 def submit_form(self, base_path, req): argument 97 ''' % (base_path, html_escape(req.url))
|