Home
last modified time | relevance | path

Searched refs:env (Results 1576 - 1600 of 1813) sorted by relevance

1...<<61626364656667686970>>...73

/third_party/libabigail/src/
H A Dabg-writer.cc76 id_manager(const environment& env) in id_manager() argument
77 : m_env(env), in id_manager()
90 const environment& env = get_environment(); in get_id() local
91 return env.intern(o.str()); in get_id()
103 const environment& env = get_environment(); in get_id_with_prefix() local
104 return env.intern(o.str()); in get_id_with_prefix()
241 /// @param env the enviroment we are operating from.
244 write_context(const environment& env, ostream& os) in write_context() argument
245 : m_env(env), in write_context()
246 m_id_manager(env), in write_context()
2062 create_write_context(const environment& env, ostream& default_output_stream) create_write_context() argument
3689 const environment& env = ctxt.get_environment(); write_class_decl() local
[all...]
/third_party/jinja2/
H A Denvironment.py75 env = cls(*args)
76 env.shared = True
77 return env
782 >>> env = Environment()
783 >>> expr = env.compile_expression('foo == 42')
793 >>> env.compile_expression('var')() is None
795 >>> env.compile_expression('var', undefined_to_none=False)()
1183 env = get_spontaneous_environment(
1208 return env.from_string(source, template_class=cls)
/third_party/ltp/tools/sparse/sparse-src/
H A Dsparse-llvm.c1300 const char *arch, *vendor, *os, *env, *layout = NULL; in set_target() local
1306 env = strtok(NULL, "-"); in set_target()
1310 if (!env) in set_target()
1311 env = "unknown"; in set_target()
1326 snprintf(triple, sizeof(triple), "%s-%s-%s-%s", arch, vendor, os, env); in set_target()
/third_party/rust/crates/nix/test/
H A Dtest_unistd.rs22 use std::env;
88 let mut path = env::temp_dir(); in test_mkstemp()
104 mkstemp(&env::temp_dir()).expect_err("assertion failed"); in test_mkstemp_directory()
124 mkfifo(&env::temp_dir(), Mode::S_IRUSR).expect_err("assertion failed"); in test_mkfifo_directory()
183 mkfifoat(None, &env::temp_dir(), Mode::S_IRUSR) in test_mkfifoat_directory_none()
/third_party/python/Modules/
H A Dposixmodule.c1799 wchar_t env[4] = L"=x:"; in win32_wchdir() local
1821 env[1] = new_path[0]; in win32_wchdir()
1822 result = SetEnvironmentVariableW(env, new_path); in win32_wchdir()
5730 parse_envlist(PyObject* env, Py_ssize_t *envc_ptr) in parse_envlist() argument
5737 i = PyMapping_Size(env); in parse_envlist()
5746 keys = PyMapping_Keys(env); in parse_envlist()
5749 vals = PyMapping_Values(env); in parse_envlist()
5754 "env.keys() or env.values() is not a list"); in parse_envlist()
5928 env
5935 os_execve_impl(PyObject *module, path_t *path, PyObject *argv, PyObject *env) os_execve_impl() argument
6273 py_posix_spawn(int use_posix_spawnp, PyObject *module, path_t *path, PyObject *argv, PyObject *env, PyObject *file_actions, PyObject *setpgroup, int resetids, int setsid, PyObject *setsigmask, PyObject *setsigdef, PyObject *scheduler) py_posix_spawn() argument
6429 os_posix_spawn_impl(PyObject *module, path_t *path, PyObject *argv, PyObject *env, PyObject *file_actions, PyObject *setpgroup, int resetids, int setsid, PyObject *setsigmask, PyObject *setsigdef, PyObject *scheduler) os_posix_spawn_impl() argument
6475 os_posix_spawnp_impl(PyObject *module, path_t *path, PyObject *argv, PyObject *env, PyObject *file_actions, PyObject *setpgroup, int resetids, int setsid, PyObject *setsigmask, PyObject *setsigdef, PyObject *scheduler) os_posix_spawnp_impl() argument
6640 os_spawnve_impl(PyObject *module, int mode, path_t *path, PyObject *argv, PyObject *env) os_spawnve_impl() argument
11083 wchar_t *env = PyUnicode_AsWideCharString(unicode, &size); win32_putenv() local
[all...]
/third_party/backends/backend/
H A Dnet.c946 const char *env; local
1063 env = getenv ("SANE_NET_HOSTS");
1064 if (env)
1067 if ((copy = strdup (env)) != NULL)
1113 env = getenv ("SANE_NET_TIMEOUT");
1114 if (env)
1116 connect_timeout = atoi(env);
1117 DBG (2, "sane_init: connect timeout set to %d seconds from env\n", connect_timeout);
/third_party/python/Lib/test/test_import/
H A D__init__.py508 env = None
509 env = {k.upper(): os.environ[k] for k in os.environ}
510 env["PYTHONPATH"] = tmp2 + ";" + STDLIB_DIR
522 env=env,
529 env=env,
/third_party/gn/src/base/files/
H A Dfile_util.h173 // environment variable in |env|.
174 bool ExecutableExistsInPath(Environment* env,
/third_party/glslang/Test/
H A Dvalidate-shaders.sh232 if valout=$("$VAL" --target-env ${targetenv} "$spvfile" 2>&1)
/third_party/libabigail/tests/
H A Dtest-read-write.cc302 environment_sptr env(new environment); in perform()
/third_party/node/lib/internal/main/
H A Dworker_thread.js64 // If the main thread is spawned with env NODE_CHANNEL_FD, it's probably
67 if (process.env.NODE_CHANNEL_FD) {
/third_party/node/test/parallel/
H A Dtest-https-strict.js29 process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
/third_party/node/src/
H A Dmodule_wrap.h69 ModuleWrap(Environment* env,
H A Dnode_realm-inl.h37 inline Environment* Realm::env() const { in env() function in node::Realm
/third_party/node/deps/undici/src/lib/core/
H A Dconnect.js18 if (global.FinalizationRegistry && !process.env.NODE_V8_COVERAGE) {
/third_party/rust/crates/clap/clap_derive/src/derives/
H A Dparser.rs30 let pkg_name = std::env::var("CARGO_PKG_NAME").ok().unwrap_or_default(); in derive_parser()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderDebug.hpp38 std::string spvInstructionBinaryToText(const spv_target_env env,
/third_party/spirv-tools/kokoro/scripts/windows/
H A Dbuild.bat28 :: set up msvc build env
/third_party/skia/third_party/externals/expat/expat/
H A Dqa.sh1 #! /usr/bin/env bash
59 env "$@"
/third_party/protobuf/js/
H A Dgulpfile.js9 var protoc = process.env.PROTOC || '../src/protoc';
/third_party/skia/infra/bots/recipe_modules/checkout/
H A Dapi.py164 with self.m.context(cwd=checkout_root, env=gclient_env):
/third_party/skia/infra/bots/recipe_modules/vars/
H A Dapi.py35 self.default_env = self.m.context.env
/third_party/rust/crates/rustix/
H A Dbuild.rs3 use std::env::var;
109 println!("cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM"); in main()
/third_party/rust/crates/nix/test/common/
H A Dmod.rs58 if std::env::var_os("CIRRUS_CI").is_some() {
/third_party/rust/crates/unicode-ident/generate/src/
H A Dmain.rs38 let manifest_dir = Path::new(env!("CARGO_MANIFEST_DIR")); in main()

Completed in 28 milliseconds

1...<<61626364656667686970>>...73