Home
last modified time | relevance | path

Searched refs:GetterMethod (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/Sema/
DSemaObjCProperty.cpp927 ObjCMethodDecl *GetterMethod, in DiagnosePropertyAccessorMismatch() argument
929 if (GetterMethod && in DiagnosePropertyAccessorMismatch()
930 GetterMethod->getResultType() != property->getType()) { in DiagnosePropertyAccessorMismatch()
933 result = CheckAssignmentConstraints(Loc, GetterMethod->getResultType(), in DiagnosePropertyAccessorMismatch()
938 << GetterMethod->getSelector(); in DiagnosePropertyAccessorMismatch()
939 Diag(GetterMethod->getLocation(), diag::note_declared_at); in DiagnosePropertyAccessorMismatch()
1347 ObjCMethodDecl *GetterMethod = 0; in AtomicPropertySetterGetterRules() local
1356 GetterMethod = IMPDecl->getInstanceMethod(Property->getGetterName()); in AtomicPropertySetterGetterRules()
1359 if (GetterMethod) { in AtomicPropertySetterGetterRules()
1360 Diag(GetterMethod->getLocation(), in AtomicPropertySetterGetterRules()
[all …]
DSemaDeclObjC.cpp2138 if (ObjCMethodDecl *GetterMethod = in ActOnAtEnd() local
2140 GetterMethod->setSynthesized(true); in ActOnAtEnd()
DSemaExpr.cpp6964 if (ObjCMethodDecl *GetterMethod = in ConvertPropertyForRValue() local
6966 T = getMessageSendResultType(ReceiverType, GetterMethod, in ConvertPropertyForRValue()
6969 VK = Expr::getValueKindForType(GetterMethod->getResultType()); in ConvertPropertyForRValue()