Searched refs:VD (Results 76 - 93 of 93) sorted by relevance

1234

/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1403 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1405 SVal V = state->getLValue(VD, Pred->getLocationContext());
1409 if (VD->getType()->isReferenceType()) {
1482 if (VarDecl *VD = dyn_cast<VarDecl>(member)) {
1485 VisitCommonDeclRefExpr(M, VD, Pred, Dst);
/external/clang/lib/Sema/
H A DSemaChecking.cpp1682 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
1698 if (const Expr *Init = VD->getAnyInitializer()) {
1726 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(VD)) {
3485 VarDecl *VD = cast<VarDecl>(refVars[i]->getDecl()); local
3491 Diag(VD->getLocation(), diag::note_ref_var_local_bind)
3492 << VD->getDeclName() << range;
5856 /// \param VD Declaration of an identifier that appears in a type tag.
5860 const ValueDecl **VD, uint64_t *MagicValue) {
5879 *VD = DRE->getDecl();
5945 const ValueDecl *VD local
5859 FindTypeTagExpr(const Expr *TypeExpr, const ASTContext &Ctx, const ValueDecl **VD, uint64_t *MagicValue) argument
[all...]
H A DSemaAccess.cpp1115 if (VarDecl *VD = dyn_cast<VarDecl>(D))
1116 PrevDecl = VD->getPreviousDecl();
H A DSemaCodeComplete.cpp1021 if (ValueDecl *VD = dyn_cast<ValueDecl>(ND->getUnderlyingDecl()))
1022 if (VD->getType()->isIntegralOrEnumerationType())
3881 ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D); local
3882 if (!VD) {
3887 CodeCompleteExpression(S, VD->getType());
H A DSemaType.cpp4599 if (const ValueDecl *VD = dyn_cast<ValueDecl>(DRE->getDecl()))
4600 return VD->getType();
H A DTreeTransform.h1391 ValueDecl *VD,
1399 return getSema().BuildDeclarationNameExpr(SS, NameInfo, VD);
1390 RebuildDeclRefExpr(NestedNameSpecifierLoc QualifierLoc, ValueDecl *VD, const DeclarationNameInfo &NameInfo, TemplateArgumentListInfo *TemplateArgs) argument
/external/clang/lib/AST/
H A DDecl.cpp593 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
596 LinkageInfo TypeLV = getLVForType(VD->getType());
1358 if (VarDecl *VD = getInstantiatedFromStaticDataMember())
1359 return VD->isOutOfLine();
H A DItaniumMangle.cpp447 else if (const VarDecl *VD = dyn_cast<VarDecl>(D))
448 mangleName(VD);
1083 if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
1086 cast<RecordDecl>(VD->getType()->getAs<RecordType>()->getDecl());
H A DRecordLayoutBuilder.cpp2493 uint64_t ASTContext::getFieldOffset(const ValueDecl *VD) const {
2495 if (const FieldDecl *FD = dyn_cast<FieldDecl>(VD)) {
2498 const IndirectFieldDecl *IFD = cast<IndirectFieldDecl>(VD);
H A DExpr.cpp167 // (VD) C++ [temp.dep.constexpr]p2:
171 // (VD) - a name declared with a dependent type,
196 // (VD) - the name of a non-type template parameter,
203 // (VD) - a constant with integral or enumeration type and is
205 // (VD) - a constant with literal type and is initialized with an
207 // (VD) - FIXME: Missing from the standard:
223 // (VD) - FIXME: Missing from the standard:
235 // (VD) - FIXME: Missing from the standard:
256 // (VD) C++ [temp.dep.constexpr]p2:
2106 if (const VarDecl *VD
[all...]
/external/clang/include/clang/AST/
H A DTypeLoc.h1101 void setArg(unsigned i, ParmVarDecl *VD) { getParmArray()[i] = VD; }
/external/clang/lib/CodeGen/
H A DCGBlocks.cpp1808 unsigned CodeGenFunction::getByRefValueLLVMField(const ValueDecl *VD) const {
1809 assert(ByRefValueInfo.count(VD) && "Did not find value!");
1811 return ByRefValueInfo.find(VD)->second.second;
H A DCodeGenFunction.h1108 unsigned getByRefValueLLVMField(const ValueDecl *VD) const;
1674 llvm::Value *GetAddrOfLocalVar(const VarDecl *VD) { argument
1675 llvm::Value *Res = LocalDeclMap[VD];
H A DCGClass.cpp1705 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
1707 return VD->getType()->isRecordType();
H A DCGExprScalar.cpp2524 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
2525 if (VD->hasLocalStorage() && !(CGF.getContext()
2526 .getCanonicalType(VD->getType())
/external/clang/tools/libclang/
H A DCIndex.cpp3996 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3998 Loc = VD->getLocation();
4129 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
4131 R.setBegin(VD->getLocation());
4168 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
4170 R.setBegin(VD->getLocation());
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp2805 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
2811 MachinePointerInfo(VD), false, false, 0);
/external/clang/include/clang/Sema/
H A DSema.h3277 bool InitializeVarWithConstructor(VarDecl *VD,
3309 void FinalizeVarWithDestructor(VarDecl *VD, const RecordType *DeclInitType);

Completed in 413 milliseconds

1234