Searched refs:getClassInterface (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCInstMethSignature.cpp53 << *MethDerived->getClassInterface()
55 << *MethAncestor->getClassInterface()
62 << *MethAncestor->getClassInterface()
82 const ObjCInterfaceDecl *D = ID->getClassInterface();
H A DObjCUnusedIVarsChecker.cpp93 Cat = ID->getClassInterface()->visible_categories_begin(),
94 CatEnd = ID->getClassInterface()->visible_categories_end();
116 const ObjCInterfaceDecl *ID = D->getClassInterface();
H A DObjCMissingSuperCallChecker.cpp93 const ObjCInterfaceDecl *ID = D->getClassInterface();
H A DCheckObjCDealloc.cpp106 const ObjCInterfaceDecl *ID = D->getClassInterface();
H A DDirectIvarAssignment.cpp119 const ObjCInterfaceDecl *InterD = D->getClassInterface();
H A DDynamicTypePropagation.cpp236 dyn_cast<ObjCObjectType>(MD->getClassInterface()->getTypeForDecl()))
H A DObjCSelfInitChecker.cpp403 ObjCInterfaceDecl *ID = MD->getClassInterface()->getSuperClass();
H A DBasicObjCFoundationChecks.cpp673 const ObjCInterfaceDecl *Class = MD->getClassInterface();
1065 StaticClass = MD->getClassInterface();
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
H A DDeclObjC.cpp654 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
679 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
851 ObjCInterfaceDecl *ObjCMethodDecl::getClassInterface() { function in class:ObjCMethodDecl
855 return CD->getClassInterface();
857 return IMD->getClassInterface();
953 const ObjCInterfaceDecl *ID = IMD->getClassInterface();
966 const ObjCInterfaceDecl *ID = CatD->getClassInterface();
1015 Container = CatDecl->getClassInterface();
1349 ID = IM->getClassInterface();
1351 ID = cast<ObjCCategoryDecl>(DC)->getClassInterface();
[all...]
H A DDeclPrinter.cpp1042 Out << "@implementation " << *PID->getClassInterface() << '(' << *PID <<")\n";
1050 Out << "@interface " << *PID->getClassInterface() << '(' << *PID << ")\n";
1071 << ' ' << *AID->getClassInterface() << ";\n";
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclObjC.cpp84 receiverClass = method->getClassInterface();
131 CurrentClass = Cat->getClassInterface();
133 CurrentClass = Impl->getClassInterface();
136 CurrentClass = CatImpl->getClassInterface();
322 MDecl->createImplicitParams(Context, MDecl->getClassInterface());
372 if (ObjCInterfaceDecl *IC = MDecl->getClassInterface()) {
1123 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface();
1627 ObjCInterfaceDecl *IDecl = C ? C->getClassInterface()
1862 ObjCInterfaceDecl *IDecl = CatDecl->getClassInterface();
2597 ObjCInterfaceDecl *CCPrimary = C->getClassInterface();
[all...]
H A DSemaObjCProperty.cpp356 ObjCInterfaceDecl *CCPrimary = CDecl->getClassInterface();
841 IDecl = IC->getClassInterface();
915 IDecl = CatImplClass->getClassInterface();
1280 declaresSameEntity(IC->getClassInterface(), ClassDeclared)) {
1608 if (ObjCInterfaceDecl* IDecl = IC->getClassInterface())
1624 if ((IDecl = C->getClassInterface())) {
1652 if ((PrimaryClass = C->getClassInterface()))
2003 CurrentClass = Cat->getClassInterface();
2005 CurrentClass = Impl->getClassInterface();
H A DSemaExprObjC.cpp1098 if (ObjCInterfaceDecl *Class = CurMethod->getClassInterface())
1134 iface = impl->getClassInterface();
1677 CurMethod->getClassInterface()->getSuperClass();
1681 << CurMethod->getClassInterface()->getIdentifier();
1697 IFace = CurMethod->getClassInterface()->getSuperClass();
1714 if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface())
1736 if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface())
1772 if (Method && Method->getClassInterface())
1773 WantObjCSuper = Method->getClassInterface()->getSuperClass();
1808 if (!Method->getClassInterface()) {
[all...]
H A DSemaExprMember.cpp1291 D = CAT->getClassInterface();
1324 ClassOfMethodDecl = MD->getClassInterface();
1334 ClassOfMethodDecl = IMPD->getClassInterface();
1337 ClassOfMethodDecl = CatImplClass->getClassInterface();
1475 ObjCInterfaceDecl *IFace = MD->getClassInterface();
H A DCodeCompleteConsumer.cpp312 const ObjCInterfaceDecl *Interface = Cat->getClassInterface();
H A DSemaCodeComplete.cpp192 if (ObjCInterfaceDecl *Interface = Method->getClassInterface())
2003 if (ObjCInterfaceDecl *ID = Method->getClassInterface())
4954 Class = Category->getClassInterface();
4982 Class = Category->getClassInterface();
5171 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5287 if (ObjCInterfaceDecl *Iface = Method->getClassInterface())
5312 CDecl = CurMethod->getClassInterface();
5581 if (ObjCInterfaceDecl *ClassDecl = CurMethod->getClassInterface())
6008 AddObjCProperties(ClassImpl->getClassInterface(), false,
6041 Class = ClassImpl->getClassInterface();
[all...]
H A DSemaAccess.cpp1896 ClassOfMethodDecl = MD->getClassInterface();
1902 ClassOfMethodDecl = IMPD->getClassInterface();
1905 ClassOfMethodDecl = CatImplClass->getClassInterface();
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclObjC.h334 ObjCInterfaceDecl *getClassInterface();
335 const ObjCInterfaceDecl *getClassInterface() const {
336 return const_cast<ObjCMethodDecl*>(this)->getClassInterface();
1598 ObjCInterfaceDecl *getClassInterface() { return ClassInterface; } function in class:clang::ObjCCategoryDecl
1599 const ObjCInterfaceDecl *getClassInterface() const { return ClassInterface; } function in class:clang::ObjCCategoryDecl
1682 const ObjCInterfaceDecl *getClassInterface() const { return ClassInterface; } function in class:clang::ObjCImplDecl
1683 ObjCInterfaceDecl *getClassInterface() { return ClassInterface; } function in class:clang::ObjCImplDecl
1901 return getClassInterface()->getIdentifier();
1973 const ObjCInterfaceDecl *getClassInterface() const { return AliasedClass; } function in class:clang::ObjCCompatibleAliasDecl
1974 ObjCInterfaceDecl *getClassInterface() { retur function in class:clang::ObjCCompatibleAliasDecl
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Index/
H A DUSRGeneration.cpp295 const ObjCInterfaceDecl *ID = D->getClassInterface();
319 const ObjCInterfaceDecl *ID = CD->getClassInterface();
341 const ObjCInterfaceDecl *ID = CD->getClassInterface();
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp42 if (ID && declaresSameEntity(ID->getClassInterface(), Container))
75 return LookupFieldBitOffset(CGM, OID->getClassInterface(), OID, Ivar) /
H A DCGObjCMac.cpp2939 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
3060 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
3072 if (ID->getClassInterface()->getVisibility() == HiddenVisibility)
3159 if (ID->getClassInterface()->getVisibility() == HiddenVisibility)
3164 const ObjCInterfaceDecl *Root = ID->getClassInterface();
3173 if (ObjCInterfaceDecl *Super = ID->getClassInterface()->getSuperClass()) {
3280 ID, ID->getClassInterface(), ObjCTypes);
3317 const ObjCInterfaceDecl *OID = ID->getClassInterface();
4841 const ObjCInterfaceDecl *OI = OMD->getClassInterface();
4878 OMD->getClassInterface()
[all...]
H A DCGObjC.cpp74 const ObjCInterfaceDecl *ClassDecl = BoxingMethod->getClassInterface();
404 OMD->getClassInterface(),
442 const ObjCInterfaceDecl *iface = impl->getClassInterface();
508 StartObjCMethod(OMD, OMD->getClassInterface(), OMD->getLocStart());
750 StartObjCMethod(OMD, IMP->getClassInterface(), OMD->getLocStart());
887 EmitIvarOffset(classImpl->getClassInterface(), ivar);
1171 EmitIvarOffset(classImpl->getClassInterface(), ivar);
1274 StartObjCMethod(OMD, IMP->getClassInterface(), OMD->getLocStart());
1318 const ObjCInterfaceDecl *iface = impl->getClassInterface();
1351 MD->createImplicitParams(CGM.getContext(), IMP->getClassInterface());
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp703 const ObjCInterfaceDecl *IDecl = ImpDecl->getClassInterface();
855 ObjCInterfaceDecl *IDecl = OM->getClassInterface();
909 IDecl = CatDecl->getClassInterface();
911 IDecl = ImpDecl->getClassInterface();
1184 IDecl = CatDecl->getClassInterface();
1186 IDecl = ImpDecl->getClassInterface();
H A DTransProperties.cpp94 ObjCInterfaceDecl *iface = D->getClassInterface();
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp875 CDecl = CatDecl->getClassInterface();
1394 RewriteObjCMethodDecl(OMD->getClassInterface(), OMD, ResultStr);
1409 RewriteObjCMethodDecl(OMD->getClassInterface(), OMD, ResultStr);
2698 ObjCInterfaceDecl *BoxingClass = BoxingMethod->getClassInterface();
3350 ObjCInterfaceDecl *ClassDecl = CurMethodDef->getClassInterface();
3462 ObjCInterfaceDecl *ClassDecl = CurMethodDef->getClassInterface();
4191 ObjCInterfaceDecl *CDecl = OIMP->getClassInterface();
4200 ObjCInterfaceDecl *CDecl = CIMP->getClassInterface();
4632 ObjCInterfaceDecl *IFace = MD->getClassInterface();
7280 ObjCInterfaceDecl *CDecl = IDecl->getClassInterface();
[all...]

Completed in 300 milliseconds

12