reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaStmt.cpp
 2983   QualType VDType = VD->getType();
 2997   if (VD->getKind() != Decl::Var &&
 2998       !((CESK & CES_AllowParameters) && VD->getKind() == Decl::ParmVar))
 3000   if (!(CESK & CES_AllowExceptionVariables) && VD->isExceptionVariable())
 3004   if (!VD->hasLocalStorage()) return false;
 3009   if (VD->hasAttr<BlocksAttr>()) return false;
 3015   if (VD->getType().isVolatileQualified()) return false;
 3019   if (!VD->getType()->isDependentType() && VD->hasAttr<AlignedAttr>() &&
 3019   if (!VD->getType()->isDependentType() && VD->hasAttr<AlignedAttr>() &&
 3020       Context.getDeclAlign(VD) > Context.getTypeAlignInChars(VD->getType()))
 3020       Context.getDeclAlign(VD) > Context.getTypeAlignInChars(VD->getType()))