Home
last modified time | relevance | path

Searched refs:get_class_binding (Results 1 – 24 of 24) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dname-lookup.h308 extern tree get_class_binding (tree, tree, bool want_type = false);
H A Dsearch.c993 nval = get_class_binding (type, lfi->name, lfi->want_type); in lookup_field_r()
2104 tree ovl = get_class_binding (type, DECL_NAME (fndecl)); in look_for_overrides_here()
2427 if (tree conv = get_class_binding (BINFO_TYPE (binfo), conv_op_identifier)) in lookup_conversions_r()
H A Dname-lookup.c1275 get_class_binding (tree klass, tree name, bool want_type /*=false*/) in get_class_binding() function
4357 get_class_binding (tree name, cp_binding_level *scope) in get_class_binding() function
4497 binding = get_class_binding (name, class_binding_level); in push_class_level_binding_1()
6379 class_binding = get_class_binding (name, scope); in outer_binding()
H A Dclass.c2824 for (ovl_iterator iter (get_class_binding (t, name)); iter; ++iter) in get_basefndecls()
5668 if (get_class_binding (t, name)) in classtype_has_op()
5683 for (ovl_iterator oi (get_class_binding (t, name)); oi; ++oi) in classtype_has_defaulted_op()
5725 for (ovl_iterator iter (get_class_binding (inner, complete_ctor_identifier)); in type_build_ctor_call()
5753 for (ovl_iterator iter (get_class_binding (inner, complete_dtor_identifier)); in type_build_dtor_call()
H A Ddecl2.c646 tree fns = get_class_binding (ctype, DECL_NAME (function)); in check_classfn()
709 fns = get_class_binding (ctype, conv_op_identifier); in check_classfn()
H A Dcall.c4006 ctors = get_class_binding (totype, complete_ctor_identifier); in build_user_type_conversion_1()
9333 tree fns = get_class_binding (type, assign_op_identifier); in has_trivial_copy_assign_p()
9382 tree fns = get_class_binding (type, complete_ctor_identifier); in has_trivial_copy_p()
H A Ddecl.c6240 == get_class_binding (type, id)); in reshape_init_class()
6245 field = get_class_binding (type, d->cur->index); in reshape_init_class()
8844 cleanup = get_class_binding (type, complete_dtor_identifier); in register_dtor_fn()
H A Dsemantics.c9931 fns = get_class_binding (type, assign_p ? assign_op_identifier in classtype_has_nothrow_assign_or_copy_p()
H A Dpt.c1265 tree fns = get_class_binding (class_specialization, DECL_NAME (tmpl)); in retrieve_specialization()
3064 tree fns = get_class_binding (ctype, IDENTIFIER_CONV_OP_P (name) in check_explicit_specialization()
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dname-lookup.h446 extern tree get_class_binding (tree, tree, bool want_type = false);
H A Dsearch.cc1021 nval = get_class_binding (type, lfi->name, lfi->want_type); in lookup_field_r()
2138 tree ovl = get_class_binding (type, DECL_NAME (fndecl)); in look_for_overrides_here()
2461 if (tree conv = get_class_binding (BINFO_TYPE (binfo), conv_op_identifier)) in lookup_conversions_r()
H A Dclass.cc2927 for (tree method : ovl_range (get_class_binding (t, name))) in get_basefndecls()
5712 if (get_class_binding (t, name)) in classtype_has_op()
5727 for (ovl_iterator oi (get_class_binding (t, name)); oi; ++oi) in classtype_has_defaulted_op()
5769 for (ovl_iterator iter (get_class_binding (inner, complete_ctor_identifier)); in type_build_ctor_call()
5798 for (ovl_iterator iter (get_class_binding (inner, complete_dtor_identifier)); in type_build_dtor_call()
H A DChangeLog-2017919 * name-lookup.c (get_class_binding): Use assign_op_identifier.
1572 (get_class_binding): Rename TYPE arg to KLASS, for consistency.
1585 * name-lookup.c (get_class_binding): Rename TYPE arg to KLASS for
1625 (get_class_binding_direct, get_class_binding): Add type_or_fns arg.
1631 (get_class_binding): Adjust.
1632 * decl.c (reshape_init_class): Call get_class_binding.
1653 (get_class_binding_direct, get_class_binding): ... here.
1656 (get_class_binding_direct, get_class_binding): ... here.
H A Dname-lookup.cc1921 get_class_binding (tree klass, tree name, bool want_type /*=false*/) in get_class_binding() function
5299 get_class_binding (tree name, cp_binding_level *scope) in get_class_binding() function
5417 binding = get_class_binding (name, class_binding_level); in push_class_level_binding()
7623 class_binding = get_class_binding (name, scope); in outer_binding()
H A Ddecl2.cc757 tree fns = get_class_binding (ctype, DECL_NAME (function)); in check_classfn()
841 fns = get_class_binding (ctype, conv_op_identifier); in check_classfn()
H A Dcall.cc4162 ctors = get_class_binding (totype, complete_ctor_identifier); in build_user_type_conversion_1()
10046 tree fns = get_class_binding (type, assign_op_identifier); in has_trivial_copy_assign_p()
10093 tree fns = get_class_binding (type, complete_ctor_identifier); in has_trivial_copy_p()
H A Ddecl.cc6674 == get_class_binding (type, id)); in reshape_init_class()
6681 field = get_class_binding (type, d->cur->index); in reshape_init_class()
9490 cleanup = get_class_binding (type, complete_dtor_identifier); in register_dtor_fn()
H A DChangeLog-20194163 (get_class_binding): Likewise.
4166 (get_class_binding): Adjust final arg.
4167 * decl.c (reshape_init_class): Adjust get_class_binding calls.
H A DChangeLog-20043624 (get_class_binding): Adjust.
3664 (get_class_binding): New function.
H A DChangeLog-2020359 (get_class_binding): .. of here, call it.
2138 (get_class_binding): Do not clear LOCAL_BINDING_P here.
H A Dsemantics.cc11496 fns = get_class_binding (type, assign_p ? assign_op_identifier in classtype_has_nothrow_assign_or_copy_p()
H A DChangeLog-2011671 * name-lookup.c (pushdecl_maybe_friend_1, get_class_binding,
H A DChangeLog-20212625 * name-lookup.c (get_class_binding): Keep a BASELINK.
H A Dpt.cc1289 tree fns = get_class_binding (class_specialization, DECL_NAME (tmpl)); in retrieve_specialization()
3109 tree fns = get_class_binding (ctype, IDENTIFIER_CONV_OP_P (name) in check_explicit_specialization()