Searched refs:argtypes (Results 26 - 48 of 48) sorted by relevance

12

/netbsd-current/external/gpl3/gcc.old/dist/gcc/objc/
H A Dobjc-next-runtime-abi-01.c735 next_runtime_abi_01_get_arg_type_list_base (vec<tree, va_gc> **argtypes, argument
748 vec_safe_push (*argtypes, receiver_type);
750 vec_safe_push (*argtypes, objc_selector_type);
H A Dobjc-next-runtime-abi-02.c1157 next_runtime_abi_02_get_arg_type_list_base (vec<tree, va_gc> **argtypes, argument
1170 vec_safe_push (*argtypes, receiver_type);
1173 vec_safe_push (*argtypes, superflag ? objc_v2_super_selector_type
1176 vec_safe_push (*argtypes, objc_selector_type);
H A Dobjc-act.c5101 vec<tree, va_gc> *argtypes = make_tree_vector (); local
5105 (*runtime.get_arg_type_list_base) (&argtypes, method, context, super_flag);
5122 vec_safe_push (argtypes, arg_type);
5134 vec_safe_push (argtypes, arg_type);
5143 ftype = build_varargs_function_type_vec (return_type, argtypes);
5145 ftype = build_function_type_vec (return_type, argtypes);
5147 release_tree_vector (argtypes);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Drust-exp.y2102 struct type **argtypes = NULL;
2106 argtypes = args.data ();
2110 argtypes);
/netbsd-current/external/gpl3/gcc/dist/gcc/objc/
H A Dobjc-next-runtime-abi-01.cc736 next_runtime_abi_01_get_arg_type_list_base (vec<tree, va_gc> **argtypes, argument
749 vec_safe_push (*argtypes, receiver_type);
751 vec_safe_push (*argtypes, objc_selector_type);
H A Dobjc-next-runtime-abi-02.cc1159 next_runtime_abi_02_get_arg_type_list_base (vec<tree, va_gc> **argtypes,
1172 vec_safe_push (*argtypes, receiver_type);
1175 vec_safe_push (*argtypes, superflag ? objc_v2_super_selector_type
1178 vec_safe_push (*argtypes, objc_selector_type);
H A Dobjc-act.cc5180 vec<tree, va_gc> *argtypes = make_tree_vector (); local
5184 (*runtime.get_arg_type_list_base) (&argtypes, method, context, super_flag);
5201 vec_safe_push (argtypes, arg_type);
5213 vec_safe_push (argtypes, arg_type);
5222 ftype = build_varargs_function_type_vec (return_type, argtypes);
5224 ftype = build_function_type_vec (return_type, argtypes);
5226 release_tree_vector (argtypes);
/netbsd-current/external/gpl3/gcc/dist/gcc/cp/
H A Dcoroutines.cc327 tree argtypes = make_tree_vec (list_length (arg_node)-1); local
337 TREE_VEC_ELT (argtypes, p++) = cp_build_reference_type (ct, false);
340 TREE_VEC_ELT (argtypes, p++) = TREE_VALUE (arg_node);
347 SET_ARGUMENT_PACK_ARGS (argtypepack, argtypes);
H A Dtypeck.cc11296 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
11302 for (argtype = argtypes, arity = 0;
11328 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
11333 return argtypes == void_list_node;
11341 for (argtype = argtypes, arity = 0;
11280 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl)); local
11312 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl)); local
H A Ddecl.cc15234 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
15347 for (tree arg = argtypes; ; arg = TREE_CHAIN (arg))
15384 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
15426 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)),
15467 for (tree arg = argtypes; arg && arg != void_list_node;
15540 tree arg = TREE_VALUE (argtypes);
15217 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl)); local
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dtree.cc7349 maybe_canonicalize_argtypes (tree argtypes,
7356 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
7374 return argtypes;
7382 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
7402 return argtypes;
7568 tree argtypes)
7584 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
7585 TYPE_ARG_TYPES (t) = argtypes;
7598 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
7328 maybe_canonicalize_argtypes(tree argtypes, bool *any_structural_p, bool *any_noncanonical_p) argument
7545 build_method_type_directly(tree basetype, tree rettype, tree argtypes) argument
[all...]
H A Dbuiltins.cc2981 if (tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
2983 = mathfn_built_in_1 (TREE_VALUE (argtypes),
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/
H A Dd-codegen.cc2057 tree argtypes = tree_cons (NULL_TREE, build_pointer_type (basetype), local
2059 tree fntype = build_function_type (TREE_TYPE (type), argtypes);
/netbsd-current/external/gpl3/gcc/dist/gcc/d/
H A Dd-codegen.cc2356 tree argtypes = tree_cons (NULL_TREE, build_pointer_type (basetype), local
2358 tree fntype = build_function_type (TREE_TYPE (type), argtypes);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/cp/
H A Dcoroutines.cc305 tree argtypes = make_tree_vec (list_length (arg_node)-1); local
315 TREE_VEC_ELT (argtypes, p++) = cp_build_reference_type (ct, false);
318 TREE_VEC_ELT (argtypes, p++) = TREE_VALUE (arg_node);
325 SET_ARGUMENT_PACK_ARGS (argtypepack, argtypes);
H A Dtypeck.c10689 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
10695 for (argtype = argtypes, arity = 0;
10721 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
10726 return argtypes == void_list_node;
10734 for (argtype = argtypes, arity = 0;
10673 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl)); local
10705 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl)); local
H A Ddecl.c14428 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
14541 for (tree arg = argtypes; ; arg = TREE_CHAIN (arg))
14578 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
14617 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)),
14656 for (tree arg = argtypes; arg != void_list_node; arg = TREE_CHAIN (arg))
14728 tree arg = TREE_VALUE (argtypes);
14411 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl)); local
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dtree.c8327 maybe_canonicalize_argtypes (tree argtypes,
8334 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
8352 return argtypes;
8360 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
8380 return argtypes;
8546 tree argtypes)
8562 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
8563 TYPE_ARG_TYPES (t) = argtypes;
8576 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
8304 maybe_canonicalize_argtypes(tree argtypes, bool *any_structural_p, bool *any_noncanonical_p) argument
8521 build_method_type_directly(tree basetype, tree rettype, tree argtypes) argument
[all...]
H A Dbuiltins.c2941 if (tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
2943 = mathfn_built_in_1 (TREE_VALUE (argtypes),
/netbsd-current/external/apache2/llvm/dist/llvm/utils/lit/lit/
H A DTestRunner.py463 SHFileOperationW.argtypes = [POINTER(SHFILEOPSTRUCTW)]
/netbsd-current/external/apache2/llvm/dist/clang/bindings/python/clang/
H A Dcindex.py4076 func.argtypes = item[1]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dtrans-intrinsic.c801 vec<tree, va_gc> *argtypes; local
882 argtypes = NULL;
886 vec_safe_push (argtypes, type);
888 type = build_function_type_vec (gfc_typenode_for_spec (ts), argtypes);
/netbsd-current/external/gpl3/gcc/dist/gcc/fortran/
H A Dtrans-intrinsic.cc809 vec<tree, va_gc> *argtypes; local
890 argtypes = NULL;
894 vec_safe_push (argtypes, type);
896 type = build_function_type_vec (gfc_typenode_for_spec (ts), argtypes);

Completed in 968 milliseconds

12