Home
last modified time | relevance | path

Searched refs:env (Results 4551 - 4575 of 4752) sorted by relevance

1...<<181182183184185186187188189190191

/device/board/hihope/dayu210/uboot/
H A Dmake.sh83 echo " ./make.sh env --- build envtools"
154 # env: build env tool
157 ''|loader|trust|uboot|debug*|itb|env|fit|map|sym|elf*|nm)
457 env)
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/himedia/
H A Dhimedia_base.c77 static int himedia_uevent(struct device *dev, struct kobj_uevent_env *env) in himedia_uevent() argument
81 ret = add_uevent_var(env, "MODALIAS=himedia:%s", pdev->name); in himedia_uevent()
/third_party/gn/src/base/files/
H A Dfile_util_posix.cc342 bool ExecutableExistsInPath(Environment* env, in ExecutableExistsInPath() argument
345 if (!env->GetVar("PATH", &path)) { in ExecutableExistsInPath()
/third_party/node/lib/internal/repl/
H A Dutils.js145 if (process.env.TERM === 'dumb' || !active) {
515 if (process.env.TERM === 'dumb') {
/third_party/node/deps/v8/third_party/wasm-api/
H A Dwasm.h406 void* env, const wasm_val_t args[], wasm_val_t results[]);
412 void* env, void (*finalizer)(void*));
/third_party/node/deps/v8/third_party/jinja2/
H A Dfilters.py669 def do_truncate(env, s, length=255, killwords=False, end="...", leeway=None):
694 leeway = env.policies["truncate.leeway"]
/third_party/node/tools/inspector_protocol/jinja2/
H A Dfilters.py578 def do_truncate(env, s, length=255, killwords=False, end='...', leeway=None):
603 leeway = env.policies['truncate.leeway']
/third_party/skia/third_party/externals/spirv-tools/test/val/
H A Dval_data_test.cpp654 for (const auto env : {SPV_ENV_VULKAN_1_0, SPV_ENV_VULKAN_1_1}) { in TEST_F()
677 ASSERT_EQ(SPV_ERROR_INVALID_CAPABILITY, ValidateInstructions(env)); in TEST_F()
/third_party/skia/third_party/externals/spirv-tools/source/
H A Dtext.cpp683 // |env| and Id bound is via |bound|.
684 spv_result_t SetHeader(spv_target_env env, const uint32_t bound, in SetHeader() argument
689 header[SPV_INDEX_VERSION_NUMBER] = spvVersionForTargetEnv(env); in SetHeader()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
H A Dtext.cpp683 // |env| and Id bound is via |bound|.
684 spv_result_t SetHeader(spv_target_env env, const uint32_t bound, in SetHeader() argument
689 header[SPV_INDEX_VERSION_NUMBER] = spvVersionForTargetEnv(env); in SetHeader()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/
H A Dval_data_test.cpp654 for (const auto env : {SPV_ENV_VULKAN_1_0, SPV_ENV_VULKAN_1_1}) { in TEST_F()
677 ASSERT_EQ(SPV_ERROR_INVALID_CAPABILITY, ValidateInstructions(env)); in TEST_F()
/third_party/skia/third_party/externals/jinja2/
H A Dfilters.py669 def do_truncate(env, s, length=255, killwords=False, end="...", leeway=None):
694 leeway = env.policies["truncate.leeway"]
/third_party/python/Lib/test/
H A Dtest_gettext.py133 self.env = self.enterContext(os_helper.EnvironmentVarGuard())
134 self.env['LANGUAGE'] = 'xx'
/third_party/spirv-tools/source/
H A Dtext.cpp700 // |env| and Id bound is via |bound|.
701 spv_result_t SetHeader(spv_target_env env, const uint32_t bound, in SetHeader() argument
706 header[SPV_INDEX_VERSION_NUMBER] = spvVersionForTargetEnv(env); in SetHeader()
/third_party/spirv-tools/test/val/
H A Dval_data_test.cpp653 for (const auto env : {SPV_ENV_VULKAN_1_0, SPV_ENV_VULKAN_1_1}) { in TEST_F()
676 ASSERT_EQ(SPV_ERROR_INVALID_CAPABILITY, ValidateInstructions(env)); in TEST_F()
/third_party/mesa3d/src/compiler/spirv/
H A Dvtn_variables.c2115 const enum nir_spirv_execution_environment env = in vtn_create_variable() local
2118 env == NIR_SPIRV_VULKAN ? "Vulkan" : in vtn_create_variable()
2119 env == NIR_SPIRV_OPENCL ? "OpenCL" : in vtn_create_variable()
2120 env == NIR_SPIRV_OPENGL ? "OpenGL" : in vtn_create_variable()
2128 env == NIR_SPIRV_VULKAN ? "Private, Output, Workgroup" : "", in vtn_create_variable()
2129 env == NIR_SPIRV_OPENCL ? "CrossWorkgroup, UniformConstant" : "", in vtn_create_variable()
2130 env == NIR_SPIRV_OPENGL ? "Private, Output, UniformConstant" : "", in vtn_create_variable()
/third_party/node/deps/uvwasi/src/
H A Duvwasi.c270 uvwasi->env = NULL; in uvwasi_init()
321 uvwasi->env = uvwasi__calloc(uvwasi, env_count, sizeof(char*)); in uvwasi_init()
322 if (uvwasi->env == NULL) { in uvwasi_init()
331 uvwasi->env[i] = uvwasi->env_buf + offset; in uvwasi_init()
433 uvwasi__free(uvwasi, uvwasi->env); in uvwasi_destroy()
444 uvwasi->env = NULL; in uvwasi_destroy()
594 environment[i] = environ_buf + (uvwasi->env[i] - uvwasi->env_buf); in uvwasi_environ_get()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/style_string/
H A Djs_span_object.cpp1098 napi_env env = reinterpret_cast<napi_env>(nativeEngine); in ParseOnDrawFunc()
1099 ScopeRAII scope(env); in ParseOnDrawFunc()
1100 auto jsCanvas = OHOS::Rosen::Drawing::JsCanvas::CreateJsCanvas(env, &context.canvas); in ParseOnDrawFunc()
1102 napi_unwrap(env, jsCanvas, reinterpret_cast<void**>(&unwrapCanvas)); in ParseOnDrawFunc()
1115 napi_wrap(env, nativeValue, &context.canvas, [](napi_env, void*, void*) {}, nullptr, nullptr); in ParseOnDrawFunc()
/foundation/multimedia/player_framework/frameworks/js/avplayer/
H A Davplayer_callback.cpp476 static void CompleteCallback(napi_env env, NapiCallback::Base *jsCb) in CompleteCallback() argument
483 napi_status ret = napi_send_event(env, [jsCb] () { in CompleteCallback()
495 napi_get_uv_event_loop(env, &loop); in CompleteCallback()
665 AVPlayerCallback::AVPlayerCallback(napi_env env, AVPlayerNotify *listener) in AVPlayerCallback() argument
666 : env_(env), listener_(listener) in AVPlayerCallback()
/foundation/multimodalinput/input/frameworks/napi/input_monitor/src/
H A Djs_input_monitor.cpp1850 bool JsInputMonitor::IsLocaledWithinRect(napi_env env, napi_value napiPointer, in IsLocaledWithinRect() argument
1854 CHKRF(napi_get_named_property(env, napiPointer, "screenX", &xProperty), GET_NAMED_PROPERTY); in IsLocaledWithinRect()
1857 CHKRF(napi_get_value_int32(env, xProperty, &xInt), GET_VALUE_INT32); in IsLocaledWithinRect()
1860 CHKRF(napi_get_named_property(env, napiPointer, "screenY", &yProperty), GET_NAMED_PROPERTY); in IsLocaledWithinRect()
1863 CHKRF(napi_get_value_int32(env, yProperty, &yInt), GET_VALUE_INT32); in IsLocaledWithinRect()
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/win_scripts/build/scripts/
H A Dscons_utils.py1 #!/usr/bin/env python3
95 def cleanup(target, source, env):
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/scripts/
H A Dscons_utils.py1 #!/usr/bin/env python3
95 def cleanup(target, source, env):
/foundation/multimodalinput/input/frameworks/napi/input_monitor/include/
H A Djs_input_monitor.h107 bool IsLocaledWithinRect(napi_env env, napi_value napiPointer, uint32_t rectTotal, std::vector<Rect> hotRectArea);
/foundation/window/window_manager/wm/include/
H A Dwindow_extension_session_impl.h58 WMError NapiSetUIContent(const std::string& contentInfo, napi_env env, napi_value storage,
/third_party/googletest/googletest/test/
H A Dgoogletest-failfast-unittest.py1 #!/usr/bin/env python
81 """Sets the env variable to 'value'; unsets it when 'value' is None."""
107 txt_out = gtest_test_utils.Subprocess([COMMAND] + args, env=environ).output
114 """Tests the env variable or the command line flag for fail_fast."""
132 """Tests the behavior of specifying fail_fast via Googletest env var."""
164 """Tests precedence of flag over env var."""
175 """Tests that the Googletest native env var over Bazel testbridge."""

Completed in 37 milliseconds

1...<<181182183184185186187188189190191