HomeSort by relevance Sort by last modified time
    Searched refs:install_dir (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/linux-kselftest/tools/testing/selftests/
kselftest_install.sh 27 install_dir=$install_loc/kselftest
30 mkdir -p $install_dir
32 INSTALL_PATH=$install_dir make install
gen_kselftest_tar.sh 41 install_dir=./kselftest
46 tar $copts kselftest${ext} $install_dir
  /external/autotest/utils/
build_externals.py 33 INSTALL_DIR = 'site-packages'
65 install_dir = os.path.join(top_of_tree, INSTALL_DIR)
67 # Make sure the install_dir is in our python module search path
70 if install_dir not in sys.path:
71 sys.path.insert(0, install_dir)
74 if install_dir+':' not in env_python_path:
76 install_dir, env_python_path])
79 package_dir, install_dir, set(options.names_to_check))
81 fetched_packages, install_dir, options.use_chromite_master
    [all...]
external_packages.py 136 def is_needed(self, install_dir):
151 4. install_dir: If the module exists in a different directory, e.g.,
153 installed in install_dir.
155 @param install_dir: install directory.
171 and not module.__file__.startswith(install_dir)):
175 and not module.__path__[0].startswith(install_dir)):
183 self.module_name, path, install_dir)
208 def _build_and_install(self, install_dir):
213 def _build_and_install_current_dir(self, install_dir):
221 def build_and_install(self, install_dir)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
install_headers.py 25 self.install_dir = None
31 ('install_headers', 'install_dir'),
40 self.mkpath(self.install_dir)
42 (out, _) = self.copy_file(header, self.install_dir)
install_data.py 30 self.install_dir = None
39 ('install_data', 'install_dir'),
45 self.mkpath(self.install_dir)
53 (f, self.install_dir))
54 (out, _) = self.copy_file(f, self.install_dir)
60 dir = os.path.join(self.install_dir, dir)
install_egg_info.py 20 self.install_dir = None
23 self.set_undefined_options('install_lib',('install_dir','install_dir'))
29 self.target = os.path.join(self.install_dir, basename)
38 elif not os.path.isdir(self.install_dir):
39 self.execute(os.makedirs, (self.install_dir,),
40 "Creating "+self.install_dir)
install_scripts.py 30 self.install_dir = None
38 ('install_scripts', 'install_dir'),
46 self.outfiles = self.copy_tree(self.build_dir, self.install_dir)
  /external/python/cpython2/Lib/distutils/command/
install_headers.py 25 self.install_dir = None
31 ('install_headers', 'install_dir'),
40 self.mkpath(self.install_dir)
42 (out, _) = self.copy_file(header, self.install_dir)
install_data.py 30 self.install_dir = None
39 ('install_data', 'install_dir'),
45 self.mkpath(self.install_dir)
53 (f, self.install_dir))
54 (out, _) = self.copy_file(f, self.install_dir)
60 dir = os.path.join(self.install_dir, dir)
install_egg_info.py 20 self.install_dir = None
23 self.set_undefined_options('install_lib',('install_dir','install_dir'))
29 self.target = os.path.join(self.install_dir, basename)
38 elif not os.path.isdir(self.install_dir):
39 self.execute(os.makedirs, (self.install_dir,),
40 "Creating "+self.install_dir)
install_scripts.py 30 self.install_dir = None
38 ('install_scripts', 'install_dir'),
46 self.outfiles = self.copy_tree(self.build_dir, self.install_dir)
  /external/python/cpython3/Lib/distutils/command/
install_headers.py 23 self.install_dir = None
29 ('install_headers', 'install_dir'),
38 self.mkpath(self.install_dir)
40 (out, _) = self.copy_file(header, self.install_dir)
install_data.py 28 self.install_dir = None
37 ('install_data', 'install_dir'),
43 self.mkpath(self.install_dir)
51 (f, self.install_dir))
52 (out, _) = self.copy_file(f, self.install_dir)
58 dir = os.path.join(self.install_dir, dir)
install_egg_info.py 20 self.install_dir = None
23 self.set_undefined_options('install_lib',('install_dir','install_dir'))
29 self.target = os.path.join(self.install_dir, basename)
38 elif not os.path.isdir(self.install_dir):
39 self.execute(os.makedirs, (self.install_dir,),
40 "Creating "+self.install_dir)
install_scripts.py 28 self.install_dir = None
36 ('install_scripts', 'install_dir'),
44 self.outfiles = self.copy_tree(self.build_dir, self.install_dir)
  /external/clang/
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):
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):
225 install_built_host_files(build_dir, install_dir, host, strip)
226 install_compiler_wrapper(install_dir, host
    [all...]
  /development/vndk/snapshot/
update.py 46 def remove_old_snapshot(install_dir):
47 logging.info('Removing any old files in {}'.format(install_dir))
48 for file in glob.glob('{}/*'.format(install_dir)):
59 def install_snapshot(branch, build, local_dir, install_dir, temp_artifact_dir):
69 install_dir: string, directory to install VNDK snapshot
88 os.chdir(install_dir)
96 utils.check_call(['unzip', '-qn', artifact, '-d', install_dir])
99 def gather_notice_files(install_dir):
106 for arch in utils.get_snapshot_archs(install_dir):
241 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version)
    [all...]
check_gpl_license.py 39 def __init__(self, install_dir, android_build_top, temp_artifact_dir,
44 install_dir: string, absolute path to the prebuilts/vndk/v{version}
54 self._install_dir = install_dir
58 self._notice_files_dir = os.path.join(install_dir,
264 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version))
266 if not os.path.isdir(install_dir):
269 .format(install_dir))
281 license_checker = GPLChecker(install_dir, ANDROID_BUILD_TOP,
  /external/tensorflow/tensorflow/tools/pip_package/
setup.py 160 self.install_dir = None
166 ('install_headers', 'install_dir'),
170 install_dir = os.path.join(self.install_dir, os.path.dirname(header))
173 install_dir = re.sub('/google/protobuf_archive/src', '', install_dir)
185 if location in install_dir:
186 extra_dir = install_dir.replace(location, '')
191 if not os.path.exists(install_dir):
192 self.mkpath(install_dir)
    [all...]
  /external/python/setuptools/setuptools/tests/
test_integration.py 42 install_dir = tmpdir.mkdir('install_dir')
51 install_dir.remove()
61 monkeypatch.setattr('sys.path', sys.path + [install_dir.strpath])
67 cmd.install_dir = install_dir.strpath
75 target = cmd.install_dir
147 def install(pkg_dir, install_dir):
150 cmd = [sys.executable, 'setup.py', 'install', '--prefix', install_dir]
test_install_scripts.py 24 def _run_install_scripts(self, install_dir, executable=None):
28 cmd.install_dir = install_dir
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_install_data.py 19 cmd.install_dir = inst = os.path.join(pkg_dir, 'inst')
58 inst3 = os.path.join(cmd.install_dir, 'inst3')
60 three = os.path.join(cmd.install_dir, 'three')
  /external/python/cpython2/Lib/distutils/tests/
test_install_data.py 19 cmd.install_dir = inst = os.path.join(pkg_dir, 'inst')
58 inst3 = os.path.join(cmd.install_dir, 'inst3')
60 three = os.path.join(cmd.install_dir, 'three')
  /external/python/cpython3/Lib/distutils/tests/
test_install_data.py 17 cmd.install_dir = inst = os.path.join(pkg_dir, 'inst')
56 inst3 = os.path.join(cmd.install_dir, 'inst3')
58 three = os.path.join(cmd.install_dir, 'three')

Completed in 526 milliseconds

1 2 3