Lines Matching refs:parms

229       tree parms = TREE_VALUE (DECL_TEMPLATE_PARMS (tmpl));  in resolve_constraint_check()  local
230 if (tree subst = coerce_template_parms (parms, args, tmpl)) in resolve_constraint_check()
301 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl)); in resolve_variable_concept_check() local
303 tree result = coerce_template_parms (parms, args, tmpl); in resolve_variable_concept_check()
713 if (tree parms = TREE_OPERAND (t, 0)) in normalize_requires_expression() local
714 return build_nt (PARM_CONSTR, parms, operand); in normalize_requires_expression()
1036 tree parms = PARM_CONSTR_PARMS (t); in normalize_parameterized_constraint() local
1038 return build_nt (PARM_CONSTR, parms, operand); in normalize_parameterized_constraint()
1302 get_shorthand_constraints (tree parms) in get_shorthand_constraints() argument
1305 parms = INNERMOST_TEMPLATE_PARMS (parms); in get_shorthand_constraints()
1306 for (int i = 0; i < TREE_VEC_LENGTH (parms); ++i) in get_shorthand_constraints()
1308 tree parm = TREE_VEC_ELT (parms, i); in get_shorthand_constraints()
1399 tree parms = deduce_concept_introduction (expr); in finish_template_introduction() local
1400 if (!parms) in finish_template_introduction()
1406 int nargs = MIN (TREE_VEC_LENGTH (parms), TREE_VEC_LENGTH (intro_list)); in finish_template_introduction()
1408 parm_list = process_introduction_parm (parm_list, TREE_VEC_ELT (parms, n)); in finish_template_introduction()
1418 tree check_args = make_tree_vec (TREE_VEC_LENGTH (parms)); in finish_template_introduction()
1429 for (; n < TREE_VEC_LENGTH (parms); ++n) in finish_template_introduction()
1430 TREE_VEC_ELT (check_args, n) = TREE_VEC_ELT (parms, n); in finish_template_introduction()
1705 declare_constraint_vars (tree parms, tree vars) in declare_constraint_vars() argument
1708 for (tree t = parms; t; t = DECL_CHAIN (t)) in declare_constraint_vars()
1879 tree parms = TREE_OPERAND (t, 0); in tsubst_requires_expr() local
1880 if (parms) in tsubst_requires_expr()
1882 parms = tsubst_constraint_variables (parms, args, complain, in_decl); in tsubst_requires_expr()
1883 if (parms == error_mark_node) in tsubst_requires_expr()
1892 return finish_requires_expr (parms, reqs); in tsubst_requires_expr()
2177 tree parms = PARM_CONSTR_PARMS (t); in satisfy_parameterized_constraint() local
2178 tree vars = tsubst_constraint_variables (parms, args, complain, in_decl); in satisfy_parameterized_constraint()
2432 finish_requires_expr (tree parms, tree reqs) in finish_requires_expr() argument
2437 for (tree parm = parms; parm; parm = DECL_CHAIN (parm)) in finish_requires_expr()
2444 tree r = build_min (REQUIRES_EXPR, boolean_type_node, parms, reqs); in finish_requires_expr()
3014 tree parms = PARM_CONSTR_PARMS (cur); in diagnose_parameterized_constraint() local
3015 tree vars = tsubst_constraint_variables (parms, args, tf_warning_or_error, in diagnose_parameterized_constraint()