Home
last modified time | relevance | path

Searched refs:Getter (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDebugContainerModeling.cpp34 template <typename Getter>
36 Getter get) const;
71 template <typename Getter>
74 Getter get) const { in analyzerContainerDataField()
H A DDebugIteratorModeling.cpp34 template <typename Getter>
36 Getter get, SVal Default) const;
74 template <typename Getter>
77 Getter get, in analyzerIteratorDataField()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaPseudoObject.cpp273 ObjCMethodDecl *Getter; member in __anonb581425c0111::ObjCPropertyOpBuilder
283 InstanceReceiver(nullptr), Getter(nullptr), Setter(nullptr) { in ObjCPropertyOpBuilder()
595 } else if (Getter) { in isWeakProperty()
596 T = Getter->getReturnType(); in isWeakProperty()
605 if (Getter) return true; in findGetter()
609 if ((Getter = RefExpr->getImplicitPropertyGetter())) { in findGetter()
610 GetterSelector = Getter->getSelector(); in findGetter()
628 Getter = LookupMethodInReceiverType(S, prop->getGetterName(), RefExpr); in findGetter()
629 return (Getter != nullptr); in findGetter()
729 if (!Getter) { in buildGet()
[all …]
H A DSemaExprObjC.cpp2038 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); in HandleExprPropertyRefExpr() local
2041 if (!Getter) in HandleExprPropertyRefExpr()
2042 Getter = LookupMethodInQualifiedType(Sel, OPT, true); in HandleExprPropertyRefExpr()
2045 if (!Getter) in HandleExprPropertyRefExpr()
2046 Getter = IFace->lookupPrivateMethod(Sel); in HandleExprPropertyRefExpr()
2048 if (Getter) { in HandleExprPropertyRefExpr()
2050 if (SemaRef.DiagnoseUseOfDecl(Getter, MemberLoc)) in HandleExprPropertyRefExpr()
2090 if (Getter || Setter) { in HandleExprPropertyRefExpr()
2093 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
2097 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
[all …]
H A DSemaExprMember.cpp1548 ObjCMethodDecl *Getter; in LookupMemberExpr() local
1549 if ((Getter = IFace->lookupClassMethod(Sel))) { in LookupMemberExpr()
1551 if (S.DiagnoseUseOfDecl(Getter, MemberLoc)) in LookupMemberExpr()
1554 Getter = IFace->lookupPrivateMethod(Sel, false); in LookupMemberExpr()
1571 if (Getter || Setter) { in LookupMemberExpr()
1573 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
H A DSemaDeclObjC.cpp4008 if (auto *Getter = PropImpl->getGetterMethodDecl()) in ActOnAtEnd() local
4009 if (Getter->isSynthesizedAccessorStub()) in ActOnAtEnd()
4010 OID->addDecl(Getter); in ActOnAtEnd()
4881 if (auto *Getter = PropertyImpl->getGetterMethodDecl()) in ActOnMethodDeclaration() local
4882 if (Getter->getSelector() == Sel && in ActOnMethodDeclaration()
4883 Getter->isInstanceMethod() == ObjCMethod->isInstanceMethod()) { in ActOnMethodDeclaration()
4884 assert(Getter->isSynthesizedAccessorStub() && "autosynth stub expected"); in ActOnMethodDeclaration()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h368 template <typename T> struct TypeMatcher##MatcherName##Getter { \
375 ::clang::ast_matchers::internal::TypeMatcher##MatcherName##Getter, \
382 ::clang::ast_matchers::internal::TypeMatcher##MatcherName##Getter, \
395 template <typename T> struct TypeMatcher##MatcherName##Getter { \
401 ::clang::ast_matchers::internal::TypeMatcher##MatcherName##Getter, \
408 template <typename T> struct TypeLocMatcher##MatcherName##Getter { \
416 TypeLocMatcher##MatcherName##Getter, \
424 ::clang::ast_matchers::internal::TypeLocMatcher##MatcherName##Getter, \
433 template <typename T> struct TypeLocMatcher##MatcherName##Getter { \
439 ::clang::ast_matchers::internal::TypeLocMatcher##MatcherName##Getter, \
H A DASTMatchersInternal.h1871 template <typename OuterT> class Getter,
1876 using Self = TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl,
1890 new MatcherImpl<OuterT>(InnerMatcher, Getter<OuterT>::value()));
1923 template <typename InnerTBase, template <typename OuterT> class Getter,
1925 TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl, ReturnTypesF>
1927 InnerTBase, Getter, MatcherImpl,
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexBody.cpp259 if (const ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter()) { in VisitObjCMessageExpr() local
263 if (Getter->isClassMethod() && in VisitObjCMessageExpr()
264 Getter->getCanonicalDecl()->findPropertyDecl()) in VisitObjCMessageExpr()
310 } else if (const ObjCMethodDecl *Getter = E->getImplicitPropertyGetter()) { in VisitObjCPropertyRefExpr() local
314 if (Getter->isClassMethod()) { in VisitObjCPropertyRefExpr()
315 if (const auto *PD = Getter->getCanonicalDecl()->findPropertyDecl()) { in VisitObjCPropertyRefExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExprObjC.h666 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in ObjCPropertyRefExpr() argument
670 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0), in ObjCPropertyRefExpr()
676 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in ObjCPropertyRefExpr() argument
681 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0), in ObjCPropertyRefExpr()
687 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in ObjCPropertyRefExpr() argument
692 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0), in ObjCPropertyRefExpr()
811 void setImplicitProperty(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in setImplicitProperty() argument
813 PropertyOrGetter.setPointer(Getter); in setImplicitProperty()
H A DDeclCXX.h4340 IdentifierInfo *Getter, IdentifierInfo *Setter) in MSPropertyDecl() argument
4342 GetterId(Getter), SetterId(Setter) {} in MSPropertyDecl()
4351 IdentifierInfo *Getter, IdentifierInfo *Setter);
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DCompilerInstance.h696 std::unique_ptr<DependencyDirectivesGetter> Getter) { in setDependencyDirectivesGetter() argument
697 GetDependencyDirectives = std::move(Getter); in setDependencyDirectivesGetter()
/freebsd/crypto/openssl/doc/man7/
H A DEVP_PKEY-SM2.pod31 Getter that returns the default digest name.
H A DEVP_PKEY-EC.pod147 Getter that returns the default digest name.
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasAnalysis.cpp808 for (auto &Getter : ResultGetters) in run() local
809 (*Getter)(F, AM, R); in run()
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DIRMutator.cpp68 for (const auto &Getter : AllowedTypes) in mutateModule() local
69 Types.push_back(Getter(M.getContext())); in mutateModule()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DOpenMPOpt.cpp329 RuntimeFunction Getter; member
460 ICV.Getter = RTL; \ in initializeInternalControlVars()
2376 auto &GetterRFI = OMPInfoCache.RFIs[OMPInfoCache.ICVs[ICV].Getter]; in getValueForCall()
2569 auto &Getter = OMPInfoCache.RFIs[ICVInfo.Getter]; in initialize() local
2570 if (Getter.Declaration == getAssociatedFunction()) { in initialize()
5518 auto &GetterRFI = OMPInfoCache.RFIs[ICVInfo.Getter]; in registerAAs()
/freebsd/contrib/kyua/
H A DCONTRIBUTING.md172 * Getter functions/methods only need to be documented via `\return`. A
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp162 const std::string Getter = in emitSubtargetInfoMacroCalls() local
166 << Getter << ")\n"; in emitSubtargetInfoMacroCalls()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp3146 const ObjCMethodDecl *Getter) { in hasDefaultGetterName() argument
3148 if (!Getter) in hasDefaultGetterName()
3151 assert(Getter->getDeclName().isObjCZeroArgSelector()); in hasDefaultGetterName()
3153 Getter->getDeclName().getObjCSelector().getNameForSlot(0); in hasDefaultGetterName()
3350 ObjCMethodDecl *Getter = PD->getGetterMethodDecl(); in CreateTypeDefinition() local
3354 hasDefaultGetterName(PD, Getter) ? "" in CreateTypeDefinition()
3451 ObjCMethodDecl *Getter = PImpD->getGetterMethodDecl(); in CreateTypeDefinition() local
3455 hasDefaultGetterName(PD, Getter) in CreateTypeDefinition()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h986 ObjCMethodDecl *Getter,
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp5341 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCClassMetaData() local
5342 if (!Getter->isDefined()) in RewriteObjCClassMetaData()
5343 InstanceMethods.push_back(Getter); in RewriteObjCClassMetaData()
5619 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCCategoryImplDecl() local
5620 InstanceMethods.push_back(Getter); in RewriteObjCCategoryImplDecl()
H A DRewriteModernObjC.cpp7001 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCClassMetaData() local
7003 InstanceMethods.push_back(Getter); in RewriteObjCClassMetaData()
7251 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCCategoryImplDecl() local
7252 InstanceMethods.push_back(Getter); in RewriteObjCCategoryImplDecl()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtPrinter.cpp1414 if (const auto *Getter = Node->getImplicitPropertyGetter()) in VisitObjCPropertyRefExpr() local
1415 Getter->getSelector().print(OS); in VisitObjCPropertyRefExpr()
H A DDeclCXX.cpp3653 IdentifierInfo *Getter, in Create() argument
3655 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter); in Create()

12