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

/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Frontend/
H A DASTConsumers.cpp438 ParmVarDecl* PVD = cast<ParmVarDecl>(*I); local
439 Out << "<parameter> " << *PVD << '\n'; local
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp2139 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) {
2140 QualType ArrayTy = PVD->getOriginalType();
2141 QualType PointerTy = PVD->getType();
2144 << RangeLoc << PVD << ArrayTy << PointerTy;
2145 Diag(PVD->getLocation(), diag::note_declared_at);
H A DSemaExpr.cpp3347 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) {
3348 QualType OType = PVD->getOriginalType();
3349 QualType Type = PVD->getType();
3353 Diag(PVD->getLocation(), diag::note_declared_at);
4269 static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) { argument
4270 TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc();
4274 S.Diag(PVD->getLocation(), diag::note_callee_static_array)
H A DSemaDeclCXX.cpp407 const ParmVarDecl *PVD = FD->getParamDecl(NumParams-1); local
408 if (!PVD->hasDefaultArg())
410 if (!PVD->hasInheritedDefaultArg())
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenFunction.cpp633 if (const ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(VD))
634 Ty = PVD->getOriginalType();
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_iso9660.c62 * The "Primary Volume Descriptor" (PVD) is defined by the
68 * after another. The PVD contains a single dir entry
157 #error PVD offset and size definitions are wrong.
559 /* We didn't find a valid PVD; return a bid of zero. */
871 /* PVD version must be 1. */
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp1888 if (const ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(VD)) {
1897 Result = &Frame->Arguments[PVD->getFunctionScopeIndex()];

Completed in 308 milliseconds