Searched refs:ObjCPropertyQueryKind (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | DeclObjC.cpp | 181 ObjCPropertyQueryKind queryKind) { in findPropertyDecl() 207 if ((queryKind == ObjCPropertyQueryKind::OBJC_PR_query_unknown && in findPropertyDecl() 209 (queryKind == ObjCPropertyQueryKind::OBJC_PR_query_class && in findPropertyDecl() 211 (queryKind == ObjCPropertyQueryKind::OBJC_PR_query_instance && in findPropertyDecl() 219 if (queryKind == ObjCPropertyQueryKind::OBJC_PR_query_unknown) in findPropertyDecl() 252 ObjCPropertyQueryKind QueryKind) const { in FindPropertyDeclaration() 383 const IdentifierInfo *PropertyId, ObjCPropertyQueryKind QueryKind) const { in FindPropertyVisibleInPrimaryClass() 2246 ObjCPropertyQueryKind QueryKind) const { in FindPropertyImplDecl() 2252 if ((QueryKind == ObjCPropertyQueryKind::OBJC_PR_query_unknown && in FindPropertyImplDecl() 2254 (QueryKind == ObjCPropertyQueryKind::OBJC_PR_query_class && in FindPropertyImplDecl() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclObjC.h | 718 enum class ObjCPropertyQueryKind : uint8_t { enum 859 ObjCPropertyQueryKind getQueryKind() const { in getQueryKind() 860 return isClassProperty() ? ObjCPropertyQueryKind::OBJC_PR_query_class : in getQueryKind() 861 ObjCPropertyQueryKind::OBJC_PR_query_instance; in getQueryKind() 864 static ObjCPropertyQueryKind getQueryKind(bool isClassProperty) { in getQueryKind() 865 return isClassProperty ? ObjCPropertyQueryKind::OBJC_PR_query_class : in getQueryKind() 866 ObjCPropertyQueryKind::OBJC_PR_query_instance; in getQueryKind() 937 ObjCPropertyQueryKind queryKind); 1082 ObjCPropertyQueryKind QueryKind) const; 1802 ObjCPropertyQueryKind QueryKind) const; [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaExprMember.cpp | 512 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) in FindGetterSetterNameDeclFromProtocolList() 534 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in FindGetterSetterNameDecl() 1440 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in LookupMemberExpr()
|
H A D | SemaExprObjC.cpp | 2013 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in HandleExprPropertyRefExpr() 2029 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in HandleExprPropertyRefExpr() 2089 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in HandleExprPropertyRefExpr() 2220 &propertyName, ObjCPropertyQueryKind::OBJC_PR_query_class)) { in ActOnClassPropertyRefExpr()
|
H A D | SemaObjCProperty.cpp | 1000 ObjCPropertyQueryKind QueryKind) { in hasWrittenStorageAttribute() 1065 SourceLocation PropertyIvarLoc, ObjCPropertyQueryKind QueryKind) { in ActOnPropertyImplDecl()
|
H A D | SemaDeclObjC.cpp | 3963 ? ObjCPropertyQueryKind::OBJC_PR_query_class in DiagnoseCategoryDirectMembersProtocolConformance() 3964 : ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in DiagnoseCategoryDirectMembersProtocolConformance()
|
H A D | SemaLookup.cpp | 4934 Name, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in LookupPotentialTypoResult()
|
H A D | SemaCodeComplete.cpp | 8850 PropertyName, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in CodeCompleteObjCPropertySynthesizeIvar()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaObjC.h | 964 ObjCPropertyQueryKind QueryKind);
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseObjc.cpp | 2414 propertyIvarLoc, ObjCPropertyQueryKind::OBJC_PR_query_unknown); in ParseObjCPropertySynthesize() 2477 isClassProperty ? ObjCPropertyQueryKind::OBJC_PR_query_class in ParseObjCPropertyDynamic() 2478 : ObjCPropertyQueryKind::OBJC_PR_query_unknown); in ParseObjCPropertyDynamic()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangASTSource.cpp | 1156 &name_identifier, ObjCPropertyQueryKind::OBJC_PR_query_instance)); in FindObjCPropertyAndIvarDeclsWithOrigin()
|