Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DDebugContainerModeling.cpp32 template <typename Getter>
34 Getter get) const;
77 template <typename Getter>
80 Getter get) const { in analyzerContainerDataField()
H A DDebugIteratorModeling.cpp32 template <typename Getter>
34 Getter get, SVal Default) const;
80 template <typename Getter>
83 Getter get, in analyzerIteratorDataField()
/netbsd-src/external/apache2/llvm/dist/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.h1902 template <typename OuterT> class Getter,
1907 using Self = TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl,
1921 new MatcherImpl<OuterT>(InnerMatcher, Getter<OuterT>::value()));
1954 template <typename InnerTBase, template <typename OuterT> class Getter,
1956 TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl, ReturnTypesF>
1958 InnerTBase, Getter, MatcherImpl,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaPseudoObject.cpp268 ObjCMethodDecl *Getter; member in __anon178e46e70111::ObjCPropertyOpBuilder
278 InstanceReceiver(nullptr), Getter(nullptr), Setter(nullptr) { in ObjCPropertyOpBuilder()
589 } else if (Getter) { in isWeakProperty()
590 T = Getter->getReturnType(); in isWeakProperty()
599 if (Getter) return true; in findGetter()
603 if ((Getter = RefExpr->getImplicitPropertyGetter())) { in findGetter()
604 GetterSelector = Getter->getSelector(); in findGetter()
622 Getter = LookupMethodInReceiverType(S, prop->getGetterName(), RefExpr); in findGetter()
623 return (Getter != nullptr); in findGetter()
722 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 (DiagnoseUseOfDecl(Getter, MemberLoc)) in HandleExprPropertyRefExpr()
2091 if (Getter || Setter) { in HandleExprPropertyRefExpr()
2094 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
2098 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
[all …]
H A DSemaExprMember.cpp1550 ObjCMethodDecl *Getter; in LookupMemberExpr() local
1551 if ((Getter = IFace->lookupClassMethod(Sel))) { in LookupMemberExpr()
1553 if (S.DiagnoseUseOfDecl(Getter, MemberLoc)) in LookupMemberExpr()
1556 Getter = IFace->lookupPrivateMethod(Sel, false); in LookupMemberExpr()
1573 if (Getter || Setter) { in LookupMemberExpr()
1575 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
H A DSemaDeclObjC.cpp3986 if (auto *Getter = PropImpl->getGetterMethodDecl()) in ActOnAtEnd() local
3987 if (Getter->isSynthesizedAccessorStub()) in ActOnAtEnd()
3988 OID->addDecl(Getter); in ActOnAtEnd()
4844 if (auto *Getter = PropertyImpl->getGetterMethodDecl()) in ActOnMethodDeclaration() local
4845 if (Getter->getSelector() == Sel && in ActOnMethodDeclaration()
4846 Getter->isInstanceMethod() == ObjCMethod->isInstanceMethod()) { in ActOnMethodDeclaration()
4847 assert(Getter->isSynthesizedAccessorStub() && "autosynth stub expected"); in ActOnMethodDeclaration()
H A DSemaCodeComplete.cpp6856 CodeCompletionBuilder Getter(Results.getAllocator(), in CodeCompleteObjCPropertyFlags() local
6858 Getter.AddTypedTextChunk("getter"); in CodeCompleteObjCPropertyFlags()
6859 Getter.AddTextChunk("="); in CodeCompleteObjCPropertyFlags()
6860 Getter.AddPlaceholderChunk("method"); in CodeCompleteObjCPropertyFlags()
6861 Results.AddResult(CodeCompletionResult(Getter.TakeString())); in CodeCompleteObjCPropertyFlags()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/
H A DIndexBody.cpp243 if (const ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter()) { in VisitObjCMessageExpr() local
247 if (Getter->isClassMethod() && in VisitObjCMessageExpr()
248 Getter->getCanonicalDecl()->findPropertyDecl()) in VisitObjCMessageExpr()
297 } else if (const ObjCMethodDecl *Getter = E->getImplicitPropertyGetter()) { in VisitObjCPropertyRefExpr() local
301 if (Getter->isClassMethod()) { in VisitObjCPropertyRefExpr()
302 if (const auto *PD = Getter->getCanonicalDecl()->findPropertyDecl()) { in VisitObjCPropertyRefExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExprObjC.h665 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in ObjCPropertyRefExpr() argument
669 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0), in ObjCPropertyRefExpr()
675 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in ObjCPropertyRefExpr() argument
680 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0), in ObjCPropertyRefExpr()
686 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in ObjCPropertyRefExpr() argument
691 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0), in ObjCPropertyRefExpr()
814 void setImplicitProperty(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in setImplicitProperty() argument
816 PropertyOrGetter.setPointer(Getter); in setImplicitProperty()
H A DDeclCXX.h3961 IdentifierInfo *Getter, IdentifierInfo *Setter) in MSPropertyDecl() argument
3963 GetterId(Getter), SetterId(Setter) {} in MSPropertyDecl()
3972 IdentifierInfo *Getter, IdentifierInfo *Setter);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/FuzzMutate/
H A DIRMutator.cpp57 for (const auto &Getter : AllowedTypes) in mutateModule() local
58 Types.push_back(Getter(M.getContext())); in mutateModule()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DObjCMT.cpp455 static void rewriteToObjCProperty(const ObjCMethodDecl *Getter, in rewriteToObjCProperty() argument
472 std::string PropertyNameString = Getter->getNameAsString(); in rewriteToObjCProperty()
493 QualType QT = Getter->getReturnType(); in rewriteToObjCProperty()
497 QualType ResType = Context.getCanonicalType(Getter->getReturnType()); in rewriteToObjCProperty()
508 QualType RT = Getter->getReturnType(); in rewriteToObjCProperty()
546 SourceLocation StartGetterSelectorLoc = Getter->getSelectorStartLoc(); in rewriteToObjCProperty()
547 Selector GetterSelector = Getter->getSelector(); in rewriteToObjCProperty()
551 commit.replace(CharSourceRange::getCharRange(Getter->getBeginLoc(), in rewriteToObjCProperty()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DOpenMPOpt.cpp152 RuntimeFunction Getter; member
275 ICV.Getter = RTL; \ in initializeInternalControlVars()
1622 auto &GetterRFI = OMPInfoCache.RFIs[ICVInfo.Getter]; in registerAAs()
1988 auto &GetterRFI = OMPInfoCache.RFIs[OMPInfoCache.ICVs[ICV].Getter]; in getValueForCall()
2176 auto &Getter = OMPInfoCache.RFIs[ICVInfo.Getter]; in initialize() local
2177 if (Getter.Declaration == getAssociatedFunction()) { in initialize()
/netbsd-src/crypto/external/bsd/openssl/dist/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.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DAliasAnalysis.cpp932 for (auto &Getter : ResultGetters) in run() local
933 (*Getter)(F, AM, R); in run()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXIndexDataConsumer.cpp844 if (ObjCMethodDecl *Getter = D->getGetterMethodDecl()) { in handleObjCProperty() local
845 getEntityInfo(Getter, GetterEntity, SA); in handleObjCProperty()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGDebugInfo.cpp2533 const ObjCMethodDecl *Getter) { in hasDefaultGetterName() argument
2535 if (!Getter) in hasDefaultGetterName()
2538 assert(Getter->getDeclName().isObjCZeroArgSelector()); in hasDefaultGetterName()
2540 Getter->getDeclName().getObjCSelector().getNameForSlot(0); in hasDefaultGetterName()
2732 ObjCMethodDecl *Getter = PD->getGetterMethodDecl(); in CreateTypeDefinition() local
2736 hasDefaultGetterName(PD, Getter) ? "" in CreateTypeDefinition()
2831 ObjCMethodDecl *Getter = PImpD->getGetterMethodDecl(); in CreateTypeDefinition() local
2835 hasDefaultGetterName(PD, Getter) in CreateTypeDefinition()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp5374 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCClassMetaData() local
5375 if (!Getter->isDefined()) in RewriteObjCClassMetaData()
5376 InstanceMethods.push_back(Getter); in RewriteObjCClassMetaData()
5652 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCCategoryImplDecl() local
5653 InstanceMethods.push_back(Getter); in RewriteObjCCategoryImplDecl()
H A DRewriteModernObjC.cpp7049 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCClassMetaData() local
7051 InstanceMethods.push_back(Getter); in RewriteObjCClassMetaData()
7299 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCCategoryImplDecl() local
7300 InstanceMethods.push_back(Getter); in RewriteObjCCategoryImplDecl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtPrinter.cpp1068 if (const auto *Getter = Node->getImplicitPropertyGetter()) in VisitObjCPropertyRefExpr() local
1069 Getter->getSelector().print(OS); in VisitObjCPropertyRefExpr()
H A DDeclCXX.cpp3241 IdentifierInfo *Getter, in Create() argument
3243 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter); in Create()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1521 FunctionCallee Getter = MS.getKmsanShadowOriginAccessFn(isStore, Size); in getShadowOriginPtrKernel() local
1524 if (Getter) { in getShadowOriginPtrKernel()
1525 ShadowOriginPtrs = IRB.CreateCall(Getter, AddrCast); in getShadowOriginPtrKernel()

12