Searched refs:PVD (Results 1 - 9 of 9) sorted by relevance

/external/clang/lib/Frontend/
H A DASTConsumers.cpp436 ParmVarDecl* PVD = cast<ParmVarDecl>(I); local
437 Out << "<parameter> " << *PVD << '\n'; local
/external/clang/lib/Sema/
H A DSemaStmt.cpp2205 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) {
2206 QualType ArrayTy = PVD->getOriginalType();
2207 QualType PointerTy = PVD->getType();
2210 << RangeLoc << PVD << ArrayTy << PointerTy;
2211 Diag(PVD->getLocation(), diag::note_declared_at);
H A DSemaExpr.cpp3451 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) {
3452 QualType OType = PVD->getOriginalType();
3453 QualType Type = PVD->getType();
3457 Diag(PVD->getLocation(), diag::note_declared_at);
4345 static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) { argument
4346 TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc();
4350 S.Diag(PVD->getLocation(), diag::note_callee_static_array)
12165 if (ParmVarDecl *PVD = dyn_cast_or_null<ParmVarDecl>(Var))
12166 QTy = PVD->getOriginalType();
H A DSemaChecking.cpp748 const ParmVarDecl *PVD = *I; local
749 if (PVD->hasAttr<NonNullAttr>())
H A DSemaDeclAttr.cpp4195 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(D))
4196 handleNonNullAttrParameter(S, PVD, Attr);
H A DSemaDeclCXX.cpp404 const ParmVarDecl *PVD = FD->getParamDecl(NumParams-1); local
405 if (!PVD->hasDefaultArg())
407 if (!PVD->hasInheritedDefaultArg())
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp683 if (const ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(VD))
684 Ty = PVD->getOriginalType();
H A DCGStmt.cpp2071 if (const ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(VD))
2072 QTy = PVD->getOriginalType();
/external/clang/lib/AST/
H A DExprConstant.cpp1931 if (const ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(VD)) {
1940 Result = &Frame->Arguments[PVD->getFunctionScopeIndex()];

Completed in 634 milliseconds