Home
last modified time | relevance | path

Searched refs:arg_info (Results 1 – 8 of 8) sorted by relevance

/freebsd-12-stable/contrib/gcc/
Dc-decl.c3413 tree args = ce->u.arg_info->parms; in start_decl()
3492 struct c_arg_info * arg_info; in synth_block_byref_id_object_copy_func() local
3504 arg_info = xcalloc (1, sizeof (struct c_arg_info)); in synth_block_byref_id_object_copy_func()
3506 arg_info->parms = dst_arg; in synth_block_byref_id_object_copy_func()
3507 arg_info->types = tree_cons (NULL_TREE, ptr_type_node, in synth_block_byref_id_object_copy_func()
3514 store_parm_decls_from (arg_info); in synth_block_byref_id_object_copy_func()
3541 free (arg_info); in synth_block_byref_id_object_copy_func()
3556 struct c_arg_info * arg_info; in synth_block_byref_id_object_dispose_func() local
3563 arg_info = xcalloc (1, sizeof (struct c_arg_info)); in synth_block_byref_id_object_dispose_func()
3564 arg_info->parms = src_arg; in synth_block_byref_id_object_dispose_func()
[all …]
Dc-tree.h339 struct c_arg_info *arg_info; member
388 struct c_arg_info * GTY((skip)) arg_info;
Dc-parser.c9002 struct c_arg_info * arg_info; in synth_copy_helper_block_func() local
9015 arg_info = xcalloc (1, sizeof (struct c_arg_info)); in synth_copy_helper_block_func()
9017 arg_info->parms = dst_arg; in synth_copy_helper_block_func()
9018 arg_info->types = tree_cons (NULL_TREE, block_impl->block_arg_ptr_type, in synth_copy_helper_block_func()
9025 store_parm_decls_from (arg_info); in synth_copy_helper_block_func()
9084 free (arg_info); in synth_copy_helper_block_func()
9092 struct c_arg_info * arg_info; in synth_destroy_helper_block_func() local
9098 arg_info = xcalloc (1, sizeof (struct c_arg_info)); in synth_destroy_helper_block_func()
9099 arg_info->parms = src_arg; in synth_destroy_helper_block_func()
9100 arg_info->types = tree_cons (NULL_TREE, block_impl->block_arg_ptr_type, in synth_destroy_helper_block_func()
[all …]
Dc-common.h1071 struct c_arg_info * arg_info; member
Dgcc.c1069 const char *const arg_info; member
1255 const char *arginfo = option_map[j].arg_info; in translate_options()
DChangeLog-200416103 * c-tree.h (struct language_function): Add arg_info element.
/freebsd-12-stable/contrib/llvm-project/lldb/bindings/python/
Dpython-wrapper.swig73 if (auto arg_info = pfunc.GetArgInfo())
74 max_positional_args = arg_info.get().max_positional_args;
76 return arg_info.takeError();
311 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo();
312 if (!arg_info) {
314 arg_info.takeError(),
325 if (arg_info.get().max_positional_args == 2) {
331 } else if (arg_info.get().max_positional_args >= 3) {
377 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo();
378 if (!arg_info) {
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp897 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo(); in GetMaxPositionalArgumentsForCallable() local
898 if (!arg_info) in GetMaxPositionalArgumentsForCallable()
899 return arg_info.takeError(); in GetMaxPositionalArgumentsForCallable()
900 return arg_info.get().max_positional_args; in GetMaxPositionalArgumentsForCallable()