Searched refs:script_path (Results 1 – 6 of 6) sorted by relevance
/external/v8/tools/push-to-trunk/ |
D | script_test.py | 39 script_path = os.path.dirname(os.path.abspath(__file__)) 40 cov = coverage.coverage(include=([os.path.join(script_path, '*.py')]))
|
/external/linux-tools-perf/src/tools/perf/ |
D | builtin-script.c | 999 char script_path[MAXPATHLEN]; in list_available_scripts() local 1022 snprintf(script_path, MAXPATHLEN, "%s/%s", in list_available_scripts() 1024 read_script_info(desc, script_path); in list_available_scripts() 1176 char script_path[MAXPATHLEN]; in get_script_path() local 1200 snprintf(script_path, MAXPATHLEN, "%s/%s", in get_script_path() 1202 return strdup(script_path); in get_script_path() 1213 static bool is_top_script(const char *script_path) in is_top_script() argument 1215 return ends_with(script_path, "top") == NULL ? false : true; in is_top_script() 1218 static int has_required_arg(char *script_path) in has_required_arg() argument 1226 if (read_script_info(desc, script_path)) in has_required_arg() [all …]
|
/external/markdown/ |
D | setup.py | 17 script_path = os.path.join(script_dir, 'markdown') 18 bat_str = '@"%s" "%s" %%*' % (sys.executable, script_path)
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/ |
D | resource_loader.py | 68 for script_path in self.source_paths: 69 absolute_path = os.path.join(script_path, relative_path) 71 return resource_module.Resource(script_path, absolute_path, binary)
|
D | html_module_unittest.py | 62 for script_path in self._source_paths: 63 absolute_path = os.path.join(script_path, relative_path) 65 return ResourceWithFakeContents(script_path, absolute_path,
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/ |
D | fixture.py | 1338 script_path=None, argument 1371 if script_path is None: 1373 script_path = environ.get('PATH', '').split(';') 1375 script_path = environ.get('PATH', '').split(':') 1376 self.script_path = script_path 1449 if self.script_path is None: 1455 for path in self.script_path: 1461 % (script_name, ':'.join(self.script_path)))
|