Lines Matching refs:oldval
2066 do_nonmember_using_decl (tree scope, tree name, tree oldval, tree oldtype, in do_nonmember_using_decl() argument
2085 if (oldval && DECL_IMPLICIT_TYPEDEF_P (oldval)) in do_nonmember_using_decl()
2087 oldtype = oldval; in do_nonmember_using_decl()
2088 oldval = NULL_TREE; in do_nonmember_using_decl()
2101 if (oldval in do_nonmember_using_decl()
2102 && TREE_CODE (oldval) == FUNCTION_DECL in do_nonmember_using_decl()
2103 && DECL_ANTICIPATED (oldval) in do_nonmember_using_decl()
2104 && !DECL_HIDDEN_FRIEND_P (oldval)) in do_nonmember_using_decl()
2105 oldval = NULL_TREE; in do_nonmember_using_decl()
2115 if (oldval && !is_overloaded_fn (oldval)) in do_nonmember_using_decl()
2118 oldval = NULL_TREE; in do_nonmember_using_decl()
2121 *newval = oldval; in do_nonmember_using_decl()
2132 for (tmp1 = oldval; tmp1; tmp1 = OVL_NEXT (tmp1)) in do_nonmember_using_decl()
2187 if (oldval && !decls_match (*newval, oldval)) in do_nonmember_using_decl()
2192 *newval = oldval; in do_nonmember_using_decl()
2220 tree oldval, oldtype, newval, newtype; in do_local_using_decl() local
2231 oldval = lookup_name_innermost_nonclass_level (name); in do_local_using_decl()
2234 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype); in do_local_using_decl()
2246 if (oldval && TREE_CODE (oldval) == OVERLOAD) in do_local_using_decl()
2247 term = OVL_FUNCTION (oldval); in do_local_using_decl()
2249 term = oldval; in do_local_using_decl()
3331 tree oldval, oldtype, newval, newtype; in do_toplevel_using_decl() local
3341 oldval = binding->value; in do_toplevel_using_decl()
3344 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype); in do_toplevel_using_decl()