Home
last modified time | relevance | path

Searched refs:args (Results 1576 - 1600 of 7120) sorted by relevance

1...<<61626364656667686970>>...285

/foundation/ai/neural_network_runtime/common/
H A Dutils.h27 std::shared_ptr<T> CreateSharedPtr(Args&&... args) in CreateSharedPtr() argument
31 tPtr = std::make_shared<T>(args...); in CreateSharedPtr()
40 std::unique_ptr<T> CreateUniquePtr(Args&&... args) in CreateUniquePtr() argument
44 tPtr = std::make_unique<T>(args...); in CreateUniquePtr()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_tabs_controller.h33 static void Constructor(const JSCallbackInfo& args);
39 void PreloadItems(const JSCallbackInfo& args);
41 void SetTabBarTranslate(const JSCallbackInfo& args);
43 void SetTabBarOpacity(const JSCallbackInfo& args);
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/
H A Dsyscap_module.cpp33 const jerry_value_t *args, in CheckSyscap()
47 if (jerry_value_is_symbol(args[0])) { in CheckSyscap()
48 strVal = jerry_get_symbol_descriptive_string(args[0]); in CheckSyscap()
50 strVal = jerry_value_to_string(args[0]); in CheckSyscap()
31 CheckSyscap(const jerry_value_t func, const jerry_value_t context, const jerry_value_t *args, const jerry_length_t argsNum, bool repeated) CheckSyscap() argument
H A Drender_module.h54 const jerry_value_t *args,
59 const jerry_value_t *args,
64 const jerry_value_t *args,
69 const jerry_value_t *args,
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/hdr_capability/hdr_capability_utils/
H A Djs_hdr_format_utils.h33 #define HCLOGE(fmt, args...) \
34 (void)OHOS::HiviewDFX::HiLog::Error(LOG_LABEL, "%{public}s: " fmt, TITLE, ##args)
35 #define HCLOGI(fmt, args...) \
36 (void)OHOS::HiviewDFX::HiLog::Info(LOG_LABEL, "%{public}s: " fmt, TITLE, ##args)
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/src/
H A Dimage_func_timer.cpp52 va_list args; in ImageFuncTimer() local
53 va_start(args, fmt); in ImageFuncTimer()
54 int32_t ret = vsprintf_s(buf, FORMAT_BUF_SIZE, fmt, args); in ImageFuncTimer()
55 va_end(args); in ImageFuncTimer()
/foundation/multimedia/media_utils_lite/interfaces/kits/
H A Dmedia_log.h30 #define DECORATOR_HILOG(op, fmt, args...) \
32 op(LOG_CORE, fmt, ##args); \
35 #define DECORATOR_HILOG(op, fmt, args...) \
37 op(LOG_CORE, "{%s()-%s:%d} " fmt, __FUNCTION__, __FILENAME__, __LINE__, ##args); \
/foundation/resourceschedule/ffrt/src/dfx/bbox/
H A Dfault_logger_fd_manager.cpp68 va_list args; in WriteFaultLogger() local
69 va_start(args, format); in WriteFaultLogger()
72 int ret = vsnprintf_s(errLog, sizeof(errLog), sizeof(errLog) - 1, formatStr.c_str(), args); in WriteFaultLogger()
73 va_end(args); in WriteFaultLogger()
/foundation/deviceprofile/device_info_manager/old/services/core/src/dfx/
H A Ddevice_profile_dumper.cpp38 bool DeviceProfileDumper::Dump(const std::vector<std::string>& args, std::string& result) in Dump() argument
46 if (args.size() < MIN_ARGS_SIZE) { in Dump()
50 if (args.size() == MIN_ARGS_SIZE) { in Dump()
52 if (args[0] == ARGS_HELP) { in Dump()
/foundation/deviceprofile/device_info_manager/services/core/src/dfx/
H A Ddevice_profile_dumper.cpp37 bool DeviceProfileDumper::Dump(const std::vector<std::string>& args, std::string& result) in Dump() argument
45 if (args.size() < MIN_ARGS_SIZE) { in Dump()
49 if (args.size() == MIN_ARGS_SIZE) { in Dump()
51 if (args[0] == ARGS_HELP) { in Dump()
/foundation/filemanagement/file_api/utils/common/include/
H A Dfile_utils.h25 std::shared_ptr<T> CreateSharedPtr(Args&&... args) in CreateSharedPtr() argument
29 sPtr = std::make_shared<T>(std::forward<Args>(args)...); in CreateSharedPtr()
37 std::unique_ptr<T> CreateUniquePtr(Args&&... args) in CreateUniquePtr() argument
41 uPtr = std::make_unique<T>(std::forward<Args>(args)...); in CreateUniquePtr()
/third_party/eudev/src/udev/
H A Dudev-builtin-btrfs.c36 struct btrfs_ioctl_vol_args args = {}; in builtin_btrfs() local
47 strscpy(args.name, sizeof(args.name), argv[2]); in builtin_btrfs()
48 err = ioctl(fd, BTRFS_IOC_DEVICES_READY, &args); in builtin_btrfs()
/third_party/ffmpeg/libavutil/tests/
H A Dlog.c28 va_list args; in call_log_format_line2() local
31 va_start(args, buffer_size); in call_log_format_line2()
32 ret = av_log_format_line2(NULL, AV_LOG_INFO, fmt, args, buffer, buffer_size, &print_prefix); in call_log_format_line2()
33 va_end(args); in call_log_format_line2()
/third_party/gn/examples/ios/build/config/ios/scripts/
H A Dgenerate_umbrella_header.py42 args = ParseArgs(argv)
44 content = GenerateUmbrellaHeader(args.headers)
46 if args.output == '-':
49 with open(args.output, 'w') as output:
H A Dcompile_storyboard.py45 args = ParseArgs(argv)
48 os.path.abspath(args.input),
49 os.path.dirname(os.path.abspath(args.output)),
50 args.minimum_deployment_target)
/third_party/cups-filters/
H A Dinstall.py55 args = path.parse_args()
56 convs_dir = os.path.join(args.source_dir, "mime")
58 do_patch(args.source_dir)
59 copy_file(convs_dir, args.gen_dir)
/third_party/alsa-lib/include/
H A Derror.h67 #define SNDERR(args...) snd_lib_error(__FILE__, __LINE__, __func__, 0, ##args) /**< Shows a sound error message. */
68 #define SYSERR(args...) snd_lib_error(__FILE__, __LINE__, __func__, errno, ##args) /**< Shows a system error message (related to \c errno). */
/third_party/mesa3d/bin/
H A Dgit_sha1_gen.py33 if os.path.isfile(args.output):
34 with open(args.output, 'r') as file:
37 with open(args.output, 'w') as file:
44 args = parser.parse_args() variable
/third_party/jerryscript/targets/mbedos5/source/
H A Djerry_port_mbed.c36 va_list args; in jerry_port_log() local
37 va_start (args, format); in jerry_port_log()
38 vfprintf (stderr, format, args); in jerry_port_log()
39 va_end (args); in jerry_port_log()
/third_party/jinja2/
H A Doptimizer.py31 self, node: nodes.Node, *args: t.Any, **kwargs: t.Any
33 node = super().generic_visit(node, *args, **kwargs)
40 node.as_const(args[0] if args else None),
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_shader_args.h79 radv_shader_args_from_ac(struct ac_shader_args *args) in radv_shader_args_from_ac() argument
81 return container_of(args, struct radv_shader_args, ac); in radv_shader_args_from_ac()
90 struct radv_shader_args *args);
93 struct radv_shader_args *args);
/third_party/node/deps/v8/third_party/inspector_protocol/
H A Dconvert_protocol_to_json.py29 args = parser.parse_args(argv)
30 file_name = os.path.normpath(args.pdl_file)
33 protocol = pdl.loads(pdl_string, file_name, args.map_binary_to_string)
35 output_file = open_to_write(os.path.normpath(args.json_file))
/third_party/node/test/js-native-api/test_symbol/
H A Dtest_symbol.c7 napi_value args[1]; in New() local
8 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); in New()
13 NODE_API_CALL(env, napi_typeof(env, args[0], &valuetype)); in New()
18 description = args[0]; in New()
/third_party/node/test/parallel/
H A Dtest-event-emitter-once.js59 const args = ['foo'];
62 args.push(j);
65 assert.deepStrictEqual(params, args.slice(1));
68 EventEmitter.prototype.emit.apply(ee, args);
/third_party/node/src/
H A Dtty_wrap.h53 static void IsTTY(const v8::FunctionCallbackInfo<v8::Value>& args);
54 static void GetWindowSize(const v8::FunctionCallbackInfo<v8::Value>& args);
55 static void SetRawMode(const v8::FunctionCallbackInfo<v8::Value>& args);
56 static void New(const v8::FunctionCallbackInfo<v8::Value>& args);

Completed in 8 milliseconds

1...<<61626364656667686970>>...285