Home
last modified time | relevance | path

Searched refs:env (Results 2901 - 2925 of 4971) sorted by relevance

1...<<111112113114115116117118119120>>...199

/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/
H A Dcli.js1 #!/usr/bin/env node
/third_party/libabigail/include/
H A Dabg-elf-reader.h71 environment& env);
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-9/
H A Dcall-conv-field.rs14 env: *mut ::std::os::raw::c_void,
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-5/
H A Dcall-conv-field.rs14 env: *mut ::std::os::raw::c_void,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.h214 iJDEnvironmentType env; member
/third_party/skia/third_party/externals/icu/source/tools/gencolusb/
H A DMakefile30 RUN_OPTS=env $(PATH_VAR)=$(BUILD_ROOT)/lib
/third_party/skia/third_party/externals/icu/fuzzers/
H A Dicu_break_iterator_fuzzer.cc9 IcuEnvironment* env = new IcuEnvironment(); variable
H A Dicu_break_iterator_utf32_fuzzer.cc9 IcuEnvironment* env = new IcuEnvironment(); variable
H A Dicu_ucasemap_fuzzer.cc11 IcuEnvironment* env = new IcuEnvironment(); variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DProgram.cpp27 const char **env, const StringRef **Redirects,
/third_party/spirv-tools/source/
H A Ddisassemble.h32 std::string spvInstructionBinaryToText(const spv_target_env env,
/third_party/skia/infra/bots/recipes/
H A Dcheck_generated_files.py44 with api.context(env=api.infra.go_env):
/third_party/rust/crates/rustix/tests/
H A Dbackends.rs112 command.env(key, value); in has_dependency()
/third_party/weex-loader/deps/weex-styler/lib/
H A Dutil.js102 exports.SPLECIAL_ATTR = process.env.DEVICE_LEVEL === DEVICE_LEVEL.LITE ? LITE_SPLECIAL_ATTR : RICH_SPLECIAL_ATTR
/kernel/linux/linux-5.10/tools/perf/util/
H A Dhist.h469 struct perf_env *env,
481 float min_percent, struct perf_env *env,
489 struct perf_env *env __maybe_unused, in perf_evlist__tui_browse_hists()
530 struct perf_env *env __maybe_unused, in block_hists_tui_browse()
/kernel/linux/linux-6.6/tools/perf/util/
H A Dhist.h484 float min_pcnt, struct perf_env *env, bool warn_lost_event,
495 float min_percent, struct perf_env *env,
503 struct perf_env *env __maybe_unused, in evlist__tui_browse_hists()
544 struct perf_env *env __maybe_unused, in block_hists_tui_browse()
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/
H A Dnapi_render_init.cpp116 static napi_value Init(napi_env env, napi_value exports) in Init() argument
119 if ((env == nullptr) || (exports == nullptr)) { in Init()
120 OH_LOG_Print(LOG_APP, LOG_ERROR, LOG_PRINT_DOMAIN, "Init", "env or exports is null"); in Init()
405 if (napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc) != napi_ok) { in Init()
410 PluginManager::GetInstance()->Export(env, exports); in Init()
/third_party/node/tools/gyp/pylib/gyp/
H A Dmac_tool.py1 #!/usr/bin/env python3
271 env = os.environ.copy()
276 env["ZERO_AR_DATE"] = "1"
277 libtoolout = subprocess.Popen(cmd_list, stderr=subprocess.PIPE, env=env)
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dmac_tool.py1 #!/usr/bin/env python3
271 env = os.environ.copy()
276 env["ZERO_AR_DATE"] = "1"
277 libtoolout = subprocess.Popen(cmd_list, stderr=subprocess.PIPE, env=env)
/third_party/python/Python/
H A Dpreconfig.c669 const char *env = _Py_GetEnv(config->use_environment, "PYTHONCOERCECLOCALE"); in preconfig_init_coerce_c_locale() local
670 if (env) { in preconfig_init_coerce_c_locale()
671 if (strcmp(env, "0") == 0) { in preconfig_init_coerce_c_locale()
676 else if (strcmp(env, "warn") == 0) { in preconfig_init_coerce_c_locale()
712 over PYTHONDEV env var and "-X dev" command line option. in preconfig_init_allocator()
/third_party/python/Lib/venv/
H A D__init__.py348 kwargs['env'] = env = os.environ.copy()
349 env['VIRTUAL_ENV'] = context.env_dir
350 env.pop('PYTHONHOME', None)
351 env.pop('PYTHONPATH', None)
/third_party/skia/third_party/externals/angle2/scripts/
H A Droll_chromium_deps.py1 #!/usr/bin/env python
189 env = os.environ.copy()
192 logging.debug('extra env: %s', extra_env)
193 env.update(extra_env)
199 env=env,
/third_party/libabigail/src/
H A Dabg-corpus.cc596 /// @param env the environment of the corpus.
599 corpus::corpus(const ir::environment& env, const string& path) in corpus() argument
601 priv_.reset(new priv(path, env)); in corpus()
612 {return priv_->env;} in get_environment()
818 (priv_->env.get_config().get_format_major_version_number()); in init_format_version()
820 (priv_->env.get_config().get_format_minor_version_number()); in init_format_version()
1669 /// @param env the environment of the @ref corpus_group.
1672 corpus_group::corpus_group(const environment& env, const string& path = "") in corpus_group() argument
1673 : corpus(env, path), priv_(new priv) in corpus_group()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DRewritePipelines.cpp776 auto go = [&](TIntermTyped &env, const int *index) { in visitMain()
778 AccessIndex(*env.deepCopy(), index), ImmutableString("texture")); in visitMain()
780 AccessIndex(*env.deepCopy(), index), ImmutableString("sampler")); in visitMain()
794 TIntermTyped &env = AccessField(*mPipelineMainLocalVar.internal, field->name()); in visitMain() local
795 const TType &envType = env.getType(); in visitMain()
803 go(env, &i); in visitMain()
808 go(env, nullptr); in visitMain()
/third_party/tzdata/
H A Dzdump.c268 char **env = fakeenv, **initial_environ; in tzalloc()
287 freeable = env; in tzalloc()
288 fakeenv = env = in tzalloc()
292 to = env + 1; in tzalloc()
295 env[0] = memcpy(to + 1, TZeq, TZeqlen); in tzalloc()
297 memcpy(env[0] + TZeqlen, val, valsize); in tzalloc()
299 environ = env; in tzalloc()

Completed in 20 milliseconds

1...<<111112113114115116117118119120>>...199