Home
last modified time | relevance | path

Searched refs:argument_types (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
H A Dtest_type.py197 args = f.type.argument_types()
220 args = f.type.argument_types()
230 args = f.type.argument_types()
239 args = f.type.argument_types()
251 i.type.argument_types()
430 a = foo.type.argument_types()[0]
/netbsd-src/external/gpl3/gcc.old/dist/libcc1/
H A Dlibcc1plugin.cc674 tree *argument_types; in plugin_build_function_type() local
678 argument_types = new tree[argument_types_in->n_elements]; in plugin_build_function_type()
680 argument_types[i] = convert_in (argument_types_in->elements[i]); in plugin_build_function_type()
685 argument_types); in plugin_build_function_type()
689 argument_types); in plugin_build_function_type()
691 delete[] argument_types; in plugin_build_function_type()
H A Dlibcp1plugin.cc1984 tree *argument_types; in plugin_build_function_type() local
1988 argument_types = new tree[argument_types_in->n_elements]; in plugin_build_function_type()
1990 argument_types[i] = convert_in (argument_types_in->elements[i]); in plugin_build_function_type()
1995 argument_types); in plugin_build_function_type()
1999 argument_types); in plugin_build_function_type()
2001 delete[] argument_types; in plugin_build_function_type()
/netbsd-src/external/gpl3/gcc/dist/libcc1/
H A Dlibcc1plugin.cc522 std::vector<tree> argument_types (argument_types_in->n_elements); in plugin_build_function_type() local
524 argument_types[i] = convert_in (argument_types_in->elements[i]); in plugin_build_function_type()
529 argument_types.data ()); in plugin_build_function_type()
533 argument_types.data ()); in plugin_build_function_type()
H A Dlibcp1plugin.cc1831 std::vector<tree> argument_types (argument_types_in->n_elements); in plugin_build_function_type() local
1833 argument_types[i] = convert_in (argument_types_in->elements[i]); in plugin_build_function_type()
1838 argument_types.data ()); in plugin_build_function_type()
1842 argument_types.data ()); in plugin_build_function_type()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/aarch64/
H A Daarch64-sve-builtins-shapes.cc60 vec<tree> &argument_types) in apply_predication() argument
64 argument_types.quick_insert (0, get_svbool_t ()); in apply_predication()
69 if ((argument_types.length () == 2 && instance.pred == PRED_m) in apply_predication()
71 argument_types.quick_insert (0, return_type); in apply_predication()
262 vec<tree> &argument_types) in parse_signature() argument
271 argument_types.quick_push (argument_type); in parse_signature()
286 auto_vec<tree, 16> argument_types; in build_one() local
290 tree return_type = parse_signature (instance, signature, argument_types); in build_one()
291 apply_predication (instance, return_type, argument_types); in build_one()
292 b.add_unique_function (instance, return_type, argument_types, in build_one()
H A Daarch64-sve-builtins.cc1045 vec<tree> &argument_types, in add_unique_function() argument
1052 argument_types.length (), in add_unique_function()
1053 argument_types.address ()); in add_unique_function()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/aarch64/
H A Daarch64-sve-builtins-shapes.cc60 vec<tree> &argument_types) in apply_predication() argument
64 argument_types.quick_insert (0, get_svbool_t ()); in apply_predication()
69 if ((argument_types.length () == 2 && instance.pred == PRED_m) in apply_predication()
71 argument_types.quick_insert (0, return_type); in apply_predication()
262 vec<tree> &argument_types) in parse_signature() argument
271 argument_types.quick_push (argument_type); in parse_signature()
286 auto_vec<tree, 16> argument_types; in build_one() local
290 tree return_type = parse_signature (instance, signature, argument_types); in build_one()
291 apply_predication (instance, return_type, argument_types); in build_one()
292 b.add_unique_function (instance, return_type, argument_types, in build_one()
H A Daarch64-sve-builtins.cc1040 vec<tree> &argument_types, in add_unique_function() argument
1047 argument_types.length (), in add_unique_function()
1048 argument_types.address ()); in add_unique_function()
/netbsd-src/external/apache2/llvm/dist/clang/bindings/python/clang/
H A Dcindex.py2191 def argument_types(self): member in Type