Home
last modified time | relevance | path

Searched refs:ObjCPropertyQueryKind (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclObjC.cpp179 ObjCPropertyQueryKind queryKind) { in findPropertyDecl()
205 if ((queryKind == ObjCPropertyQueryKind::OBJC_PR_query_unknown && in findPropertyDecl()
207 (queryKind == ObjCPropertyQueryKind::OBJC_PR_query_class && in findPropertyDecl()
209 (queryKind == ObjCPropertyQueryKind::OBJC_PR_query_instance && in findPropertyDecl()
217 if (queryKind == ObjCPropertyQueryKind::OBJC_PR_query_unknown) in findPropertyDecl()
238 ObjCPropertyQueryKind QueryKind) const { in FindPropertyDeclaration()
371 ObjCPropertyQueryKind QueryKind) const { in FindPropertyVisibleInPrimaryClass()
2111 ObjCPropertyQueryKind QueryKind) const { in FindPropertyImplDecl()
2117 if ((QueryKind == ObjCPropertyQueryKind::OBJC_PR_query_unknown && in FindPropertyImplDecl()
2119 (QueryKind == ObjCPropertyQueryKind::OBJC_PR_query_class && in FindPropertyImplDecl()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclObjC.h717 enum class ObjCPropertyQueryKind : uint8_t { enum
881 ObjCPropertyQueryKind getQueryKind() const { in getQueryKind()
882 return isClassProperty() ? ObjCPropertyQueryKind::OBJC_PR_query_class : in getQueryKind()
883 ObjCPropertyQueryKind::OBJC_PR_query_instance; in getQueryKind()
886 static ObjCPropertyQueryKind getQueryKind(bool isClassProperty) { in getQueryKind()
887 return isClassProperty ? ObjCPropertyQueryKind::OBJC_PR_query_class : in getQueryKind()
888 ObjCPropertyQueryKind::OBJC_PR_query_instance; in getQueryKind()
959 ObjCPropertyQueryKind queryKind);
1101 ObjCPropertyQueryKind QueryKind) const;
1803 ObjCPropertyQueryKind QueryKind) const;
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprMember.cpp437 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) in FindGetterSetterNameDeclFromProtocolList()
459 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in FindGetterSetterNameDecl()
1362 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in LookupMemberExpr()
H A DSemaExprObjC.cpp1823 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in HandleExprPropertyRefExpr()
1839 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in HandleExprPropertyRefExpr()
1900 Member, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in HandleExprPropertyRefExpr()
2032 &propertyName, ObjCPropertyQueryKind::OBJC_PR_query_class)) { in ActOnClassPropertyRefExpr()
H A DSemaObjCProperty.cpp1010 ObjCPropertyQueryKind QueryKind) { in hasWrittenStorageAttribute()
1052 ObjCPropertyQueryKind QueryKind) { in ActOnPropertyImplDecl()
H A DSemaLookup.cpp4370 Name, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in LookupPotentialTypoResult()
H A DSemaCodeComplete.cpp6967 PropertyName, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in CodeCompleteObjCPropertySynthesizeIvar()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseObjc.cpp2326 ObjCPropertyQueryKind::OBJC_PR_query_unknown); in ParseObjCPropertySynthesize()
2388 isClassProperty ? ObjCPropertyQueryKind::OBJC_PR_query_class : in ParseObjCPropertyDynamic()
2389 ObjCPropertyQueryKind::OBJC_PR_query_unknown); in ParseObjCPropertyDynamic()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp1444 &name_identifier, ObjCPropertyQueryKind::OBJC_PR_query_instance)); in FindObjCPropertyAndIvarDeclsWithOrigin()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h8155 ObjCPropertyQueryKind QueryKind);