HomeSort by relevance Sort by last modified time
    Searched refs:ObjCImplementationDecl (Results 1 - 25 of 50) sorted by null

1 2

  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCInstMethSignature.cpp 43 const ObjCImplementationDecl *ID) {
79 static void CheckObjCInstMethSignature(const ObjCImplementationDecl *ID,
95 for (ObjCImplementationDecl::instmeth_iterator I=ID->instmeth_begin(),
134 check::ASTDecl<ObjCImplementationDecl> > {
136 void checkASTDecl(const ObjCImplementationDecl *D, AnalysisManager& mgr,
ObjCMissingSuperCallChecker.cpp 68 check::ASTDecl<ObjCImplementationDecl> > {
72 void checkASTDecl(const ObjCImplementationDecl *D, AnalysisManager &Mgr,
75 bool isCheckableClass(const ObjCImplementationDecl *D,
91 bool ObjCSuperCallChecker::isCheckableClass(const ObjCImplementationDecl *D,
168 void ObjCSuperCallChecker::checkASTDecl(const ObjCImplementationDecl *D,
184 for (ObjCImplementationDecl::instmeth_iterator I = D->instmeth_begin(),
CheckObjCDealloc.cpp 100 static void checkObjCDealloc(const ObjCImplementationDecl *D,
161 for (ObjCImplementationDecl::instmeth_iterator I = D->instmeth_begin(),
215 for (ObjCImplementationDecl::propimpl_iterator I = D->propimpl_begin(),
279 check::ASTDecl<ObjCImplementationDecl> > {
281 void checkASTDecl(const ObjCImplementationDecl *D, AnalysisManager& mgr,
285 checkObjCDealloc(cast<ObjCImplementationDecl>(D), mgr.getLangOpts(), BR);
ObjCUnusedIVarsChecker.cpp 84 if (const ObjCImplementationDecl *ID = dyn_cast<ObjCImplementationDecl>(D)) {
87 for (ObjCImplementationDecl::propimpl_iterator I = ID->propimpl_begin(),
113 static void checkObjCUnusedIvar(const ObjCImplementationDecl *D,
159 // to go from the ObjCImplementationDecl to the lexically "nested"
186 check::ASTDecl<ObjCImplementationDecl> > {
188 void checkASTDecl(const ObjCImplementationDecl *D, AnalysisManager& mgr,
DirectIvarAssignment.cpp 60 public Checker<check::ASTDecl<ObjCImplementationDecl> > {
96 void checkASTDecl(const ObjCImplementationDecl *D, AnalysisManager& Mgr,
122 void DirectIvarAssignment::checkASTDecl(const ObjCImplementationDecl *D,
149 for (ObjCImplementationDecl::instmeth_iterator I = D->instmeth_begin(),
IvarInvalidationChecker.cpp 222 void visit(const ObjCImplementationDecl *D) const;
246 assert(!isa<ObjCImplementationDecl>(D));
376 visit(const ObjCImplementationDecl *ImplD) const {
741 public Checker<check::ASTDecl<ObjCImplementationDecl> > {
745 void checkASTDecl(const ObjCImplementationDecl *D, AnalysisManager& Mgr,
  /external/clang/lib/ARCMigrate/
Transforms.h 62 ObjCImplementationDecl *ImpD;
66 ObjCImplementationDecl *D)
70 ObjCImplementationDecl *getImplementationDecl() { return ImpD; }
TransEmptyStatementsAndDealloc.cpp 207 typedef DeclContext::specific_decl_iterator<ObjCImplementationDecl>
213 for (ObjCImplementationDecl::instmeth_iterator
ObjCMT.cpp 38 const ObjCImplementationDecl *ImpDecl);
307 const ObjCImplementationDecl *ImpDecl,
464 const ObjCImplementationDecl *ImpDecl) {
723 else if (const ObjCImplementationDecl *ImpDecl =
724 dyn_cast<ObjCImplementationDecl>(*D))
Transforms.cpp 331 bool TraverseObjCImplementationDecl(ObjCImplementationDecl *D) {
531 typedef DeclContext::specific_decl_iterator<ObjCImplementationDecl>
535 for (ObjCImplementationDecl::instmeth_iterator
TransProperties.cpp 49 ObjCImplementationDecl *CurImplD;
92 void doTransform(ObjCImplementationDecl *D) {
  /external/clang/lib/AST/
DeclObjC.cpp 524 if (ObjCImplementationDecl *ImpDecl = getImplementation())
643 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD))
652 } else if (ObjCImplementationDecl *ImplD =
653 dyn_cast<ObjCImplementationDecl>(CtxD)) {
678 if (ObjCImplementationDecl *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) {
    [all...]
DeclPrinter.cpp 73 void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
303 isa<ObjCImplementationDecl>(*D) ||
949 void DeclPrinter::VisitObjCImplementationDecl(ObjCImplementationDecl *OID) {
961 for (ObjCImplementationDecl::ivar_iterator I = OID->ivar_begin(),
    [all...]
DumpXML.cpp 807 // ObjCImplementationDecl
808 void visitObjCImplementationDeclAttrs(ObjCImplementationDecl *D) {
811 void visitObjCImplementationDeclChildren(ObjCImplementationDecl *D) {
815 for (ObjCImplementationDecl::init_iterator
  /external/clang/lib/CodeGen/
CGObjCRuntime.h 45 class ObjCImplementationDecl;
82 const ObjCImplementationDecl *OID,
143 virtual void GenerateClass(const ObjCImplementationDecl *OID) = 0;
CGObjCRuntime.cpp 30 const ObjCImplementationDecl *ID,
34 // FIXME: We should eliminate the need to have ObjCImplementationDecl passed
72 const ObjCImplementationDecl *OID,
CGObjCMac.cpp     [all...]
CodeGenModule.h 54 class ObjCImplementationDecl;
    [all...]
CodeGenFunction.h 63 class ObjCImplementationDecl;
    [all...]
  /external/clang/tools/libclang/
IndexDecl.cpp 161 bool VisitObjCImplementationDecl(const ObjCImplementationDecl *D) {
175 for (ObjCImplementationDecl::ivar_iterator
CursorVisitor.h 228 bool VisitObjCImplementationDecl(ObjCImplementationDecl *D);
  /external/clang/include/clang/AST/
DeclObjC.h 739 ObjCImplementationDecl *getImplementation() const;
740 void setImplementation(ObjCImplementationDecl *ImplD);
    [all...]
ASTContext.h     [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 66 !isa<ObjCImplementationDecl>(method->getDeclContext()))
    [all...]
SemaObjCProperty.cpp     [all...]

Completed in 412 milliseconds

1 2