Searched refs:arg_info (Results 1 – 8 of 8) sorted by relevance
| /freebsd-12-stable/contrib/gcc/ |
| D | c-decl.c | 3413 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 …]
|
| D | c-tree.h | 339 struct c_arg_info *arg_info; member 388 struct c_arg_info * GTY((skip)) arg_info;
|
| D | c-parser.c | 9002 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 …]
|
| D | c-common.h | 1071 struct c_arg_info * arg_info; member
|
| D | gcc.c | 1069 const char *const arg_info; member 1255 const char *arginfo = option_map[j].arg_info; in translate_options()
|
| D | ChangeLog-2004 | 16103 * c-tree.h (struct language_function): Add arg_info element.
|
| /freebsd-12-stable/contrib/llvm-project/lldb/bindings/python/ |
| D | python-wrapper.swig | 73 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/ |
| D | ScriptInterpreterPython.cpp | 897 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()
|