/external/clang/include/clang/AST/ |
D | DeclAccessPair.h | 29 class DeclAccessPair { 35 static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS) { in make() 36 DeclAccessPair p; in make() 67 template<> struct isPodLike<clang::DeclAccessPair> {
|
D | UnresolvedSet.h | 28 typedef SmallVectorImpl<DeclAccessPair> DeclsTy; 53 DeclAccessPair getPair() const { return *ir; } in getPair() 116 decls().push_back(DeclAccessPair::make(D, AS)); in addDecl() 163 DeclAccessPair &operator[](unsigned I) { return decls()[I]; } 164 const DeclAccessPair &operator[](unsigned I) const { return decls()[I]; } 180 SmallVector<DeclAccessPair, InlineCapacity> Decls;
|
D | Expr.h | 2162 DeclAccessPair FoundDecl; 2248 ValueDecl *memberdecl, DeclAccessPair founddecl, 2264 DeclAccessPair getFoundDecl() const { in getFoundDecl() 2266 return DeclAccessPair::make(getMemberDecl(), in getFoundDecl()
|
D | ExprCXX.h | 2226 DeclAccessPair *Results;
|
/external/clang/lib/Sema/ |
D | SemaAccess.cpp | 153 DeclAccessPair FoundDecl, in AccessTarget() 1469 DeclAccessPair::make(TargetDecl, Access), in HandleDependentAccessCheck() 1485 DeclAccessPair Found) { in CheckUnresolvedLookupAccess() 1501 DeclAccessPair Found) { in CheckUnresolvedMemberAccess() 1526 DeclAccessPair::make(decl, access), objectType); in isSpecialMemberAccessibleForDeletion() 1556 DeclAccessPair::make(Dtor, Access), in CheckDestructorAccess() 1629 DeclAccessPair::make(Constructor, Access), in CheckConstructorAccess() 1648 DeclAccessPair::make(Target, Access), in CheckDirectMemberAccess() 1659 DeclAccessPair Found, in CheckAllocationAccess() 1680 DeclAccessPair Found) { in CheckMemberOperatorAccess() [all …]
|
D | SemaExprMember.cpp | 692 DeclAccessPair FoundDecl, 777 DeclAccessPair foundDecl = DeclAccessPair::make(field, field->getAccess()); in BuildAnonymousStructUnionMemberReference() 798 DeclAccessPair foundDecl = DeclAccessPair::make(field, field->getAccess()); in BuildAnonymousStructUnionMemberReference() 814 DeclAccessPair FoundDecl, in BuildMemberExpr() 896 DeclAccessPair FoundDecl = R.begin().getPair(); in BuildMemberReferenceExpr() 1539 DeclAccessPair FoundDecl, in BuildFieldReferenceExpr()
|
D | SemaOverload.cpp | 1338 DeclAccessPair AccessPair; in IsStandardConversion() 2828 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess()); in IsInitializerListConstructorConversion() 2958 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess()); in IsUserDefinedConversion() 3016 DeclAccessPair FoundDecl = I.getPair(); in IsUserDefinedConversion() 4046 DeclAccessPair Found; in TryReferenceInit() 4425 DeclAccessPair Found; in TryListConversion() 5096 DeclAccessPair Found = ExplicitConversions[0]; in ConvertToIntegralOrEnumerationType() 5138 DeclAccessPair Found = ViableConversions[0]; in ConvertToIntegralOrEnumerationType() 5198 DeclAccessPair FoundDecl, in AddOverloadCandidate() 5358 void Sema::AddMethodCandidate(DeclAccessPair FoundDecl, in AddMethodCandidate() [all …]
|
D | SemaInit.cpp | 2488 DeclAccessPair Found, in AddAddressOverloadResolutionStep() 2528 DeclAccessPair FoundDecl, in AddUserConversionStep() 2589 S.Function.FoundDecl = DeclAccessPair::make(Constructor, Access); in AddConstructorInitializationStep() 2736 DeclAccessPair FoundDecl = DeclAccessPair::make(DefaultConstructor, in TryListConstructionSpecialCases() 2804 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess()); in ResolveConstructorOverload() 2992 DeclAccessPair Found; in ResolveOverloadedFunctionForReferenceBinding() 3191 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess()); in TryRefInitWithConversionFunction() 3728 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess()); in TryUserDefinedConversion() 4216 DeclAccessPair dap; in InitializationSequence() 4346 DeclAccessPair FoundDecl in LookupCopyAndMoveConstructors() [all …]
|
D | SemaLookup.cpp | 2375 AddMethodCandidate(M, DeclAccessPair::make(M, AS_public), RD, ThisTy, in LookupSpecialMember() 2379 AddOverloadCandidate(M, DeclAccessPair::make(M, AS_public), in LookupSpecialMember() 2395 AddMethodTemplateCandidate(Tmpl, DeclAccessPair::make(Tmpl, AS_public), in LookupSpecialMember() 2400 AddTemplateOverloadCandidate(Tmpl, DeclAccessPair::make(Tmpl, AS_public), in LookupSpecialMember()
|
D | SemaExprCXX.cpp | 1540 SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches; in FindAllocationFunctions() 1914 SmallVector<DeclAccessPair,4> Matches; in FindDeallocationFunction() 1952 for (SmallVectorImpl<DeclAccessPair>::iterator in FindDeallocationFunction() 2298 DeclAccessPair FoundDecl, in BuildCXXCastArgument() 2487 DeclAccessPair Found; in PerformImplicitConversion()
|
D | SemaCast.cpp | 1198 DeclAccessPair FoundOverload; in TryStaticMemberPointerUpcast() 1866 DeclAccessPair Found; in CheckCXXCStyleCast()
|
D | SemaExpr.cpp | 1486 FTD, DeclAccessPair::make(FTD, AS_none), ExplicitTemplateArgs, in DiagnoseEmptyLookup() 1490 AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), in DiagnoseEmptyLookup()
|
D | SemaTemplate.cpp | 4187 DeclAccessPair FoundResult; // temporary for ResolveOverloadedFunction in CheckTemplateArgument()
|
D | SemaCodeComplete.cpp | 3765 AddOverloadCandidate(FDecl, DeclAccessPair::make(FDecl, AS_none), Args, in CodeCompleteCall()
|
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 274 Results = static_cast<DeclAccessPair *>( in OverloadExpr() 275 C.Allocate(sizeof(DeclAccessPair) * NumResults, in OverloadExpr() 276 llvm::alignOf<DeclAccessPair>())); in OverloadExpr() 278 NumResults * sizeof(DeclAccessPair)); in OverloadExpr() 315 Results = static_cast<DeclAccessPair *>( in initializeResults() 316 C.Allocate(sizeof(DeclAccessPair) * NumResults, in initializeResults() 318 llvm::alignOf<DeclAccessPair>())); in initializeResults() 320 NumResults * sizeof(DeclAccessPair)); in initializeResults()
|
D | Expr.cpp | 1054 DeclAccessPair founddecl, in Create()
|
/external/clang/include/clang/Sema/ |
D | Initialization.h | 641 DeclAccessPair FoundDecl; 848 DeclAccessPair Found, 886 DeclAccessPair FoundDecl,
|
D | Overload.h | 287 DeclAccessPair FoundConversionFunction; 609 DeclAccessPair FoundDecl;
|
D | DelayedDiagnostic.h | 46 DeclAccessPair FoundDecl, in AccessedEntity()
|
D | Sema.h | 84 class DeclAccessPair; variable 1603 DeclAccessPair FoundDecl, 1614 void AddMethodCandidate(DeclAccessPair FoundDecl, 1621 DeclAccessPair FoundDecl, 1628 DeclAccessPair FoundDecl, 1637 DeclAccessPair FoundDecl, 1643 DeclAccessPair FoundDecl, 1648 DeclAccessPair FoundDecl, 1653 DeclAccessPair FoundDecl, 1699 DeclAccessPair &Found, [all …]
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1786 DeclAccessPair FoundDecl = DeclAccessPair::make(FoundD, AS); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 474 DeclAccessPair FoundDecl = E->getFoundDecl(); in VisitMemberExpr()
|