Searched defs:VDecl (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp1423 auto VDecl = cast<VarDecl>(Helper->getDecl()); local
1424 CGF.EmitVarDecl(*VDecl);
/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp4126 void Sema::DiagnoseAutoDeductionFailure(VarDecl *VDecl, Expr *Init) { argument
4128 Diag(VDecl->getLocation(),
4129 VDecl->isInitCapture()
4132 << VDecl->getDeclName() << VDecl->getType() << Init->getSourceRange();
4134 Diag(VDecl->getLocation(),
4135 VDecl->isInitCapture() ? diag::err_init_capture_deduction_failure
4137 << VDecl->getDeclName() << VDecl->getType() << Init->getType()
H A DSemaDecl.cpp9086 QualType Sema::deduceVarTypeFromInitializer(VarDecl *VDecl, argument
9091 bool IsInitCapture = !VDecl;
9092 assert((!VDecl || !VDecl->isInitCapture()) &&
9146 DiagnoseAutoDeductionFailure(VDecl, DeduceInit);
9196 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl); local
9197 if (!VDecl) {
9205 if (TypeMayContainAuto && VDecl->getType()->isUndeducedType()) {
9209 ExprResult Res = CorrectDelayedTyposInExpr(Init, VDecl);
9217 VDecl, VDec
[all...]

Completed in 116 milliseconds