Home | History | Annotate | Download | only in slang

Lines Matching refs:VD

185 void RSCheckAST::ValidateVarDecl(clang::VarDecl *VD) {
186 if (!VD) {
190 clang::QualType QT = VD->getType();
192 if (VD->getFormalLinkage() == clang::ExternalLinkage) {
195 if (!RSExportType::NormalizeType(T, TypeName, Context, VD)) {
201 if (mInKernel && VD->isStaticLocal()) {
204 VD->getLocation(),
206 << VD->getName();
211 if (!RSExportType::ValidateVarDecl(Context, VD, mTargetAPI, mIsFilterscript)) {
213 } else if (clang::Expr *Init = VD->getInit()) {
226 if (clang::VarDecl *VD = llvm::dyn_cast<clang::VarDecl>(*I)) {
227 ValidateVarDecl(VD);
280 if (clang::VarDecl *VD = llvm::dyn_cast<clang::VarDecl>(*DI)) {
281 ValidateVarDecl(VD);