Home
last modified time | relevance | path

Searched refs:Getter (Results 1 – 25 of 28) 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.cpp275 ObjCMethodDecl *Getter; member in __anonb581425c0111::ObjCPropertyOpBuilder
285 InstanceReceiver(nullptr), Getter(nullptr), Setter(nullptr) { in ObjCPropertyOpBuilder()
597 } else if (Getter) { in isWeakProperty()
598 T = Getter->getReturnType(); in isWeakProperty()
607 if (Getter) return true; in findGetter()
611 if ((Getter = RefExpr->getImplicitPropertyGetter())) { in findGetter()
612 GetterSelector = Getter->getSelector(); in findGetter()
630 Getter = LookupMethodInReceiverType(S, prop->getGetterName(), RefExpr); in findGetter()
631 return (Getter != nullptr); in findGetter()
731 if (!Getter) { in buildGet()
[all …]
H A DSemaExprObjC.cpp2050 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); in HandleExprPropertyRefExpr() local
2053 if (!Getter) in HandleExprPropertyRefExpr()
2054 Getter = LookupMethodInQualifiedType(Sel, OPT, true); in HandleExprPropertyRefExpr()
2057 if (!Getter) in HandleExprPropertyRefExpr()
2058 Getter = IFace->lookupPrivateMethod(Sel); in HandleExprPropertyRefExpr()
2060 if (Getter) { in HandleExprPropertyRefExpr()
2062 if (SemaRef.DiagnoseUseOfDecl(Getter, MemberLoc)) in HandleExprPropertyRefExpr()
2102 if (Getter || Setter) { in HandleExprPropertyRefExpr()
2105 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
2109 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
[all …]
H A DSemaExprMember.cpp1613 ObjCMethodDecl *Getter; in LookupMemberExpr() local
1614 if ((Getter = IFace->lookupClassMethod(Sel))) { in LookupMemberExpr()
1616 if (S.DiagnoseUseOfDecl(Getter, MemberLoc)) in LookupMemberExpr()
1619 Getter = IFace->lookupPrivateMethod(Sel, false); in LookupMemberExpr()
1636 if (Getter || Setter) { in LookupMemberExpr()
1638 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
H A DSemaDeclObjC.cpp4006 if (auto *Getter = PropImpl->getGetterMethodDecl()) in ActOnAtEnd() local
4007 if (Getter->isSynthesizedAccessorStub()) in ActOnAtEnd()
4008 OID->addDecl(Getter); in ActOnAtEnd()
4877 if (auto *Getter = PropertyImpl->getGetterMethodDecl()) in ActOnMethodDeclaration() local
4878 if (Getter->getSelector() == Sel && in ActOnMethodDeclaration()
4879 Getter->isInstanceMethod() == ObjCMethod->isInstanceMethod()) { in ActOnMethodDeclaration()
4880 assert(Getter->isSynthesizedAccessorStub() && "autosynth stub expected"); in ActOnMethodDeclaration()
H A DSemaCodeComplete.cpp7555 CodeCompletionBuilder Getter(Results.getAllocator(), in CodeCompleteObjCPropertyFlags() local
7557 Getter.AddTypedTextChunk("getter"); in CodeCompleteObjCPropertyFlags()
7558 Getter.AddTextChunk("="); in CodeCompleteObjCPropertyFlags()
7559 Getter.AddPlaceholderChunk("method"); in CodeCompleteObjCPropertyFlags()
7560 Results.AddResult(CodeCompletionResult(Getter.TakeString())); in CodeCompleteObjCPropertyFlags()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h366 template <typename T> struct TypeMatcher##MatcherName##Getter { \
373 ::clang::ast_matchers::internal::TypeMatcher##MatcherName##Getter, \
380 ::clang::ast_matchers::internal::TypeMatcher##MatcherName##Getter, \
393 template <typename T> struct TypeMatcher##MatcherName##Getter { \
399 ::clang::ast_matchers::internal::TypeMatcher##MatcherName##Getter, \
406 template <typename T> struct TypeLocMatcher##MatcherName##Getter { \
414 TypeLocMatcher##MatcherName##Getter, \
422 ::clang::ast_matchers::internal::TypeLocMatcher##MatcherName##Getter, \
431 template <typename T> struct TypeLocMatcher##MatcherName##Getter { \
437 ::clang::ast_matchers::internal::TypeLocMatcher##MatcherName##Getter, \
H A DASTMatchersInternal.h1870 template <typename OuterT> class Getter,
1875 using Self = TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl,
1889 new MatcherImpl<OuterT>(InnerMatcher, Getter<OuterT>::value()));
1922 template <typename InnerTBase, template <typename OuterT> class Getter,
1924 TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl, ReturnTypesF>
1926 InnerTBase, Getter, MatcherImpl,
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexBody.cpp261 if (const ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter()) { in VisitObjCMessageExpr() local
265 if (Getter->isClassMethod() && in VisitObjCMessageExpr()
266 Getter->getCanonicalDecl()->findPropertyDecl()) in VisitObjCMessageExpr()
312 } else if (const ObjCMethodDecl *Getter = E->getImplicitPropertyGetter()) { in VisitObjCPropertyRefExpr() local
316 if (Getter->isClassMethod()) { in VisitObjCPropertyRefExpr()
317 if (const auto *PD = Getter->getCanonicalDecl()->findPropertyDecl()) { in VisitObjCPropertyRefExpr()
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp452 static void rewriteToObjCProperty(const ObjCMethodDecl *Getter, in rewriteToObjCProperty() argument
469 std::string PropertyNameString = Getter->getNameAsString(); in rewriteToObjCProperty()
489 QualType QT = Getter->getReturnType(); in rewriteToObjCProperty()
493 QualType ResType = Context.getCanonicalType(Getter->getReturnType()); in rewriteToObjCProperty()
504 QualType RT = Getter->getReturnType(); in rewriteToObjCProperty()
542 SourceLocation StartGetterSelectorLoc = Getter->getSelectorStartLoc(); in rewriteToObjCProperty()
543 Selector GetterSelector = Getter->getSelector(); in rewriteToObjCProperty()
547 commit.replace(CharSourceRange::getCharRange(Getter->getBeginLoc(), in rewriteToObjCProperty()
/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.cpp836 for (auto &Getter : ResultGetters) in run() local
837 (*Getter)(F, AM, R); in run()
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DIRMutator.cpp66 for (const auto &Getter : AllowedTypes) in mutateModule() local
67 Types.push_back(Getter(M.getContext())); in mutateModule()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DOpenMPOpt.cpp316 RuntimeFunction Getter; member
447 ICV.Getter = RTL; \ in initializeInternalControlVars()
2373 auto &GetterRFI = OMPInfoCache.RFIs[OMPInfoCache.ICVs[ICV].Getter]; in getValueForCall()
2566 auto &Getter = OMPInfoCache.RFIs[ICVInfo.Getter]; in initialize() local
2567 if (Getter.Declaration == getAssociatedFunction()) { in initialize()
5517 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/clang/lib/CodeGen/
H A DCGDebugInfo.cpp2922 const ObjCMethodDecl *Getter) { in hasDefaultGetterName() argument
2924 if (!Getter) in hasDefaultGetterName()
2927 assert(Getter->getDeclName().isObjCZeroArgSelector()); in hasDefaultGetterName()
2929 Getter->getDeclName().getObjCSelector().getNameForSlot(0); in hasDefaultGetterName()
3125 ObjCMethodDecl *Getter = PD->getGetterMethodDecl(); in CreateTypeDefinition() local
3129 hasDefaultGetterName(PD, Getter) ? "" in CreateTypeDefinition()
3227 ObjCMethodDecl *Getter = PImpD->getGetterMethodDecl(); in CreateTypeDefinition() local
3231 hasDefaultGetterName(PD, Getter) in CreateTypeDefinition()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h4247 IdentifierInfo *Getter, IdentifierInfo *Setter) in MSPropertyDecl() argument
4249 GetterId(Getter), SetterId(Setter) {} in MSPropertyDecl()
4258 IdentifierInfo *Getter, IdentifierInfo *Setter);
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp231 const std::string Getter = in EmitSubtargetInfoMacroCalls() local
235 << Getter << ")\n"; in EmitSubtargetInfoMacroCalls()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h993 ObjCMethodDecl *Getter,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtPrinter.cpp1280 if (const auto *Getter = Node->getImplicitPropertyGetter()) in VisitObjCPropertyRefExpr() local
1281 Getter->getSelector().print(OS); in VisitObjCPropertyRefExpr()
H A DDeclCXX.cpp3420 IdentifierInfo *Getter, in Create() argument
3422 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter); in Create()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp7035 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCClassMetaData() local
7037 InstanceMethods.push_back(Getter); in RewriteObjCClassMetaData()
7285 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCCategoryImplDecl() local
7286 InstanceMethods.push_back(Getter); in RewriteObjCCategoryImplDecl()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1785 FunctionCallee Getter = MS.getKmsanShadowOriginAccessFn(isStore, Size); in getShadowOriginPtrKernelNoVec() local
1788 if (Getter) { in getShadowOriginPtrKernelNoVec()
1789 ShadowOriginPtrs = createMetadataCall(IRB, Getter, AddrCast); in getShadowOriginPtrKernelNoVec()

12