/aosp_15_r20/external/python/apitools/samples/ |
D | regenerate_samples.py | 40 python_path = os.environ.get('PYTHONPATH') 41 if python_path: 42 python_path = os.pathsep.join([insert_python_dir, python_path]) 44 python_path = insert_python_dir 45 os.environ['PYTHONPATH'] = python_path
|
/aosp_15_r20/tools/acloud/ |
H A D | run_tests_py2.sh | 11 local python_path=$TOOLS_DIR 20 python_path=$THIRD_PARTY_DIR/$lib:$python_path 22 python_path=$python_path:$PYTHONPATH 23 echo $python_path
|
H A D | run_tests.sh | 11 local python_path=$TOOLS_DIR 22 python_path=$THIRD_PARTY_DIR/$lib:$python_path 24 python_path=$python_path:$PYTHONPATH 25 echo $python_path
|
/aosp_15_r20/tools/asuite/atest/ |
H A D | constants.py | 35 for python_path in python_paths: 36 if 'asuite' in python_path and python_path not in sys.path: 37 sys.path.append(python_path)
|
/aosp_15_r20/external/pigweed/pw_env_setup/py/pw_env_setup/entry_points/ |
H A D | arm_gdb.py | 49 python_path = arm_install_prefix / 'python/lib/python3.8' 54 if python_home.is_file() and python_path.is_dir(): 56 env['PYTHONPATH'] = str(python_path)
|
/aosp_15_r20/external/cronet/build/toolchain/win/ |
H A D | toolchain.gni | 169 "\"$python_path\" $_tool_wrapper_path link-wrapper $env False " 200 coverage_wrapper = "\"$python_path\" " + coverage_wrapper + " " 250 …command = "\"$python_path\" $_tool_wrapper_path rc-wrapper $env rc.exe /nologo $sys_include_flags{… 304 ml = "\"$python_path\" $ml_py $ml" 311 …command = "\"$python_path\" $_tool_wrapper_path asm-wrapper $env $ml {{include_dirs}} {{asmflags}}… 313 …command = "\"$python_path\" $_tool_wrapper_path asm-wrapper $env $ml {{defines}} {{include_dirs}} … 346 …command = "\"$python_path\" \"$rustc_wrapper\" --target-windows --rustc=$rustc --depfile=$depfile … 372 …command = "\"$python_path\" \"$rustc_wrapper\" --target-windows --rustc=$rustc --depfile=$depfile … 395 …command = "\"$python_path\" \"$rustc_wrapper\" --target-windows --rustc=$rustc --depfile=$depfile … 427 …command = "\"$python_path\" \"$rustc_wrapper\" --target-windows --rustc=$rustc --depfile=$depfile … [all …]
|
/aosp_15_r20/external/angle/build/toolchain/win/ |
H A D | toolchain.gni | 169 "\"$python_path\" $_tool_wrapper_path link-wrapper $env False " 200 coverage_wrapper = "\"$python_path\" " + coverage_wrapper + " " 250 …command = "\"$python_path\" $_tool_wrapper_path rc-wrapper $env rc.exe /nologo $sys_include_flags{… 305 ml = "\"$python_path\" $ml_py $ml" 312 …command = "\"$python_path\" $_tool_wrapper_path asm-wrapper $env $ml {{include_dirs}} {{asmflags}}… 314 …command = "\"$python_path\" $_tool_wrapper_path asm-wrapper $env $ml {{defines}} {{include_dirs}} … 347 …command = "\"$python_path\" \"$rustc_wrapper\" --target-windows --rustc=$rustc --depfile=$depfile … 373 …command = "\"$python_path\" \"$rustc_wrapper\" --target-windows --rustc=$rustc --depfile=$depfile … 396 …command = "\"$python_path\" \"$rustc_wrapper\" --target-windows --rustc=$rustc --depfile=$depfile … 428 …command = "\"$python_path\" \"$rustc_wrapper\" --target-windows --rustc=$rustc --depfile=$depfile … [all …]
|
/aosp_15_r20/external/cronet/net/test/spawned_test_server/ |
H A D | local_test_server.cc | 103 std::optional<std::vector<base::FilePath>> python_path = GetPythonPath(); in StartInBackground() local 104 if (!python_path) { in StartInBackground() 109 if (!LaunchPython(testserver_path, *python_path)) { in StartInBackground()
|
H A D | local_test_server_win.cc | 56 const std::vector<base::FilePath>& python_path) { in LaunchPython() argument 97 SetPythonPathInEnvironment(python_path, &launch_options.environment); in LaunchPython()
|
H A D | local_test_server_posix.cc | 97 const std::vector<base::FilePath>& python_path) { in LaunchPython() argument 127 SetPythonPathInEnvironment(python_path, &options.environment); in LaunchPython()
|
/aosp_15_r20/external/pandora/bt-test-interfaces/python/_build/ |
D | protoc-gen-custom_grpc | 70 python_path = file.name.replace('.proto', '').replace('/', '.') 71 module_path = python_path[:python_path.rindex('.')] 72 module_name = python_path[python_path.rindex('.')+1:] + '_pb2'
|
/aosp_15_r20/external/mesa3d/meson_to_hermetic/ |
H A D | meson_to_hermetic.py | 1058 python_path = '' 1062 python_path += ':' 1063 python_path += '`dirname %s`' % _location_wrapper(':%s' % dep.target_name()) 1064 return python_path 1086 python_path = 'PYTHONPATH=' 1092 python_path += '`dirname $(location %s)`' % python_script 1095 python_path += ':' + _get_python_path([deps]) 1097 python_path += ':' + _get_python_path(deps) 1098 args.insert(0, python_path)
|
/aosp_15_r20/external/cronet/net/test/ |
H A D | python_utils.cc | 21 void SetPythonPathInEnvironment(const std::vector<base::FilePath>& python_path, in SetPythonPathInEnvironment() argument 24 for (const auto& path : python_path) { in SetPythonPathInEnvironment()
|
/aosp_15_r20/cts/apps/CameraITS/build/ |
H A D | envsetup.sh | 86 for python_path in $python_paths 88 env_dir=${python_path%/python*}"/../../"
|
/aosp_15_r20/external/grpc-grpc/tools/run_tests/ |
H A D | run_tests.py | 225 python_path = os.path.join(name, config_vars.venv_relative_python[0]) 226 run = config_vars.shell + config_vars.runner + [python_path] 227 return PythonConfig(name, build, run, python_path) 232 python_path = os.path.join(name, config_vars.venv_relative_python[0]) 242 config_vars.shell + config_vars.runner + [python_path], 243 python_path, 689 python_config.python_path,
|
/aosp_15_r20/external/pigweed/pw_build/py/pw_build/ |
H A D | create_gn_venv.py | 79 python_path = pathlib.Path(sys.executable).resolve() 80 rel_python_path = os.path.relpath(python_path, start=out_dir_path)
|
/aosp_15_r20/external/angle/build/toolchain/apple/ |
H A D | toolchain.gni | 203 cc = "$python_path $_coverage_wrapper ${cc}" 204 cxx = "$python_path $_coverage_wrapper ${cxx}" 279 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 305 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 332 …command = "$linker_driver_env \"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfil… 361 …command = "$linker_driver_env \"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfil… 390 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 450 …command = "rm -f {{output}} && TOOL_VERSION=${tool_versions.filter_libtool} $python_path $script $… 753 "$_env_vars $python_path $_tool --module-name {{module_name}} " + 778 "$_env_vars $python_path $_tool " +
|
/aosp_15_r20/external/cronet/build/toolchain/apple/ |
H A D | toolchain.gni | 202 cc = "$python_path $_coverage_wrapper ${cc}" 203 cxx = "$python_path $_coverage_wrapper ${cxx}" 278 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 304 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 331 …command = "$linker_driver_env \"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfil… 360 …command = "$linker_driver_env \"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfil… 389 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 449 …command = "rm -f {{output}} && TOOL_VERSION=${tool_versions.filter_libtool} $python_path $script $… 752 "$_env_vars $python_path $_tool --module-name {{module_name}} " + 777 "$_env_vars $python_path $_tool " +
|
/aosp_15_r20/external/angle/build/toolchain/ |
H A D | gcc_toolchain.gni | 251 "\"$python_path\" ${_coverage_wrapper} " + compiler_prefix 387 … command = "cmd /s /c \"\"$python_path\" $tool_wrapper_path delete-file {{output}} && $command\"" 458 …command = "\"$python_path\" \"$solink_wrapper\" --readelf=\"$readelf\" --nm=\"$nm\" $strip_switch$… 622 …command = "\"$python_path\" \"$link_wrapper\" --output=\"$outfile\"$strip_switch$map_switch$dwp_sw… 697 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 722 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 738 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 755 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 772 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --…
|
/aosp_15_r20/external/cronet/build/toolchain/ |
H A D | gcc_toolchain.gni | 283 "\"$python_path\" ${_coverage_wrapper} " + compiler_prefix 419 … command = "cmd /s /c \"\"$python_path\" $tool_wrapper_path delete-file {{output}} && $command\"" 490 …command = "\"$python_path\" \"$solink_wrapper\" --readelf=\"$readelf\" --nm=\"$nm\" $strip_switch$… 650 …command = "\"$python_path\" \"$link_wrapper\" --output=\"$outfile\"$strip_switch$map_switch$dwp_sw… 725 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 750 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 766 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 783 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --… 800 …command = "\"$python_path\" \"$rustc_wrapper\" --rustc=$rustc --depfile=$depfile --rsp=$rspfile --…
|
/aosp_15_r20/external/perfetto/bazel/ |
H A D | rules.bzl | 328 python_path = PERFETTO_CONFIG.root + "python" 330 python_path = PERFETTO_CONFIG.root + "/python" 335 python_path + ":trace_processor_table_generator", 344 python_path + ":trace_processor_table_generator",
|
/aosp_15_r20/external/pytorch/test/ |
H A D | run_test.py | 716 python_path = os.environ.get("PYTHONPATH", "") 735 os.environ["PYTHONPATH"] = os.pathsep.join([install_directory, python_path]) 738 os.environ["PYTHONPATH"] = python_path 774 python_path = os.environ.get("PYTHONPATH", "") 786 os.environ["PYTHONPATH"] = os.pathsep.join([install_directory, python_path]) 793 os.environ["PYTHONPATH"] = python_path
|
/aosp_15_r20/hardware/google/gfxstream/guest/mesa-gn/src/util/format/ |
D | BUILD.gn | 136 python_path = 143 python_path,
|
/aosp_15_r20/external/cronet/build/toolchain/zos/ |
H A D | BUILD.gn | 95 command = "$python_path \"$solink_wrapper\" --output=\"$sofile\" -- $link_command" 156 command = "$python_path \"$link_wrapper\" --output=\"$outfile\" -- $link_command"
|
/aosp_15_r20/external/angle/build/toolchain/zos/ |
H A D | BUILD.gn | 96 "$python_path \"$solink_wrapper\" --output=\"$sofile\" -- $link_command" 158 "$python_path \"$link_wrapper\" --output=\"$outfile\" -- $link_command"
|