HomeSort by relevance Sort by last modified time
    Searched refs:venv (Results 1 - 11 of 11) sorted by null

  /external/python/cpython3/Tools/scripts/
pyvenv 8 f'`{executable} -m venv`', file=sys.stderr)
12 import venv
13 venv.main()
  /external/autotest/bin/
python_venv 58 readonly extra_imports_dir=$(realpath ../venv)
61 ERROR: ${bin_dir}/../venv does not exist
  /external/autotest/skylab_migration/bin/
python_venv 59 readonly extra_imports_dir=$(realpath ../venv)
62 python_venv: ${bin_dir}/../venv does not exist
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/jni/
com_android_cts_splitapp_Native.cpp 71 void* venv; member in union:__anon1546
76 uenv.venv = NULL;
82 if (vm->GetEnv(&uenv.venv, JNI_VERSION_1_4) != JNI_OK) {
  /development/samples/SimpleJNI/jni/
native.cpp 88 void* venv; member in union:__anon1633
94 uenv.venv = NULL;
100 if (vm->GetEnv(&uenv.venv, JNI_VERSION_1_4) != JNI_OK) {
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/32/jni/
native.cpp 85 void* venv; member in union:__anon45728
91 uenv.venv = NULL;
97 if (vm->GetEnv(&uenv.venv, JNI_VERSION_1_4) != JNI_OK) {
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/64/jni/
native.cpp 85 void* venv; member in union:__anon45729
91 uenv.venv = NULL;
97 if (vm->GetEnv(&uenv.venv, JNI_VERSION_1_4) != JNI_OK) {
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/dual/jni/
native.cpp 85 void* venv; member in union:__anon45730
91 uenv.venv = NULL;
97 if (vm->GetEnv(&uenv.venv, JNI_VERSION_1_4) != JNI_OK) {
  /external/python/cpython3/Doc/
Makefile 18 autobuild-dev autobuild-stable venv
23 @echo " venv to create a venv with necessary tools"
106 -rm -rf build/* venv/*
108 venv:
109 $(PYTHON) -m venv venv
110 ./venv/bin/python3 -m pip install -U Sphinx
156 $(PYTHON) tools/rstlint.py -i tools -i venv -i README.rst
  /external/python/cpython3/Lib/test/
test_venv.py 2 Test harness for the venv module.
19 import venv
33 'Test not appropriate in a venv')
36 """Base class for venv tests."""
73 """Test venv module functionality."""
84 self.run_with_capture(venv.create, self.env_dir)
114 builder = venv.EnvBuilder()
118 builder = venv.EnvBuilder(prompt='My prompt')
131 # check a venv's prefixes
133 self.run_with_capture(venv.create, self.env_dir
    [all...]
  /external/python/cpython3/Lib/
site.py 425 def venv(known_paths): function
448 # Issue 25185: Use UTF-8, as that's what the venv module uses when
463 # Doing this here ensures venv takes precedence over user-site
527 known_paths = venv(known_paths)

Completed in 286 milliseconds