| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaExprMember.cpp | 1439 if (!declaresSameEntity(ClassDeclared, IDecl) || in LookupMemberExpr() 1440 !declaresSameEntity(ClassOfMethodDecl, ClassDeclared)) in LookupMemberExpr()
|
| H A D | SemaTemplateVariadic.cpp | 310 return declaresSameEntity(Pack.first.get<NamedDecl *>(), LocalPack); in DiagnoseUnexpandedParameterPacks()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 619 !declaresSameEntity(T->getAsCXXRecordDecl(), RD)) in isRelevantAttr() 5855 return declaresSameEntity(C.getInstantiatedFromUsingShadowDecl(Instance), in isInstantiationOf() 5861 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern); in isInstantiationOf() 5888 declaresSameEntity(OtherFrom, Pattern); in isInstantiationOfUnresolvedUsingDecl() 5945 return declaresSameEntity(Ctx.getInstantiatedFromUnnamedFieldDecl(Field), in isInstantiationOf()
|
| H A D | SemaDeclObjC.cpp | 512 return ID && !declaresSameEntity(ID, CurrentIDecl); in ValidateCandidate() 568 if (declaresSameEntity(PrevDecl, IDecl)) { in ActOnSuperClassOfClassInterface() 2035 else if (IDecl && !declaresSameEntity(IDecl->getSuperClass(), SDecl)) { in ActOnStartClassImplementation() 4259 if (declaresSameEntity(CurrentClass, ResultClass)) in CheckRelatedResultTypeCompatibility()
|
| H A D | SemaObjCProperty.cpp | 1350 !declaresSameEntity(ClassDeclared, IDecl)) { in ActOnPropertyImplDecl() 1590 declaresSameEntity(IC->getClassInterface(), ClassDeclared)) { in ActOnPropertyImplDecl()
|
| H A D | SemaAccess.cpp | 1976 if (declaresSameEntity(ClassOfMethodDecl, Ivar->getContainingInterface())) in IsSimplyAccessible()
|
| H A D | SemaInit.cpp | 2646 if (declaresSameEntity(KnownField, FI)) { in CheckDesignatedInitializer() 2662 if (CurrentField && !declaresSameEntity(CurrentField, *Field)) { in CheckDesignatedInitializer() 2719 declaresSameEntity(*FI, **NextField)) in CheckDesignatedInitializer() 10398 return !CTSD || !declaresSameEntity(CTSD->getSpecializedTemplate(), CTD); in isOrIsDerivedFromSpecializationOf()
|
| H A D | SemaOverload.cpp | 960 declaresSameEntity(cast<Decl>(EqFD->getDeclContext()), in shouldAddReversedEqEq() 9765 if (declaresSameEntity(F1, F2)) in haveSameParameterTypes() 13956 declaresSameEntity(AmbiguousWith.front(), FnDecl); in CreateOverloadedBinOp()
|
| H A D | SemaDeclAttr.cpp | 1451 if (Template && declaresSameEntity(Template, CTD)) { in handlePreferredName() 6860 if (declaresSameEntity(UA->getGuidDecl(), GuidDecl)) in mergeUuidAttr()
|
| H A D | SemaDeclCXX.cpp | 10659 if (!declaresSameEntity(ParamType->getAsCXXRecordDecl(), RD)) { in CheckDestructor() 13646 if (declaresSameEntity(cast<CXXConstructorDecl>(Ctor) in findInheritingConstructor() 15650 assert(declaresSameEntity( in BuildCXXConstructExpr()
|
| H A D | SemaDecl.cpp | 545 declaresSameEntity(LookupRD, cast<Decl>(FoundRD->getParent()))) in getTypeName() 15011 if (declaresSameEntity(OrigFD, OrigDef) && in CheckForFunctionRedefinition() 15012 declaresSameEntity(cast<Decl>(Definition->getLexicalDeclContext()), in CheckForFunctionRedefinition()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | Expr.cpp | 4154 return declaresSameEntity(DRE1->getDecl(), DRE2->getDecl()); in isSameComparisonOperand() 4160 declaresSameEntity(Ivar1->getDecl(), Ivar2->getDecl()); in isSameComparisonOperand() 4189 if (!declaresSameEntity(ME1->getMemberDecl(), ME2->getMemberDecl())) in isSameComparisonOperand() 4213 return declaresSameEntity(VD1, VD2); in isSameComparisonOperand()
|
| H A D | DeclCXX.cpp | 1529 if (!declaresSameEntity(D, R.front())) in allLookupResultsAreTheSame() 2205 if (declaresSameEntity(D, OtherD) || recursivelyOverrides(OtherD, D)) in getCorrespondingMethodInClass()
|
| H A D | ASTContext.cpp | 6519 if (!declaresSameEntity(cast<Decl>(X->getDeclContext()->getRedeclContext()), in isSameEntity() 6718 return declaresSameEntity( in isSameEntity() 9538 if (declaresSameEntity(lProto, rProto)) in ProtocolCompatibleWithProtocol() 9950 if (declaresSameEntity(LHS->getInterface(), RDecl)) { in areCommonBaseCompatible() 10095 while (!declaresSameEntity(RHSSuper->getInterface(), LHSInterface)) in canAssignObjCInterfaces() 12253 if (!declaresSameEntity(X, Y)) in getCommonDecl()
|
| H A D | ExprConstant.cpp | 5825 if (BaseClass && declaresSameEntity(BaseClass, Base)) in isBaseClassPublic() 5876 if (!Paths && (declaresSameEntity(DynType->Type, C) || in HandleDynamicCast() 5900 if (declaresSameEntity(Class, C)) in HandleDynamicCast() 5950 if (declaresSameEntity(Subobj.getUnionField(), Field)) { in found() 6014 assert(declaresSameEntity(FD, in HandleUnionActiveMemberChange() 6041 assert(declaresSameEntity(Elt->getType()->getAsCXXRecordDecl(), in HandleUnionActiveMemberChange() 6306 for (; !declaresSameEntity(*FieldIt, FD); ++FieldIt) { in HandleConstructorCall()
|
| H A D | TypePrinter.cpp | 1396 if (!declaresSameEntity(PNA->getTypedefType()->getAsCXXRecordDecl(), in printRecordBefore()
|
| H A D | RecordLayoutBuilder.cpp | 3449 if (ID && declaresSameEntity(ID->getClassInterface(), Container)) in lookupFieldBitOffset()
|
| H A D | ItaniumMangle.cpp | 5512 return V.getUnionField() && declaresSameEntity(FD, V.getUnionField()) && in isZeroInitialized()
|
| H A D | ASTImporter.cpp | 5119 (FromSuper && !declaresSameEntity(FromSuper, ToSuper))) { in ImportDefinition() 5384 !declaresSameEntity(Super->getCanonicalDecl(), in VisitObjCImplementationDecl()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGExprConstant.cpp | 704 !declaresSameEntity(ILE->getInitializedFieldInUnion(), Field)) in Build() 838 if (RD->isUnion() && !declaresSameEntity(Val.getUnionField(), *Field)) in Build()
|
| H A D | CGExprCXX.cpp | 1928 if (declaresSameEntity(getCXXRecord(Base), DevirtualizedClass)) { in EmitObjectDelete()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | DeclBase.h | 1240 inline bool declaresSameEntity(const Decl *D1, const Decl *D2) { in declaresSameEntity() function
|
| H A D | DeclObjC.h | 1800 if (declaresSameEntity(this, I)) in isSuperClassOf()
|
| H A D | RecursiveASTVisitor.h | 2208 declaresSameEntity(RD->getLambdaCallOperator(), MD)) {
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 5837 declaresSameEntity(CurMethodDef->getClassInterface(), in RewriteObjCIvarRefExpr()
|