| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExprMember.cpp | 1423 if (!declaresSameEntity(ClassDeclared, IDecl) || in LookupMemberExpr() 1424 !declaresSameEntity(ClassOfMethodDecl, ClassDeclared)) in LookupMemberExpr()
|
| H A D | SemaTemplateVariadic.cpp | 309 return declaresSameEntity(Pack.first.get<NamedDecl *>(), LocalPack); in DiagnoseUnexpandedParameterPacks()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 592 !declaresSameEntity(T->getAsCXXRecordDecl(), RD)) in isRelevantAttr() 5815 return declaresSameEntity(C.getInstantiatedFromUsingShadowDecl(Instance), in isInstantiationOf() 5821 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern); in isInstantiationOf() 5848 declaresSameEntity(OtherFrom, Pattern); in isInstantiationOfUnresolvedUsingDecl() 5905 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() 2019 else if (IDecl && !declaresSameEntity(IDecl->getSuperClass(), SDecl)) { in ActOnStartClassImplementation() 4243 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 | 1954 if (declaresSameEntity(ClassOfMethodDecl, Ivar->getContainingInterface())) in IsSimplyAccessible()
|
| H A D | SemaInit.cpp | 2604 if (declaresSameEntity(KnownField, FI)) { in CheckDesignatedInitializer() 2620 if (CurrentField && !declaresSameEntity(CurrentField, *Field)) { in CheckDesignatedInitializer() 2677 declaresSameEntity(*FI, **NextField)) in CheckDesignatedInitializer() 9958 return !CTSD || !declaresSameEntity(CTSD->getSpecializedTemplate(), CTD); in isOrIsDerivedFromSpecializationOf()
|
| H A D | SemaDeclAttr.cpp | 1354 if (Template && declaresSameEntity(Template, CTD)) { in handlePreferredName() 6424 if (declaresSameEntity(UA->getGuidDecl(), GuidDecl)) in mergeUuidAttr()
|
| H A D | SemaDeclCXX.cpp | 10378 if (!declaresSameEntity(ParamType->getAsCXXRecordDecl(), RD)) { in CheckDestructor() 13336 if (declaresSameEntity(cast<CXXConstructorDecl>(Ctor) in findInheritingConstructor() 15325 assert(declaresSameEntity( in BuildCXXConstructExpr()
|
| H A D | SemaDecl.cpp | 481 declaresSameEntity(LookupRD, cast<Decl>(FoundRD->getParent()))) in getTypeName() 14099 if (declaresSameEntity(OrigFD, OrigDef) && in CheckForFunctionRedefinition() 14100 declaresSameEntity(cast<Decl>(Definition->getLexicalDeclContext()), in CheckForFunctionRedefinition()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | Expr.cpp | 4040 return declaresSameEntity(DRE1->getDecl(), DRE2->getDecl()); in isSameComparisonOperand() 4046 declaresSameEntity(Ivar1->getDecl(), Ivar2->getDecl()); in isSameComparisonOperand() 4075 if (!declaresSameEntity(ME1->getMemberDecl(), ME2->getMemberDecl())) in isSameComparisonOperand() 4099 return declaresSameEntity(VD1, VD2); in isSameComparisonOperand()
|
| H A D | DeclCXX.cpp | 1487 if (!declaresSameEntity(D, R.front())) in allLookupResultsAreTheSame() 2154 if (declaresSameEntity(D, OtherD) || recursivelyOverrides(OtherD, D)) in getCorrespondingMethodInClass()
|
| H A D | TypePrinter.cpp | 1367 if (declaresSameEntity(PNA->getTypedefType()->getAsCXXRecordDecl(), in printRecordBefore()
|
| H A D | ExprConstant.cpp | 5735 if (BaseClass && declaresSameEntity(BaseClass, Base)) in isBaseClassPublic() 5786 if (!Paths && (declaresSameEntity(DynType->Type, C) || in HandleDynamicCast() 5810 if (declaresSameEntity(Class, C)) in HandleDynamicCast() 5860 if (declaresSameEntity(Subobj.getUnionField(), Field)) { in found() 5924 assert(declaresSameEntity(FD, in HandleUnionActiveMemberChange() 5951 assert(declaresSameEntity(Elt->getType()->getAsCXXRecordDecl(), in HandleUnionActiveMemberChange() 6219 for (; !declaresSameEntity(*FieldIt, FD); ++FieldIt) { in HandleConstructorCall()
|
| H A D | RecordLayoutBuilder.cpp | 3395 if (ID && declaresSameEntity(ID->getClassInterface(), Container)) in lookupFieldBitOffset()
|
| H A D | ASTContext.cpp | 8795 if (declaresSameEntity(lProto, rProto)) in ProtocolCompatibleWithProtocol() 9211 if (declaresSameEntity(LHS->getInterface(), RDecl)) { in areCommonBaseCompatible() 9356 while (!declaresSameEntity(RHSSuper->getInterface(), LHSInterface)) in canAssignObjCInterfaces()
|
| H A D | ItaniumMangle.cpp | 5431 return V.getUnionField() && declaresSameEntity(FD, V.getUnionField()) && in isZeroInitialized()
|
| H A D | ASTImporter.cpp | 4898 (FromSuper && !declaresSameEntity(FromSuper, ToSuper))) { in ImportDefinition() 5163 !declaresSameEntity(Super->getCanonicalDecl(), in VisitObjCImplementationDecl()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExprConstant.cpp | 692 !declaresSameEntity(ILE->getInitializedFieldInUnion(), Field)) in Build() 818 if (RD->isUnion() && !declaresSameEntity(Val.getUnionField(), *Field)) in Build()
|
| H A D | CGExprCXX.cpp | 1930 if (declaresSameEntity(getCXXRecord(Base), DevirtualizedClass)) { in EmitObjectDelete()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclBase.h | 1198 inline bool declaresSameEntity(const Decl *D1, const Decl *D2) { in declaresSameEntity() function
|
| H A D | DeclObjC.h | 1789 if (declaresSameEntity(this, I)) in isSuperClassOf()
|
| H A D | RecursiveASTVisitor.h | 2095 declaresSameEntity(RD->getLambdaCallOperator(), MD)) {
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 3082 if (!declaresSameEntity(cast<Decl>(X->getDeclContext()->getRedeclContext()), in isSameEntity() 3273 return declaresSameEntity( in isSameEntity()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 5837 declaresSameEntity(CurMethodDef->getClassInterface(), in RewriteObjCIvarRefExpr()
|