Home
last modified time | relevance | path

Searched refs:convs (Results 1 – 18 of 18) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dcall.cc499 conversion **convs; member
2177 size_t num_convs, conversion **convs, in add_candidate() argument
2188 cand->convs = convs; in add_candidate()
2198 if (convs && cand->reversed ()) in add_candidate()
2201 std::swap (convs[0], convs[1]); in add_candidate()
2323 conversion **convs, in add_function_candidate() argument
2355 if (!convs) in add_function_candidate()
2356 convs = alloc_conversions (len); in add_function_candidate()
2450 if (convs[i]) in add_function_candidate()
2489 convs[i] = t; in add_function_candidate()
[all …]
H A Dsearch.cc2443 tree parent_convs, tree other_convs, tree *convs) in lookup_conversions_r() argument
2452 *convs = NULL_TREE; in lookup_conversions_r()
2512 *convs = split_conversions (my_convs, parent_convs, in lookup_conversions_r()
2530 tree convs; in lookup_conversions() local
2536 lookup_conversions_r (TYPE_BINFO (type), 0, 0, NULL_TREE, NULL_TREE, &convs); in lookup_conversions()
2541 for (; convs; convs = TREE_CHAIN (convs)) in lookup_conversions()
2545 for (probe = TREE_VALUE (convs); probe; probe = next) in lookup_conversions()
H A Dname-lookup.cc1719 tree convs = NULL_TREE; in extract_conversion_operator() local
1725 convs = lookup_add (*iter, convs); in extract_conversion_operator()
1731 if (!convs) in extract_conversion_operator()
1732 convs = tpls; in extract_conversion_operator()
1734 return convs; in extract_conversion_operator()
H A DChangeLog-1996944 * call.c (build_over_call): Diagnose bad convs for `this'.
949 * call.c (convert_like): Handle bad convs.
950 (build_over_call): Handle bad convs better.
986 (compare_ics): Handle bad convs.
1227 (standard_conversion): Fix pmf convs.
H A DChangeLog-20182312 * pt.c (fn_type_unification): Add convs parameter.
2316 * call.c (add_function_candidate): Make convs a parameter.
2318 (add_template_candidate_real): Allocate convs here.
H A Dpt.cc21976 struct conversion **convs, bool explain_p) in check_non_deducible_conversions() argument
22008 conversion **conv_p = convs ? &convs[ia+offset] : NULL; in check_non_deducible_conversions()
22064 struct conversion **convs, in fn_type_unification() argument
22326 convs, explain_p)) in fn_type_unification()
H A DChangeLog-19984653 convs, fns.
4656 (build_object_call): Iterate using OVL_NEXT for fns, convs.
H A DChangeLog-2016617 (joust): A local constructor beats inherited with the same convs.
H A DChangeLog-20211503 parameter to add_candidate. Pass 'convs' to add_candidate.
H A DChangeLog-20046074 (z_candidate): Change type of convs and second_conv.
H A DChangeLog-20191717 PR c++/88128 - DR 330: Qual convs and pointers to arrays of pointers.
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dcall.c502 conversion **convs; member
2131 size_t num_convs, conversion **convs, in add_candidate() argument
2142 cand->convs = convs; in add_candidate()
2152 if (convs && cand->reversed ()) in add_candidate()
2155 std::swap (convs[0], convs[1]); in add_candidate()
2220 conversion **convs, in add_function_candidate() argument
2256 if (!convs) in add_function_candidate()
2257 convs = alloc_conversions (len); in add_function_candidate()
2353 if (convs[i]) in add_function_candidate()
2426 convs[i] = t; in add_function_candidate()
[all …]
H A Dsearch.c2409 tree parent_convs, tree other_convs, tree *convs) in lookup_conversions_r() argument
2418 *convs = NULL_TREE; in lookup_conversions_r()
2478 *convs = split_conversions (my_convs, parent_convs, in lookup_conversions_r()
2496 tree convs; in lookup_conversions() local
2502 lookup_conversions_r (TYPE_BINFO (type), 0, 0, NULL_TREE, NULL_TREE, &convs); in lookup_conversions()
2507 for (; convs; convs = TREE_CHAIN (convs)) in lookup_conversions()
2511 for (probe = TREE_VALUE (convs); probe; probe = next) in lookup_conversions()
H A Dname-lookup.c1108 tree convs = NULL_TREE; in extract_conversion_operator() local
1114 convs = lookup_add (*iter, convs); in extract_conversion_operator()
1120 if (!convs) in extract_conversion_operator()
1121 convs = tpls; in extract_conversion_operator()
1123 return convs; in extract_conversion_operator()
H A Dpt.c21160 struct conversion **convs, bool explain_p) in check_non_deducible_conversions() argument
21192 conversion **conv_p = convs ? &convs[ia+offset] : NULL; in check_non_deducible_conversions()
21248 struct conversion **convs, in fn_type_unification() argument
21498 convs, explain_p)) in fn_type_unification()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/mmix/
H A Dmmix.c2646 const struct cc_conv *const convs; in mmix_output_condition() member
2708 for (j = 0; cc_convs[i].convs[j].cc != UNKNOWN; j++) in mmix_output_condition()
2709 if (cc == cc_convs[i].convs[j].cc) in mmix_output_condition()
2712 = (reversed ? cc_convs[i].convs[j].reversed in mmix_output_condition()
2713 : cc_convs[i].convs[j].normal); in mmix_output_condition()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/mmix/
H A Dmmix.cc2699 const struct cc_conv *const convs; in mmix_output_condition() member
2761 for (j = 0; cc_convs[i].convs[j].cc != UNKNOWN; j++) in mmix_output_condition()
2762 if (cc == cc_convs[i].convs[j].cc) in mmix_output_condition()
2765 = (reversed ? cc_convs[i].convs[j].reversed in mmix_output_condition()
2766 : cc_convs[i].convs[j].normal); in mmix_output_condition()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/
H A DChangeLog-20191525 PR c++/88128 - DR 330: Qual convs and pointers to arrays of pointers.