reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Derived Classes

tools/clang/include/clang/AST/DeclObjC.h
 2498 class ObjCCategoryImplDecl : public ObjCImplDecl {
 2551 class ObjCImplementationDecl : public ObjCImplDecl {

Declarations

gen/tools/clang/include/clang/AST/DeclNodes.inc
  133 ABSTRACT_DECL(OBJCIMPL(ObjCImpl, ObjCContainerDecl))
tools/clang/include/clang/AST/ASTContext.h
  107 class ObjCImplDecl;
tools/clang/include/clang/AST/DeclBase.h
   58 class ObjCImplDecl;
tools/clang/include/clang/Sema/Sema.h
  146   class ObjCImplDecl;

References

gen/tools/clang/include/clang/Sema/AttrParsedAttrImpl.inc
 2142   if (!D || (!isa<ObjCInterfaceDecl>(D) && !isa<ObjCImplDecl>(D))) {
 3540     return isa<ObjCImplDecl>(D);
include/llvm/ADT/STLExtras.h
   75       typename std::add_pointer<typename std::add_const<T>::type>::type;
include/llvm/Support/Casting.h
   57   static inline bool doit(const From &Val) {
   58     return To::classof(&Val);
  104   static inline bool doit(const From *Val) {
  106     return isa_impl<To, From>::doit(*Val);
  106     return isa_impl<To, From>::doit(*Val);
  122     return isa_impl_wrap<To, SimpleFrom,
  132     return isa_impl_cl<To,FromTy>::doit(Val);
  142   return isa_impl_wrap<X, const Y,
  172   using ret_type = To *;       // Pointer arg case, return Ty*
  176   using ret_type = const To *; // Constant pointer arg case, return const Ty*
  198   using ret_type = typename cast_retty<To, SimpleFrom>::ret_type;
  204   using ret_type = typename cast_retty_impl<To,FromTy>::ret_type;
  210       To, From, typename simplify_type<From>::SimpleType>::ret_type;
  227   static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
  228     typename cast_retty<To, FromTy>::ret_type Res2
  256 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  265   return cast_convert_val<X, Y*,
  265   return cast_convert_val<X, Y*,
  266                           typename simplify_type<Y*>::SimpleType>::doit(Val);
  337 LLVM_NODISCARD inline typename cast_retty<X, Y>::ret_type dyn_cast(Y &Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
  366 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type
  367 dyn_cast_or_null(Y *Val) {
tools/clang/include/clang/AST/ASTContext.h
  266   llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*> ObjCImpls;
tools/clang/include/clang/AST/DeclBase.h
 2474   static const ToTy *doit(const DeclContext *Val) {
 2478   static ToTy *doit(DeclContext *Val) {
 2491     return To::classofKind(Val.getDeclKind());
 2514   static const ToTy *doit(const ::clang::DeclContext *Val) {
 2515     return ::clang::cast_convert_decl_context<ToTy>::doit(Val);
 2521   static ToTy *doit(::clang::DeclContext *Val) {
 2522     return ::clang::cast_convert_decl_context<ToTy>::doit(Val);
tools/clang/include/clang/AST/DeclObjC.h
 2498 class ObjCCategoryImplDecl : public ObjCImplDecl {
 2551 class ObjCImplementationDecl : public ObjCImplDecl {
tools/clang/include/clang/Sema/Sema.h
 3788   void ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl,
 3794   void DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl,
 3799   void diagnoseNullResettableSynthesizedSetters(const ObjCImplDecl *impDecl);
 3803   void DefaultSynthesizeProperties(Scope *S, ObjCImplDecl *IMPDecl,
 3864   void AtomicPropertySetterGetterRules(ObjCImplDecl* IMPDecl,
 3892                                   ObjCImplDecl* IMPDecl,
tools/clang/lib/ARCMigrate/ObjCMT.cpp
 1046     else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl))
 1046     else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl))
 1317     else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl))
 1317     else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl))
tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
  152       return isa<ObjCImplDecl>(ContD);
tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
  106     ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(D->getDeclContext());
  106     ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(D->getDeclContext());
tools/clang/lib/AST/ASTContext.cpp
  448   if (const auto *IMD = dyn_cast<ObjCImplDecl>(DC)) {
  448   if (const auto *IMD = dyn_cast<ObjCImplDecl>(DC)) {
 2601   llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
 2611   llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator
 2649   if (const auto *IMD = dyn_cast<ObjCImplDecl>(ND->getDeclContext()))
 2649   if (const auto *IMD = dyn_cast<ObjCImplDecl>(ND->getDeclContext()))
tools/clang/lib/AST/ASTImporter.cpp
 4876   auto *InImpl = cast<ObjCImplDecl>(LexicalDC);
 4876   auto *InImpl = cast<ObjCImplDecl>(LexicalDC);
tools/clang/lib/AST/DeclObjC.cpp
 1148   if (auto *IMD = dyn_cast<ObjCImplDecl>(getDeclContext()))
 1148   if (auto *IMD = dyn_cast<ObjCImplDecl>(getDeclContext()))
 1251   } else if (const auto *IMD =
 1252                  dyn_cast<ObjCImplDecl>(Method->getDeclContext())) {
tools/clang/lib/Analysis/BodyFarm.cpp
  721   } else if (auto *ImplDecl = dyn_cast<ObjCImplDecl>(Container)) {
tools/clang/lib/CodeGen/Address.h
  108 template <class U> inline U cast(CodeGen::Address addr) {
tools/clang/lib/CodeGen/CGObjC.cpp
  649     const ObjCImplDecl *impl = cast<ObjCImplDecl>(method->getDeclContext());
  649     const ObjCImplDecl *impl = cast<ObjCImplDecl>(method->getDeclContext());
tools/clang/lib/CodeGen/CGObjCMac.cpp
 1562   bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const;
 6330     const ObjCImplDecl *OD) const {
tools/clang/lib/CodeGen/CodeGenModule.cpp
 5211     if (auto *OID = dyn_cast<ObjCImplDecl>(I)) {
 5211     if (auto *OID = dyn_cast<ObjCImplDecl>(I)) {
tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
  592     bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const {
tools/clang/lib/Index/IndexDecl.cpp
   48                              const ObjCImplDecl *Container) {
  517     auto *Container = cast<ObjCImplDecl>(D->getDeclContext());
tools/clang/lib/Index/IndexingContext.cpp
  251     return MD->isThisDeclarationADefinition() || isa<ObjCImplDecl>(ContainerDC);
  257       isa<ObjCImplDecl>(D) ||
tools/clang/lib/Sema/SemaAccess.cpp
 1919       if (ObjCImplDecl *Impl
 1920             = dyn_cast<ObjCImplDecl>(FD->getLexicalDeclContext())) {
tools/clang/lib/Sema/SemaCodeComplete.cpp
 5863   if (isa<ObjCImplDecl>(CurContext))
tools/clang/lib/Sema/SemaDecl.cpp
 3800       : isa<ObjCImplDecl>(newMethod->getDeclContext()) ? AMK_Redeclaration
tools/clang/lib/Sema/SemaDeclAttr.cpp
 7625         if (const auto *Impl = dyn_cast<ObjCImplDecl>(C)) {
 7625         if (const auto *Impl = dyn_cast<ObjCImplDecl>(C)) {
 7648     if (const auto *CatOrImpl = dyn_cast<ObjCImplDecl>(Ctx)) {
 7648     if (const auto *CatOrImpl = dyn_cast<ObjCImplDecl>(Ctx)) {
 7695       if (auto *Imp = dyn_cast<ObjCImplDecl>(Ctx))
 7695       if (auto *Imp = dyn_cast<ObjCImplDecl>(Ctx))
tools/clang/lib/Sema/SemaDeclObjC.cpp
  153       else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(DC))
  153       else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(DC))
  441       ObjCImplDecl *ImplDeclOfMethodDef =
  442         dyn_cast<ObjCImplDecl>(MDecl->getDeclContext());
  445       ObjCImplDecl *ImplDeclOfMethodDecl = nullptr;
 2808                                       ObjCImplDecl* IMPDecl,
 2950 void Sema::ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl,
 4337       } else if (isa<ObjCImplDecl>(ObjCMethod->getDeclContext())) {
 4660   if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) {
 4660   if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) {
 4720     else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(ClassDecl))
 4720     else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(ClassDecl))
tools/clang/lib/Sema/SemaExprObjC.cpp
 1132         isa<ObjCImplDecl>(MatchingMethodDecl->getDeclContext()) ||
 1472   if (const ObjCImplDecl *impl =
 1473         dyn_cast<ObjCImplDecl>(MD->getDeclContext())) {
tools/clang/lib/Sema/SemaObjCProperty.cpp
 1833 void Sema::DefaultSynthesizeProperties(Scope *S, ObjCImplDecl *IMPDecl,
 1940     ObjCImplDecl *IMPDecl, ObjCContainerDecl *CDecl, ObjCCategoryDecl *C,
 1975 void Sema::DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl,
 2055       if (ObjCImplDecl *IMP = PrimaryClass->getImplementation()) {
 2083 void Sema::diagnoseNullResettableSynthesizedSetters(const ObjCImplDecl *impDecl) {
 2111 Sema::AtomicPropertySetterGetterRules (ObjCImplDecl* IMPDecl,
 2529     else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(CD))
 2529     else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(CD))
tools/clang/lib/Serialization/ASTReader.cpp
 8109 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD,
 8120   if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
 8120   if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
tools/clang/lib/Serialization/ASTReaderDecl.cpp
  441     void VisitObjCImplDecl(ObjCImplDecl *D);
 1287 void ASTDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) {
 2768       isa<ObjCImplDecl>(D) ||
tools/clang/lib/Serialization/ASTWriterDecl.cpp
  141     void VisitObjCImplDecl(ObjCImplDecl *D);
  854 void ASTDeclWriter::VisitObjCImplDecl(ObjCImplDecl *D) {
 2334   if (isa<FileScopeAsmDecl>(D) || isa<ObjCImplDecl>(D))
tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
  161   const ObjCImplDecl *getContainingObjCImpl(const LocationContext *LCtx) const;
  558     ObjCImplDecl *ImplDecl = Interface->getImplementation();
  626   const ObjCImplDecl *Container = getContainingObjCImpl(LCtx);
  683   const ObjCImplDecl *Container = getContainingObjCImpl(C.getLocationContext());
  796 const ObjCImplDecl *
  799   return cast<ObjCImplDecl>(MD->getDeclContext());
tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
   56   const ObjCImplDecl *ImplD = nullptr;
tools/clang/lib/Tooling/Refactoring/ASTSelection.cpp
   22   if (!isa<ObjCImplDecl>(D))
tools/clang/tools/libclang/CIndex.cpp
 1179 bool CursorVisitor::VisitObjCImplDecl(ObjCImplDecl *D) {
 6473     if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
 6473     if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
tools/clang/tools/libclang/CIndexHigh.cpp
   84     if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) {
   84     if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) {
tools/clang/tools/libclang/CXIndexDataConsumer.cpp
   94     if (isa<ObjCImplDecl>(LexicalDC) && !D->isThisDeclarationADefinition())
tools/clang/tools/libclang/CursorVisitor.h
  228   bool VisitObjCImplDecl(ObjCImplDecl *D);
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
 1554     { typedef _Tp     type; };
 1558     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1580     { typedef _Tp const     type; };
 1629     { typedef _Tp   type; };
 1983     { typedef _Up     type; };
 1999     { typedef typename remove_reference<_Tp>::type*     type; };
 2003     : public __add_pointer_helper<_Tp>