Lines Matching defs:checks

51 /* A token's value and its associated deferred access checks and
58 /* The checks that have been associated with value. */
59 VEC (deferred_access_check, gc)* checks;
2483 /* This routine checks that type_decl is a class or class object followed by a '.'
4122 /* Retrieve any deferred checks. Do not pop this access checks yet
4126 token->u.tree_check_value->checks = get_deferred_access_checks ();
7774 /* Defer access checks until we know what is being declared; the
7775 checks for names appearing in the decl-specifier-seq should be
7794 /* We no longer need to defer access checks. */
7852 /*checks=*/NULL,
7920 /* Perform any deferred access checks. */
9234 /* Perform any access checks that were deferred. */
9235 access_check = check_value->checks;
9376 /* Retrieve any deferred checks. Do not pop this access checks yet
9380 token->u.tree_check_value->checks = get_deferred_access_checks ();
10045 /*checks=*/NULL,
11488 The CHECKS are access checks that should be performed once we know
11504 VEC (deferred_access_check,gc)* checks,
11538 /* Defer access checks while parsing the declarator; we cannot know
11549 /* Gather up the deferred checks. */
11696 /* Perform deferred access control checks, now that we know in which
11711 /* Perform access checks for template parameters. */
11712 cp_parser_perform_template_parameter_access_checks (checks);
11714 /* Perform the access control checks for the declarator and the
13762 /* Put back any saved access checks. */
14516 perform more stringent semantics checks. */
16062 ATTRIBUTES, and DECLARATOR. The access checks have been deferred;
16086 scope of the function to perform the checks, since the function
16197 VEC (deferred_access_check,gc) *checks;
16232 /* We cannot perform access checks on the template parameter
16250 /* Get the deferred access checks from the parameter list. These
16252 member template the checks must be performed in the scope of the
16254 checks = get_deferred_access_checks ();
16267 /* There are no access checks when parsing a template, as we do not
16271 checks,
16315 /* Perform the deferred access checks from a template-parameter-list.
16316 CHECKS is a TREE_LIST of access checks, as returned by
16320 cp_parser_perform_template_parameter_access_checks (VEC (deferred_access_check,gc)* checks)
16323 perform_access_checks (checks);
16336 VEC (deferred_access_check,gc)* checks,
16350 /* Defer access checks until we know what is being declared. */
16369 /* Gather up the access checks that occurred the
16399 /* Perform access checks for template parameters. */
16400 cp_parser_perform_template_parameter_access_checks (checks);
16413 checks,
17285 VEC (deferred_access_check,gc) *checks;
17289 /* Perform any access checks that were deferred. */
17290 checks = check_value->checks;
17291 if (checks)
17294 VEC_iterate (deferred_access_check, checks, i, chk) ;
17358 access checks are queued up until we are no longer parsing