Lines Matching defs:checks

5602       /* Retrieve any deferred checks.  Do not pop this access checks yet
5606 token->u.tree_check_value->checks = get_deferred_access_checks ();
10745 /* Last common checks. */
10748 /* If one of the expressions is an error do no more checks. */
11518 /* Defer access checks until we know what is being declared; the
11519 checks for names appearing in the decl-specifier-seq should be
11538 /* We no longer need to defer access checks. */
11604 /*checks=*/NULL,
11690 /* Perform any deferred access checks. */
13724 /* Perform any access checks that were deferred. */
13725 access_check = check_value->checks;
13879 /* Retrieve any deferred checks. Do not pop this access checks yet
13883 token->u.tree_check_value->checks = get_deferred_access_checks ();
14622 /*checks=*/NULL,
16926 The CHECKS are access checks that should be performed once we know
16953 vec<deferred_access_check, va_gc> *checks,
16997 /* Defer access checks while parsing the declarator; we cannot know
17009 /* Gather up the deferred checks. */
17212 /* Perform deferred access control checks, now that we know in which
17227 /* Perform access checks for template parameters. */
17228 cp_parser_perform_template_parameter_access_checks (checks);
17230 /* Perform the access control checks for the declarator and the
20090 /* Put back any saved access checks. */
21055 perform more stringent semantics checks. */
23380 ATTRIBUTES, and DECLARATOR. The access checks have been deferred;
23404 scope of the function to perform the checks, since the function
23564 vec<deferred_access_check, va_gc> *checks;
23602 /* We cannot perform access checks on the template parameter
23622 /* Get the deferred access checks from the parameter list. These
23624 member template the checks must be performed in the scope of the
23626 checks = get_deferred_access_checks ();
23642 /* There are no access checks when parsing a template, as we do not
23647 checks,
23735 /* Perform the deferred access checks from a template-parameter-list.
23736 CHECKS is a TREE_LIST of access checks, as returned by
23740 cp_parser_perform_template_parameter_access_checks (vec<deferred_access_check, va_gc> *checks)
23743 perform_access_checks (checks, tf_warning_or_error);
23756 vec<deferred_access_check, va_gc> *checks,
23772 /* Defer access checks until we know what is being declared. */
23793 /* Gather up the access checks that occurred the
23823 /* Perform access checks for template parameters. */
23824 cp_parser_perform_template_parameter_access_checks (checks);
23850 checks,
25279 vec<deferred_access_check, va_gc> *checks;
25283 /* Perform any access checks that were deferred. */
25284 checks = check_value->checks;
25285 if (checks)
25287 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
25533 access checks are queued up until we are no longer parsing