/third_party/protobuf/ruby/ext/google/protobuf_c/ |
H A D | upb.c | 2276 va_list args; in upb_status_seterrf() local 2277 va_start(args, fmt); in upb_status_seterrf() 2278 upb_status_vseterrf(status, fmt, args); in upb_status_seterrf() 2279 va_end(args); in upb_status_seterrf() 2282 void upb_status_vseterrf(upb_status *status, const char *fmt, va_list args) { in upb_status_vseterrf() argument 2285 _upb_vsnprintf(status->msg, sizeof(status->msg), fmt, args); in upb_status_vseterrf() 8645 va_list args; in putf() local 8652 va_start(args, fmt); in putf() 8655 _upb_va_copy(args_copy, args); in putf() 8662 written = vsprintf(str, fmt, args); in putf() [all...] |
/foundation/ability/ability_runtime/services/abilitymgr/src/ |
H A D | ability_manager_proxy.cpp | 1523 const std::string& args, std::vector<std::string>& state, bool isClient, bool isUserId, int UserId) in DumpSysState() 1533 data.WriteString16(Str8ToStr16(args)); in DumpSysState() 1560 void AbilityManagerProxy::DumpState(const std::string &args, std::vector<std::string> &state) in DumpState() argument 1570 data.WriteString16(Str8ToStr16(args)); in DumpState() 1522 DumpSysState( const std::string& args, std::vector<std::string>& state, bool isClient, bool isUserId, int UserId) DumpSysState() argument
|
/foundation/arkui/ace_engine/frameworks/core/components/declaration/common/ |
H A D | declaration.cpp | 1976 void Declaration::CallMethod(const std::string& method, const std::string& args) 1985 std::unique_ptr<JsonValue> argsValue = JsonUtil::ParseJsonString(args); 1994 std::unique_ptr<JsonValue> argsValue = JsonUtil::ParseJsonString(args); 1996 LOGE("parse args error"); 2005 CallSpecializedMethod(method, args);
|
/foundation/ability/ability_runtime/test/unittest/ui_ability_lifecycle_manager_test/ |
H A D | ui_ability_lifecycle_manager_test.cpp | 2180 std::string args; in HWTEST_F() local 2181 uiAbilityLifecycleManager->DumpMissionList(info, isClient, args); in HWTEST_F() 2198 std::string args; in HWTEST_F() local 2199 uiAbilityLifecycleManager->DumpMissionList(info, isClient, args); in HWTEST_F()
|
/third_party/ffmpeg/fftools/ |
H A D | ffprobe.c | 618 static int writer_open(WriterContext **wctx, const Writer *writer, const char *args, in writer_open() argument 648 if (args) { in writer_open() 652 if ((ret = av_dict_parse_string(&opts, args, "=", ":", 0)) < 0) { in writer_open() 653 av_log(*wctx, AV_LOG_ERROR, "Failed to parse option string '%s' provided to writer context\n", args); in writer_open()
|
/third_party/libuv/test/ |
H A D | test-fs.c | 4383 va_list args; in call_icacls() local 4385 va_start(args, command); in call_icacls() 4386 vsnprintf(icacls_command, ARRAYSIZE(icacls_command), command, args); in call_icacls() 4387 va_end(args); in call_icacls()
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfssecaudit.c | 915 va_list args; in ntfs_log_early_error() local 917 va_start(args, format); in ntfs_log_early_error() 918 vfprintf(stderr,format,args); in ntfs_log_early_error() 919 va_end(args); in ntfs_log_early_error()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | bufferobj.c | 630 va_list args; in buffer_usage_warning() local 632 va_start(args, fmt); in buffer_usage_warning() 637 fmt, args); in buffer_usage_warning() 638 va_end(args); in buffer_usage_warning()
|
/third_party/ffmpeg/ |
H A D | configure | 1323 test $narg = 2 && args="f, g" || args="f * I" 1328 float foo(complex float f, complex float g) { return $func($args); } 1338 test $narg = 2 && args="f, g" || args="f" 1342 float foo(float f, float g) { return $func($args); }
|
/third_party/node/deps/v8/src/torque/ |
H A D | implementation-visitor.cc | 922 Arguments args; in Visit() local 923 args.parameters = {current_value, one}; in Visit() 925 expr->op == IncrementDecrementOperator::kIncrement ? "+" : "-", args); in Visit() 937 Arguments args; in Visit() local 938 args.parameters = {location_value, assignment_value}; in Visit() 939 assignment_value = GenerateCall(*expr->op, args); in Visit()
|
/third_party/rust/crates/syn/src/gen/ |
H A D | fold.rs | 953 args: FoldHelper::lift(node.args, |it| f.fold_generic_argument(it)), in fold_angle_bracketed_generic_arguments() 1355 args: FoldHelper::lift(node.args, |it| f.fold_expr(it)), in fold_expr_call() 1572 args: FoldHelper::lift(node.args, |it| f.fold_expr(it)), in fold_expr_method_call()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/ |
H A D | jsi_view_register.cpp | 113 JSRef<JSVal> args[] = { in RegisterCardUpdateCallback() 117 setOrCreate->Call(storage, FUNC_SET_CREATE_ARG_LEN, args); in RegisterCardUpdateCallback() 469 for (uint32_t index = 1; index <= numOfComponent * 2; index++) { // 2: each component pass two args, name and itself in JsStorePreviewComponents()
|
/foundation/multimodalinput/input/frameworks/napi/pointer/src/ |
H A D | js_pointer_context.cpp | 1105 napi_value args[1] = { 0 }; in EnumConstructor() local 1108 CHKRP(napi_get_cb_info(env, info, &argc, args, &ret, &data), GET_CB_INFO); in EnumConstructor()
|
/foundation/communication/dsoftbus/core/discovery/ble/softbus_ble/src/ |
H A D | disc_ble.c | 1568 static int32_t MessageRemovePredicate(const SoftBusMessage *msg, void *args) in MessageRemovePredicate() argument 1571 uintptr_t key = (uintptr_t)args; in MessageRemovePredicate()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/src/ |
H A D | distributeddb_nb_observer_test.cpp | 121 void ConcurOperThread(ConcurParam* args) in ConcurOperThread() argument 123 auto paramsPtr = static_cast<ConcurParam *>(args); in ConcurOperThread()
|
/foundation/filemanagement/app_file_service/services/backup_sa/src/module_ipc/ |
H A D | service.cpp | 1027 int Service::Dump(int fd, const vector<u16string> &args) in Dump() argument 1034 session_->DumpInfo(fd, args); in Dump()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vsrc_testsrc.c | 251 static int color_process_command(AVFilterContext *ctx, const char *cmd, const char *args, in color_process_command() argument 257 ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags); in color_process_command()
|
/third_party/alsa-utils/alsaloop/ |
H A D | pcmjob.c | 2057 #define OUT(args...) \ 2058 snd_output_printf(loop->state, ##args)
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_private.h | 2255 struct radv_shader_args args; 2945 const struct radv_shader_args *args);
|
/third_party/node/lib/ |
H A D | fs.js | 192 return (...args) => ReflectApply(cb, this, args);
|
/third_party/node/ |
H A D | vcbuild.bat | 79 if "%1"=="" goto args-done
166 :args-done
label
|
/third_party/libinput/src/ |
H A D | evdev.c | 2344 va_list args) in libevdev_log_func() 2367 log_msg_va(libinput, pri, fmt, args); in libevdev_log_func() 2337 libevdev_log_func(const struct libevdev *evdev, enum libevdev_log_priority priority, void *data, const char *file, int line, const char *func, const char *format, va_list args) libevdev_log_func() argument
|
/third_party/python/Lib/email/ |
H A D | _header_value_parser.py | 121 def __init__(self, *args, **kw): 122 super().__init__(*args, **kw)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
H A D | IRTranslator.cpp | 1567 for (auto &Arg : CS.args()) { in translateCallSite() 2322 // Lower the actual args into this basic block. 2324 for (const Argument &Arg: F.args()) {
|
/third_party/python/Lib/test/ |
H A D | test_httplib.py | 123 def __init__(self, *args): 126 self.fake_socket_args = args
|