Home
last modified time | relevance | path

Searched refs:getMethod (Results 1 – 13 of 13) sorted by relevance

/freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/
DDeclObjC.cpp68 ObjCContainerDecl::getMethod(Selector Sel, bool isInstance, in getMethod() function in ObjCContainerDecl
474 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance))) in lookupMethod()
489 if ((MethodDecl = Cat->getMethod(Sel, isInstance))) in lookupMethod()
645 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclaration()
650 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclaration()
656 Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclaration()
662 Redecl = CatD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclaration()
668 return cast<ObjCContainerDecl>(CtxD)->getMethod(getSelector(), in getNextRedeclaration()
680 if (ObjCMethodDecl *MD = IFD->getMethod(getSelector(), in getCanonicalDecl()
687 if (ObjCMethodDecl *MD = CatD->getMethod(getSelector(), in getCanonicalDecl()
[all …]
DExpr.cpp4111 ObjCMethodDecl *getMethod, in Create() argument
4117 getMethod, setMethod, RB); in Create()
DASTContext.cpp398 Ext->getMethod(ObjCMethod->getSelector(), in addRedeclaredMethods()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
DIvarInvalidationChecker.cpp447 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
498 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/
DExprObjC.h795 ObjCMethodDecl *getMethod,
804 GetAtIndexMethodDecl(getMethod),
814 ObjCMethodDecl *getMethod,
DDeclObjC.h540 ObjCMethodDecl *getMethod(Selector Sel, bool isInstance,
544 return getMethod(Sel, true/*isInstance*/, AllowHidden);
547 return getMethod(Sel, false/*isInstance*/, AllowHidden);
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaLookup.cpp2632 return cast_or_null<CXXConstructorDecl>(Result->getMethod()); in LookupDefaultConstructor()
2644 return cast_or_null<CXXConstructorDecl>(Result->getMethod()); in LookupCopyingConstructor()
2654 return cast_or_null<CXXConstructorDecl>(Result->getMethod()); in LookupMovingConstructor()
2688 return Result->getMethod(); in LookupCopyingAssignment()
2704 return Result->getMethod(); in LookupMovingAssignment()
2716 false, false)->getMethod()); in LookupDestructor()
DSemaDeclCXX.cpp4474 if (!SMOR || !SMOR->getMethod()) in specialMemberIsConstexpr()
4478 return SMOR->getMethod()->isConstexpr(); in specialMemberIsConstexpr()
4969 CXXMethodDecl *Decl = SMOR->getMethod(); in shouldDeleteForSubobjectCall()
5419 if (!SMOR->getMethod()) { in findTrivialSpecialMember()
5428 *Selected = SMOR->getMethod(); in findTrivialSpecialMember()
5429 return SMOR->getMethod()->isTrivial(); in findTrivialSpecialMember()
9681 if (!SMOR->getMethod() || SMOR->getMethod()->isTrivial() || in checkMoveAssignmentForRepeatedMove()
9682 !SMOR->getMethod()->isMoveAssignmentOperator()) in checkMoveAssignmentForRepeatedMove()
9713 if (!SMOR->getMethod()->isDefaulted()) in checkMoveAssignmentForRepeatedMove()
DSemaDeclObjC.cpp2962 ObjCMethodDecl *meth = container->getMethod(Method->getSelector(), in search()
DSemaExprObjC.cpp1138 iface->getMethod(MD->getSelector(), MD->isInstanceMethod()); in findExplicitInstancetypeDeclarer()
DSemaCodeComplete.cpp5179 SuperMethod = Class->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
5188 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
/freebsd-9-stable/cddl/contrib/dtracetoolkit/Examples/
Dj_methodcalls_example.txt322 311492 1 java/util/zip/ZipFile.getMethod
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Sema/
DSema.h750 CXXMethodDecl *getMethod() const { return Pair.getPointer(); } in getMethod() function