HomeSort by: relevance | last modified time | path
    Searched refs:IFace (Results 1 - 19 of 19) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 108 maybeAdjustInterfaceForSubscriptingCheck(const ObjCInterfaceDecl *IFace,
111 assert(IFace && Receiver);
115 return IFace;
120 return IFace;
126 return IFace;
137 return IFace;
143 return IFace;
152 return IFace;
155 static bool canRewriteToSubscriptSyntax(const ObjCInterfaceDecl *&IFace,
162 IFace = maybeAdjustInterfaceForSubscriptingCheck(IFace, Rec, Ctx)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 477 const ObjCInterfaceDecl *IFace = this;
478 while (IFace) {
479 if (IFace->hasDesignatedInitializers())
480 return IFace;
481 if (!IFace->inheritsDesignatedInitializers())
483 IFace = IFace->getSuperClass();
548 const ObjCInterfaceDecl *IFace= findInterfaceWithDesignatedInitializers();
549 if (!IFace)
552 for (const auto *MD : IFace->instance_methods()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCodeComplete.cpp 915 if (const auto *Iface = dyn_cast<ObjCInterfaceDecl>(ND))
916 return C.getObjCInterfaceType(Iface);
4739 } else if (ObjCInterfaceDecl *IFace =
4743 for (auto *Cat : IFace->known_categories())
4751 for (auto *I : IFace->all_referenced_protocols())
4758 if (IFace->getSuperClass())
4759 AddObjCProperties(CCContext, IFace->getSuperClass(), AllowCategories,
5444 ObjCInterfaceDecl *IFace = getObjCInterfaceDecl(ClassNamePtr, ClassNameLoc);
5445 if (!IFace)
5454 AddObjCProperties(CCContext, IFace, true
    [all...]
SemaExprObjC.cpp 1276 ObjCInterfaceDecl *IFace = CurMD->getClassInterface();
1281 if (ObjCMethodDecl *MD = IFace->lookupMethod(Sel, /*isInstance=*/true))
1283 if (ObjCMethodDecl *MD = IFace->lookupPrivateMethod(Sel, /*isInstance=*/true))
1285 if (ObjCMethodDecl *MD = IFace->lookupMethod(Sel, /*isInstance=*/false))
1287 if (ObjCMethodDecl *MD = IFace->lookupPrivateMethod(Sel, /*isInstance=*/false))
1633 const ObjCContainerDecl *iface; local
1636 iface = catImpl->getCategoryDecl();
1638 iface = impl->getClassInterface();
1642 iface->getMethod(MD->getSelector(), MD->isInstanceMethod());
1939 if (ObjCInterfaceDecl *iface = objType->getInterface())
    [all...]
SemaExprMember.cpp 1546 ObjCInterfaceDecl *IFace = MD->getClassInterface();
1547 if (!IFace)
1551 if ((Getter = IFace->lookupClassMethod(Sel))) {
1556 Getter = IFace->lookupPrivateMethod(Sel, false);
1563 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
1567 Setter = IFace->lookupPrivateMethod(SetterSel, false);
SemaObjCProperty.cpp 229 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) {
232 ObjCInterfaceDecl *CurrentInterfaceDecl = IFace;
250 for (auto *P : IFace->all_referenced_protocols()) {
1836 /// declared in class 'IFace'.
1838 Sema::IvarBacksCurrentMethodAccessor(ObjCInterfaceDecl *IFace,
1842 ObjCMethodDecl *IMD = IFace->lookupMethod(Method->getSelector(),
1849 for (const auto *Property : IFace->instance_properties()) {
1857 for (const auto *Ext : IFace->known_extensions())
SemaLookup.cpp 3922 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Ctx)) {
3924 for (auto *Cat : IFace->visible_categories()) {
3931 for (auto *I : IFace->all_referenced_protocols()) {
3938 if (IFace->getSuperClass()) {
3940 lookupInDeclContext(IFace->getSuperClass(), Result, QualifiedNameLookup,
3946 if (IFace->getImplementation()) {
3948 lookupInDeclContext(IFace->getImplementation(), Result,
4013 if (ObjCInterfaceDecl *IFace = Method->getClassInterface()) {
4014 lookupInDeclContext(IFace, IvarResult,
SemaPseudoObject.cpp 657 if (const ObjCInterfaceDecl *IFace =
666 if (ObjCPropertyDecl *prop1 = IFace->FindPropertyDeclaration(
SemaType.cpp 8598 ObjCInterfaceDecl *IFace = dyn_cast_or_null<ObjCInterfaceDecl>(Def);
8604 if (Tag || IFace) {
8613 if (IFace && IFace->hasExternalLexicalStorage())
8614 Source->CompleteType(IFace);
8691 if (IFace && !IFace->isInvalidDecl() && !IFace->getLocation().isInvalid())
8692 Diag(IFace->getLocation(), diag::note_forward_class);
SemaExpr.cpp 2784 ObjCInterfaceDecl *IFace = nullptr;
2786 IFace = CurMethod->getClassInterface();
2789 if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) {
2798 !declaresSameEntity(ClassDeclared, IFace) &&
2807 if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) {
2809 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
2811 declaresSameEntity(IFace, ClassDeclared))
2835 ObjCInterfaceDecl *IFace = CurMethod->getClassInterface();
2836 assert(IFace && "should not reference ivar from this context")
    [all...]
SemaDeclAttr.cpp 5581 ObjCInterfaceDecl *IFace;
5583 IFace = CatDecl->getClassInterface();
5585 IFace = cast<ObjCInterfaceDecl>(Ctx);
5587 if (!IFace)
5590 IFace->setHasDesignatedInitializers();
SemaChecking.cpp 7478 const ObjCInterfaceDecl *IFace;
7479 if (MD->isInstanceMethod() && (IFace = MD->getClassInterface()) &&
7480 IFace->getIdentifier()->isStr("NSBundle") &&
SemaDecl.cpp 14646 auto IFace = MD->getClassInterface();
14647 if (!IFace)
14649 auto SuperD = IFace->getSuperClass();
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ObjCMT.cpp 1703 const ObjCInterfaceDecl *IFace = ImplD->getClassInterface();
1704 if (!IFace || IFace->hasDesignatedInitializers())
1714 const ObjCMethodDecl *IFaceM = IFace->getMethod(MD->getSelector(),
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 748 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>((*DI))) {
749 if (!IFace->isThisDeclarationADefinition()) {
751 SourceLocation StartLoc = IFace->getBeginLoc();
767 ObjCInterfacesSeen.push_back(IFace);
4452 ObjCInterfaceDecl *IFace = MD->getClassInterface();
4453 Name = std::string(IFace->getName());
RewriteObjC.cpp 680 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>((*DI))) {
681 if (!IFace->isThisDeclarationADefinition()) {
683 SourceLocation StartLoc = IFace->getBeginLoc();
3640 ObjCInterfaceDecl *IFace = MD->getClassInterface();
3641 Name = std::string(IFace->getName());
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclObjC.h 2426 void setClassInterface(ObjCInterfaceDecl *IFace);
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 6588 const ObjCInterfaceDecl *IFace = cast<ObjCInterfaceDecl>(D);
6590 if (const ObjCInterfaceDecl *Def = IFace->getDefinition())
6592 } else if (ObjCImplementationDecl *Impl = IFace->getImplementation())
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 4365 /// declared in class 'IFace'.
4366 bool IvarBacksCurrentMethodAccessor(ObjCInterfaceDecl *IFace,

Completed in 149 milliseconds