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

/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp4088 void Sema::DiagnoseAutoDeductionFailure(VarDecl *VDecl, Expr *Init) { argument
4090 Diag(VDecl->getLocation(),
4091 VDecl->isInitCapture()
4094 << VDecl->getDeclName() << VDecl->getType() << Init->getSourceRange();
4096 Diag(VDecl->getLocation(),
4097 VDecl->isInitCapture() ? diag::err_init_capture_deduction_failure
4099 << VDecl->getDeclName() << VDecl->getType() << Init->getType()
H A DSemaDecl.cpp8284 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl); local
8285 if (!VDecl) {
8294 if (TypeMayContainAuto && VDecl->getType()->isUndeducedType()) {
8303 VDecl->isInitCapture() ? diag::err_init_capture_no_expression
8305 << VDecl->getDeclName() << VDecl->getType()
8306 << VDecl->getSourceRange();
8311 VDecl->isInitCapture()
8314 << VDecl->getDeclName() << VDecl
[all...]

Completed in 561 milliseconds