/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | DebugContainerModeling.cpp | 34 template <typename Getter> 36 Getter get) const; 71 template <typename Getter> 74 Getter get) const { in analyzerContainerDataField()
|
H A D | DebugIteratorModeling.cpp | 34 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 D | SemaPseudoObject.cpp | 275 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 D | SemaExprObjC.cpp | 2050 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 D | SemaExprMember.cpp | 1613 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 D | SemaDeclObjC.cpp | 4006 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 D | SemaCodeComplete.cpp | 7555 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 D | ASTMatchersMacros.h | 366 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 D | ASTMatchersInternal.h | 1870 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 D | IndexBody.cpp | 261 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 D | ObjCMT.cpp | 452 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 D | EVP_PKEY-SM2.pod | 31 Getter that returns the default digest name.
|
H A D | EVP_PKEY-EC.pod | 147 Getter that returns the default digest name.
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | AliasAnalysis.cpp | 836 for (auto &Getter : ResultGetters) in run() local 837 (*Getter)(F, AM, R); in run()
|
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/ |
H A D | IRMutator.cpp | 66 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 D | OpenMPOpt.cpp | 316 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 D | CONTRIBUTING.md | 172 * Getter functions/methods only need to be documented via `\return`. A
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGDebugInfo.cpp | 2922 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 D | DeclCXX.h | 4247 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 D | SubtargetEmitter.cpp | 231 const std::string Getter = in EmitSubtargetInfoMacroCalls() local 235 << Getter << ")\n"; in EmitSubtargetInfoMacroCalls()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaObjC.h | 993 ObjCMethodDecl *Getter,
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | StmtPrinter.cpp | 1280 if (const auto *Getter = Node->getImplicitPropertyGetter()) in VisitObjCPropertyRefExpr() local 1281 Getter->getSelector().print(OS); in VisitObjCPropertyRefExpr()
|
H A D | DeclCXX.cpp | 3420 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 D | RewriteModernObjC.cpp | 7035 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 D | MemorySanitizer.cpp | 1785 FunctionCallee Getter = MS.getKmsanShadowOriginAccessFn(isStore, Size); in getShadowOriginPtrKernelNoVec() local 1788 if (Getter) { in getShadowOriginPtrKernelNoVec() 1789 ShadowOriginPtrs = createMetadataCall(IRB, Getter, AddrCast); in getShadowOriginPtrKernelNoVec()
|