/external/clang/ |
D | build.py | 195 install_dir = os.path.join(install_host_dir, package_name) 202 install_toolchain(build_dir, install_dir, host, True) 204 version_file_path = os.path.join(install_dir, 'AndroidVersion.txt') 218 def install_minimal_toolchain(build_dir, install_dir, host, strip): argument 219 install_built_host_files(build_dir, install_dir, host, strip, minimal=True) 220 install_headers(build_dir, install_dir, host) 221 install_sanitizers(build_dir, install_dir, host) 224 def install_toolchain(build_dir, install_dir, host, strip): argument 225 install_built_host_files(build_dir, install_dir, host, strip) 226 install_compiler_wrapper(install_dir, host) [all …]
|
D | update-prebuilts.py | 130 def extract_package(package, install_dir): argument 131 cmd = ['tar', 'xf', package, '-C', install_dir]
|
/external/autotest/utils/ |
D | build_externals.py | 62 install_dir = os.path.join(top_of_tree, INSTALL_DIR) 67 if install_dir not in sys.path: 68 sys.path.insert(0, install_dir) 71 if install_dir+':' not in env_python_path: 73 install_dir, env_python_path]) 76 package_dir, install_dir, set(options.names_to_check)) 78 fetched_packages, install_dir, options.use_chromite_master) 85 logging.info('compiling .py files in %s to .pyc', install_dir) 86 compileall.compile_dir(install_dir, quiet=True) 89 external_packages.system("chmod -R a+rX '%s'" % install_dir) [all …]
|
D | external_packages.py | 134 def is_needed(self, install_dir): argument 165 if (not module.__file__.startswith(install_dir) and 169 self.module_name, module.__file__, install_dir, 170 install_dir) 195 def _build_and_install(self, install_dir): argument 200 def _build_and_install_current_dir(self, install_dir): argument 208 def build_and_install(self, install_dir): argument 218 return self._build_and_install(install_dir) 237 def _build_and_install_current_dir_setup_py(self, install_dir): argument 242 return self._install_from_egg(install_dir, egg_path) [all …]
|
D | compile_gwt_clients.py | 65 install_dir = os.path.join(_DEFAULT_INSTALL_DIR, project_client) 74 if os.path.isdir(install_dir): 75 os.rename(install_dir, old_install_dir) 77 os.rename(tmp_client_dir, install_dir) 82 shutil.rmtree(install_dir) 83 shutil.copytree(old_install_dir, install_dir)
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/src/ |
D | install.py | 17 install_dir = os.path.join( 20 if os.path.exists(install_dir): 24 os.mkdir(install_dir) 25 os.mkdir(os.path.join(install_dir, "parent")) 26 os.mkdir(os.path.join(install_dir, "child")) 38 "--install-lib=%s/%s"%(install_dir, subdir),
|
/external/linux-kselftest/tools/testing/selftests/ |
D | kselftest_install.sh | 29 install_dir=$install_loc/kselftest 32 mkdir -p $install_dir 34 INSTALL_PATH=$install_dir make install
|
D | gen_kselftest_tar.sh | 43 install_dir=./kselftest 48 tar $copts kselftest${ext} $install_dir
|
/external/autotest/site_utils/autoupdate/ |
D | import_common.py | 26 install_dir = os.path.join(tot, build_externals.INSTALL_DIR) 28 [package_class], install_dir)
|
/external/autotest/scheduler/ |
D | site_monitor_db.py | 18 def parser_path(install_dir): argument 23 return os.path.join(install_dir, 'tko', 'site_parse')
|
/external/fmtlib/support/ |
D | travis-build.py | 82 install_dir = os.path.join(fmt_dir, "_install") variable 89 '-DCMAKE_INSTALL_PREFIX=' + install_dir, '-DCMAKE_BUILD_TYPE=' + build
|
/external/autotest/client/common_lib/ |
D | packages.py | 380 def install_pkg(self, name, pkg_type, fetch_dir, install_dir, argument 418 if (self.exists(install_dir, target='dir') and 419 not self.untar_required(fetch_path, install_dir)): 426 self._run_command('rm -rf %s' % install_dir) 427 self._run_command('mkdir -p %s' % install_dir) 429 self.untar_pkg(fetch_path, install_dir)
|
/external/markdown/ |
D | setup.py | 19 bat_path = os.path.join(self.install_dir, 'markdown.bat')
|
/external/mesa3d/scons/ |
D | gallium.py | 61 install_dir = os.path.join(env.Dir('#.').srcnode().abspath, env['build_dir']) 70 target_dir = os.path.join(install_dir, 'lib')
|
/external/autotest/server/ |
D | autotest_unittest.py | 269 install_dir = autotest.Autotest.get_install_dir(self.host) 270 self.assertEquals(install_dir, '/another/path')
|
D | autotest.py | 137 install_dir = cls.get_installed_autodir(host) 139 install_dir = cls._find_installable_dir(host) 142 return host.get_tmp_dir(parent=install_dir) 143 return install_dir
|
/external/autotest/client/bin/ |
D | job.py | 405 def install_pkg(self, name, pkg_type, install_dir): argument 416 self.pkgmgr.install_pkg(name, pkg_type, self.pkgdir, install_dir)
|
/external/llvm/cmake/modules/ |
D | AddLLVM.cmake | 549 set(install_dir lib${LLVM_LIBDIR_SUFFIX}) variable 553 set(install_dir bin) variable 563 ${install_type} DESTINATION ${install_dir}
|