Lines Matching defs:checks

118       maintains a vector of all deferred checks.
148 /* The current mode of access checks. */
175 checking, continuing the set of deferred checks in CHECKS. */
178 reopen_deferring_access_checks (vec<deferred_access_check, va_gc> * checks)
182 deferred_access_stack->last().deferred_access_checks = checks;
185 /* Resume deferring access checks again after we stopped doing
195 /* Stop deferring access checks. */
204 /* Discard the current deferred access checks and restore the
216 /* Returns a TREE_LIST representing the deferred checks.
230 /* Take current deferred checks and combine with the
231 previous states if we also defer checks previously.
232 Otherwise perform checks now. */
241 vec<deferred_access_check, va_gc> *checks;
244 checks = (deferred_access_stack->last ().deferred_access_checks);
251 perform_access_checks (checks, tf_warning_or_error);
259 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
268 /* Insert into parent's checks. */
276 /* Perform the access checks in CHECKS. The TREE_PURPOSE of each node
279 or we aren't in SFINAE context or all the checks succeed return TRUE,
283 perform_access_checks (vec<deferred_access_check, va_gc> *checks,
291 if (!checks)
294 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
304 /* Perform the deferred access checks.
306 After performing the checks, we still have to keep the list
348 /* If we are not supposed to defer access checks, just check now. */
3094 /* As above, but also checks that DECL is automatic. */
3880 /* Perform C++-specific checks for __builtin_offsetof before calling