HomeSort by relevance Sort by last modified time
    Searched refs:IDecl (Results 1 - 21 of 21) sorted by null

  /external/clang/lib/Sema/
SemaDeclObjC.cpp 438 explicit ObjCInterfaceValidatorCCC(ObjCInterfaceDecl *IDecl)
439 : CurrentIDecl(IDecl) {}
468 ObjCInterfaceDecl *IDecl,
485 nullptr, llvm::make_unique<ObjCInterfaceValidatorCCC>(IDecl),
493 if (declaresSameEntity(PrevDecl, IDecl)) {
496 IDecl->setEndOfDefinitionLoc(ClassLoc);
515 if (NamedDecl *IDecl = T->getAs<ObjCObjectType>()->getInterface()) {
516 SuperClassDecl = dyn_cast<ObjCInterfaceDecl>(IDecl);
586 IDecl->setSuperClass(SuperClassTInfo);
587 IDecl->setEndOfDefinitionLoc(SuperClassTInfo->getTypeLoc().getLocEnd())
    [all...]
SemaObjCProperty.cpp 590 ObjCInterfaceDecl *IDecl = ObjPtrTy->getObjectType()->getInterface();
591 if (IDecl)
594 if (IDecl->ClassImplementsProtocol(PNSCopying, true))
    [all...]
SemaExprMember.cpp     [all...]
SemaDecl.cpp 443 } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) {
444 (void)DiagnoseUseOfDecl(IDecl, NameLoc);
446 T = Context.getObjCInterfaceType(IDecl);
    [all...]
SemaCodeComplete.cpp     [all...]
SemaExpr.cpp 124 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(D)) {
125 if (IDecl->getDefinition()) {
126 D = IDecl->getDefinition();
579 if (ObjCInterfaceDecl *IDecl = OTy->getInterface()) {
581 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 784 bool ObjCMethodCall::canBeOverridenInSubclass(ObjCInterfaceDecl *IDecl,
786 assert(IDecl);
794 SourceLocation InterfLoc = IDecl->getEndOfDefinitionLoc();
810 D = IDecl->lookupMethod(Sel, true);
822 IDecl = D->getClassInterface();
823 if (!IDecl)
826 IDecl = IDecl->getSuperClass();
827 if (!IDecl)
867 if (ObjCInterfaceDecl *IDecl = ReceiverT->getInterfaceDecl()
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 434 ObjCInterfaceDecl *IDecl = ObjPtrTy->getObjectType()->getInterface();
435 if (IDecl &&
436 IDecl->lookupNestedProtocol(&Context.Idents.get("NSCopying")))
601 const ObjCInterfaceDecl *IDecl,
612 DeclContext::lookup_result R = IDecl->lookup(Property->getDeclName());
661 static bool rewriteToObjCInterfaceDecl(const ObjCInterfaceDecl *IDecl,
664 const ObjCList<ObjCProtocolDecl> &Protocols = IDecl->getReferencedProtocols();
667 IDecl->getSuperClass() ? IDecl->getSuperClassLoc() : IDecl->getLocation()
    [all...]
TransAutoreleasePool.cpp 389 bool isNSAutoreleasePool(ObjCInterfaceDecl *IDecl) {
390 return IDecl && IDecl->getIdentifier() == PoolII;
  /external/clang/lib/Analysis/
CallGraph.cpp 69 if (ObjCInterfaceDecl *IDecl = ME->getReceiverInterface()) {
75 D = IDecl->lookupPrivateMethod(Sel);
77 D = IDecl->lookupPrivateClassMethod(Sel);
  /external/clang/lib/AST/
DeclObjC.cpp 166 if (auto *IDecl = dyn_cast<ObjCInterfaceDecl>(DC)) {
167 for (const auto *Ext : IDecl->known_extensions())
    [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp 271 void RewriteObjCMethodDecl(const ObjCInterfaceDecl *IDecl,
338 virtual void RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl,
532 void RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl,
    [all...]
RewriteModernObjC.cpp 325 void RewriteObjCMethodDecl(const ObjCInterfaceDecl *IDecl,
400 bool IsTagDefinedInsideClass(ObjCContainerDecl *IDecl, TagDecl *Tag,
454 void RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl,
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 374 ObjCInterfaceDecl *IDecl = const_cast<ObjCInterfaceDecl *>(InterfaceD);
375 for (const ObjCIvarDecl *Iv = IDecl->all_declared_ivar_begin(); Iv;
  /external/clang/include/clang/AST/
DeclObjC.h     [all...]
ASTContext.h     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 868 virtual bool canBeOverridenInSubclass(ObjCInterfaceDecl *IDecl,
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp     [all...]
CGObjCMac.cpp     [all...]

Completed in 481 milliseconds