Home
last modified time | relevance | path

Searched refs:ImpDecl (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp2145 void SemaObjC::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, in CheckImplementationIvars() argument
2148 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()
2150 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); in CheckImplementationIvars()
2160 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2167 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()
2178 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()
2179 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use); in CheckImplementationIvars()
2198 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2200 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()
4682 ObjCImplDecl *ImpDecl = nullptr) { in checkObjCDirectMethodClashes() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp764 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local
765 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
766 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
H A DASTImporter.cpp10687 const Decl *ImpDecl = importChecked(Err, FromPath[Idx]); in ImportAPValue() local
10690 ToPath[Idx] = cast<const CXXRecordDecl>(ImpDecl->getCanonicalDecl()); in ImportAPValue()
10714 const Decl *ImpDecl = importChecked( in ImportAPValue() local
10718 Base = APValue::LValueBase(cast<ValueDecl>(ImpDecl), in ImportAPValue()
10746 const Decl *ImpDecl = importChecked(Err, FromDecl); in ImportAPValue() local
10754 ImpDecl, FromPath[LoopIdx].getAsBaseOrMember().getInt())); in ImportAPValue()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h403 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,