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

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
BodyFarm.cpp 725 } else if (auto *ImplDecl = dyn_cast<ObjCImplDecl>(Container)) {
726 PrimaryInterface = ImplDecl->getClassInterface();
782 const ObjCImplementationDecl *ImplDecl =
784 if (ImplDecl) {
785 for (const auto *I : ImplDecl->property_impls()) {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 558 ObjCImplDecl *ImplDecl = Interface->getImplementation();
561 ImplDecl->FindPropertyImplIvarDecl(IvarDecl->getIdentifier());
568 OS << "The '" << *IvarDecl << "' ivar in '" << *ImplDecl
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp 1052 ObjCMethodDecl *ImplDecl = ObjCMethodDecl::Create(
1060 ImplDecl->getMethodFamily();
1062 ImplDecl->setAttrs(Decl->getAttrs());
1063 ImplDecl->setSelfDecl(Decl->getSelfDecl());
1064 ImplDecl->setCmdDecl(Decl->getCmdDecl());
1067 ImplDecl->setMethodParams(Context, Decl->parameters(), SelLocs);
1068 ImplDecl->setLexicalDeclContext(Impl);
1069 ImplDecl->setDefined(false);
1070 return ImplDecl;
SemaDeclObjC.cpp 3838 } else if (auto *ImplDecl = dyn_cast<ObjCImplementationDecl>(OCD)) {
3839 IntfDecl = ImplDecl->getClassInterface();
3840 Ivars = ImplDecl->ivars();
4879 // with the ImplDecl,
4881 // ImplDecl for the same Class,
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 1336 if (auto *ImplDecl = dyn_cast<ObjCImplDecl>(Container))
1338 Container = ImplDecl->getClassInterface();
1661 if (ObjCImplementationDecl *ImplDecl = getImplementation()) {
1663 if (!ImplDecl->ivar_empty()) {
1665 for (auto *IV : ImplDecl->ivars()) {
ASTContext.cpp 2774 if (ObjCImplementationDecl *ImplDecl = OI->getImplementation())
2775 count += ImplDecl->ivar_size();

Completed in 103 milliseconds