| /src/external/apache2/llvm/dist/clang/include/clang/Analysis/ |
| CodeInjector.h | 23 class ObjCMethodDecl; 41 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
|
| BodyFarm.h | 26 class ObjCMethodDecl; 39 Stmt *getBody(const ObjCMethodDecl *D);
|
| AnyCall.h | 97 AnyCall(const ObjCMethodDecl *D) : E(nullptr), D(D), K(ObjCMethod) {} 136 } else if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) { 149 } else if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) { 173 return cast<ObjCMethodDecl>(D)->getReturnType();
|
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| ObjCMethodList.h | 21 class ObjCMethodDecl; 28 llvm::PointerIntPair<ObjCMethodDecl *, 1> MethodAndHasMoreThanOneDecl; 33 ObjCMethodList(ObjCMethodDecl *M) 50 ObjCMethodDecl *getMethod() const { 53 void setMethod(ObjCMethodDecl *M) {
|
| AnalysisBasedWarnings.h | 24 class ObjCMethodDecl;
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| DirectIvarAssignment.cpp | 42 static bool DefaultMethodFilter(const ObjCMethodDecl *M) { 61 const ObjCMethodDecl *MD; 68 MethodCrawler(const IvarToPropertyMapTy &InMap, const ObjCMethodDecl *InMD, 86 bool (*ShouldSkipMethod)(const ObjCMethodDecl *); 189 ObjCMethodDecl *GetterMethod = 191 ObjCMethodDecl *SetterMethod = 212 static bool AttrFilter(const ObjCMethodDecl *M) {
|
| CheckObjCInstMethSignature.cpp | 39 static void CompareReturnTypes(const ObjCMethodDecl *MethDerived, 40 const ObjCMethodDecl *MethAncestor, 91 typedef llvm::DenseMap<Selector,ObjCMethodDecl*> MapTy; 112 ObjCMethodDecl *MethDerived = MI->second;
|
| IvarInvalidationChecker.cpp | 56 typedef llvm::SmallSetVector<const ObjCMethodDecl*, 2> MethodSet; 57 typedef llvm::DenseMap<const ObjCMethodDecl*, 72 void addInvalidationMethod(const ObjCMethodDecl *MD) { 80 bool hasMethod(const ObjCMethodDecl *MD) { 116 const ObjCMethodDecl *InvalidationMethod; 210 const ObjCMethodDecl *MethodD) const; 226 static bool isInvalidationMethod(const ObjCMethodDecl *M, bool LookForPartial) { 251 cast<ObjCMethodDecl>(MDI->getCanonicalDecl())); 402 const ObjCMethodDecl *SetterD = PD->getSetterMethodDecl(); 408 const ObjCMethodDecl *GetterD = PD->getGetterMethodDecl() [all...] |
| NoReturnFunctionChecker.cpp | 90 if (const ObjCMethodDecl *MD = Msg.getDecl()) {
|
| ObjCSelfInitChecker.cpp | 52 static bool isInitializationMethod(const ObjCMethodDecl *MD); 389 const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND); 424 static bool isInitializationMethod(const ObjCMethodDecl *MD) {
|
| /src/external/apache2/llvm/dist/clang/include/clang/Edit/ |
| Rewriters.h | 14 class ObjCMethodDecl;
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
| ModelInjector.h | 42 Stmt *getBody(const ObjCMethodDecl *D) override;
|
| AnalysisConsumer.cpp | 318 bool VisitObjCMethodDecl(ObjCMethodDecl *MD) { 375 // Skip ObjCMethodDecl, wait for the objc container to avoid 377 if (isa<ObjCMethodDecl>(*I)) 404 if (isa<ObjCMethodDecl>(D)) 424 if (Visited.count(D) && isa<ObjCMethodDecl>(D)) { 425 const ObjCMethodDecl *ObjCM = cast<ObjCMethodDecl>(D); 478 Visited.insert(isa<ObjCMethodDecl>(Callee) ? Callee 597 } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| ExprObjC.h | 130 ObjCMethodDecl *BoxingMethod; 136 ObjCBoxedExpr(Expr *E, QualType T, ObjCMethodDecl *method, SourceRange R) 147 ObjCMethodDecl *getBoxingMethod() const { 195 ObjCMethodDecl *ArrayWithObjectsMethod; 198 QualType T, ObjCMethodDecl * Method, 210 QualType T, ObjCMethodDecl * Method, 241 ObjCMethodDecl *getArrayWithObjectsMethod() const { 324 ObjCMethodDecl *DictWithObjectsMethod; 331 QualType T, ObjCMethodDecl *method, 351 QualType T, ObjCMethodDecl *method [all...] |
| DeclObjC.h | 119 /// ObjCMethodDecl - Represents an instance or class method declaration. 139 class ObjCMethodDecl : public NamedDecl, public DeclContext { 172 ObjCMethodDecl(SourceLocation beginLoc, SourceLocation endLoc, 226 ObjCMethodDecl *getNextRedeclarationImpl() override; 232 static ObjCMethodDecl * 242 static ObjCMethodDecl *CreateDeserialized(ASTContext &C, unsigned ID); 244 ObjCMethodDecl *getCanonicalDecl() override; 245 const ObjCMethodDecl *getCanonicalDecl() const { 246 return const_cast<ObjCMethodDecl*>(this)->getCanonicalDecl(); 271 void setAsRedeclaration(const ObjCMethodDecl *PrevMethod) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| DeclObjC.cpp | 91 ObjCMethodDecl * 112 auto *MD = dyn_cast<ObjCMethodDecl>(*Meth); 130 auto *MD = dyn_cast<ObjCMethodDecl>(*Meth); 139 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel)) 541 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const { 563 const ObjCMethodDecl **InitMethod) const { 583 if (const ObjCMethodDecl *MD = IFace->getInstanceMethod(Sel)) { 591 if (const ObjCMethodDecl *MD = Ext->getInstanceMethod(Sel)) { 684 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, 695 ObjCMethodDecl *MethodDecl = nullptr [all...] |
| ExprObjC.cpp | 29 ObjCMethodDecl *Method, SourceRange SR) 41 QualType T, ObjCMethodDecl *Method, 55 ObjCMethodDecl *method, 81 ObjCMethodDecl *method, SourceRange SR) { 112 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, 131 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, 147 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, 179 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, 198 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, 217 ObjCMethodDecl *Method, ArrayRef<Expr *> Args [all...] |
| Mangle.cpp | 191 if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) 208 else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) 291 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(DC)) { 321 void MangleContext::mangleObjCMethodName(const ObjCMethodDecl *MD, 378 void MangleContext::mangleObjCMethodNameAsSourceName(const ObjCMethodDecl *MD, 409 } else if (auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGObjCRuntime.h | 49 class ObjCMethodDecl; 119 std::string getSymbolNameForMethod(const ObjCMethodDecl *method, 139 const ObjCMethodDecl *Method) = 0; 174 const ObjCMethodDecl *Method = nullptr) = 0; 188 const ObjCMethodDecl *Method, 207 const ObjCMethodDecl *Method = nullptr) = 0; 239 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD, 245 const ObjCMethodDecl *OMD, 337 MessageSendInfo getMessageSendInfo(const ObjCMethodDecl *method,
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaExprObjC.cpp | 149 Selector Sel, const ObjCMethodDecl *Method) { 242 static ObjCMethodDecl *getNSNumberFactoryMethod(Sema &S, SourceLocation Loc, 283 ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel); 288 ObjCMethodDecl::Create(CX, SourceLocation(), SourceLocation(), Sel, 294 /*isDefined=*/false, ObjCMethodDecl::Required, 345 ObjCMethodDecl *Method = getNSNumberFactoryMethod(*this, AtLoc, NumberType, 506 ObjCMethodDecl *BoxingMethod = nullptr; 563 ObjCMethodDecl *M = ObjCMethodDecl::Create( 570 /*isDefined=*/false, ObjCMethodDecl::Required [all...] |
| SemaDeclObjC.cpp | 42 bool Sema::checkInitMethod(ObjCMethodDecl *method, 133 << cast<ObjCMethodDecl>(NewD->getDeclContext()); 136 void Sema::CheckObjCMethodOverride(ObjCMethodDecl *NewMethod, 137 const ObjCMethodDecl *Overridden) { 203 ObjCMethodDecl::param_const_iterator oi = Overridden->param_begin(), 205 for (ObjCMethodDecl::param_iterator ni = NewMethod->param_begin(), 225 bool Sema::CheckARCMethodDecl(ObjCMethodDecl *method) { 292 if (isa<ObjCMethodDecl>(ND)) { 315 << (isa<ObjCMethodDecl>(ND) 319 if (isa<ObjCMethodDecl>(ND) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/CodeGen/ |
| CodeGenABITypes.h | 52 class ObjCMethodDecl; 71 const ObjCMethodDecl *MD,
|
| /src/external/apache2/llvm/dist/clang/lib/Index/ |
| IndexBody.cpp | 132 else if (auto *MD = dyn_cast<ObjCMethodDecl>(ParentDC)) 228 if (ObjCMethodDecl *MD = E->getMethodDecl()) { 243 if (const ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter()) { 297 } else if (const ObjCMethodDecl *Getter = E->getImplicitPropertyGetter()) { 326 bool passObjCLiteralMethodCall(const ObjCMethodDecl *MD, const Expr *E) { 336 if (ObjCMethodDecl *MD = E->getBoxingMethod()) { 343 if (ObjCMethodDecl *MD = E->getDictWithObjectsMethod()) { 350 if (ObjCMethodDecl *MD = E->getArrayWithObjectsMethod()) {
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| ASTReaderInternals.h | 34 class ObjCMethodDecl; 202 SmallVector<ObjCMethodDecl *, 2> Instance; 203 SmallVector<ObjCMethodDecl *, 2> Factory;
|
| /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| ObjCMT.cpp | 58 ObjCMethodDecl *OM); 59 bool migrateProperty(ASTContext &Ctx, ObjCContainerDecl *D, ObjCMethodDecl *OM); 60 void migrateNsReturnsInnerPointer(ASTContext &Ctx, ObjCMethodDecl *OM); 63 ObjCMethodDecl *OM, 72 const ObjCMethodDecl *MethodDecl, bool ResultAnnotated); 82 const ObjCMethodDecl *MethodDecl); 177 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) 246 const ObjCMethodDecl *Method = Msg->getMethodDecl(); 380 if (isa<ObjCMethodDecl>(D) [all...] |