Home | History | Annotate | Download | only in cp

Lines Matching refs:wildcards

1584 get_introduction_prototype (tree wildcards, int index)
1586 return TREE_TYPE (get_deduced_wildcard (TREE_VEC_ELT (wildcards, index)));
1677 introduce_template_parameter (tree parms, tree wildcards, int& index)
1679 tree deduced = TREE_VEC_ELT (wildcards, index++);
1687 introduce_template_parameters (tree parms, tree wildcards, int& index)
1692 tree deduced = TREE_VEC_ELT (wildcards, index++);
1694 gcc_assert (index == TREE_VEC_LENGTH (wildcards));
1715 process_introduction_parms (tree parms, tree wildcards, int& index)
1717 tree proto = get_introduction_prototype (wildcards, index);
1719 return introduce_template_parameters (parms, wildcards, index);
1721 return introduce_template_parameter (parms, wildcards, index);