Searched refs:Getter (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-current/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 {
H A DDebugIteratorModeling.cpp34 template <typename Getter>
36 Getter get, SVal Default) const;
74 template <typename Getter>
77 Getter get,
/freebsd-current/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, \
[all...]
H A DASTMatchersInternal.h1868 /// \c OuterT is any type that is supported by \c Getter.
1870 /// \code Getter<OuterT>::value() \endcode returns a
1874 template <typename OuterT> class Getter,
1879 using Self = TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl,
1893 new MatcherImpl<OuterT>(InnerMatcher, Getter<OuterT>::value()));
1926 template <typename InnerTBase, template <typename OuterT> class Getter,
1928 TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl, ReturnTypesF>
1930 InnerTBase, Getter, MatcherImpl,
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaPseudoObject.cpp273 ObjCMethodDecl *Getter; member in class:__anon793::ObjCPropertyOpBuilder
283 InstanceReceiver(nullptr), Getter(nullptr), Setter(nullptr) {
594 } else if (Getter) {
595 T = Getter->getReturnType();
604 if (Getter) return true;
608 if ((Getter = RefExpr->getImplicitPropertyGetter())) {
609 GetterSelector = Getter->getSelector();
627 Getter = LookupMethodInReceiverType(S, prop->getGetterName(), RefExpr);
628 return (Getter != nullptr);
727 if (!Getter) {
1133 ObjCMethodDecl *Getter = S.LookupMethodInObjectType(GetterSelector, ContainerT, local
[all...]
H A DSemaExprObjC.cpp2038 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); local
2041 if (!Getter)
2042 Getter = LookupMethodInQualifiedType(Sel, OPT, true);
2045 if (!Getter)
2046 Getter = IFace->lookupPrivateMethod(Sel);
2048 if (Getter) {
2050 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2091 if (Getter || Setter) {
2094 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2098 ObjCPropertyRefExpr(Getter, Sette
2220 ObjCMethodDecl *Getter = IFace->lookupClassMethod(GetterSel); local
[all...]
H A DSemaExprMember.cpp1600 ObjCMethodDecl *Getter;
1601 if ((Getter = IFace->lookupClassMethod(Sel))) {
1603 if (S.DiagnoseUseOfDecl(Getter, MemberLoc))
1606 Getter = IFace->lookupPrivateMethod(Sel, false);
1623 if (Getter || Setter) {
1625 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue,
H A DSemaDeclObjC.cpp4001 if (auto *Getter = PropImpl->getGetterMethodDecl())
4002 if (Getter->isSynthesizedAccessorStub())
4003 OID->addDecl(Getter);
4864 if (auto *Getter = PropertyImpl->getGetterMethodDecl())
4865 if (Getter->getSelector() == Sel &&
4866 Getter->isInstanceMethod() == ObjCMethod->isInstanceMethod()) {
4867 assert(Getter->isSynthesizedAccessorStub() && "autosynth stub expected");
H A DSemaCodeComplete.cpp7487 CodeCompletionBuilder Getter(Results.getAllocator(),
7489 Getter.AddTypedTextChunk("getter");
7490 Getter.AddTextChunk("=");
7491 Getter.AddPlaceholderChunk("method");
7492 Results.AddResult(CodeCompletionResult(Getter.TakeString()));
/freebsd-current/contrib/llvm-project/clang/lib/Index/
H A DIndexBody.cpp261 if (const ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter()) {
265 if (Getter->isClassMethod() &&
266 Getter->getCanonicalDecl()->findPropertyDecl())
312 } else if (const ObjCMethodDecl *Getter = E->getImplicitPropertyGetter()) {
316 if (Getter->isClassMethod()) {
317 if (const auto *PD = Getter->getCanonicalDecl()->findPropertyDecl()) {
/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DExprObjC.h668 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
672 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
678 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
683 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
689 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
694 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
817 void setImplicitProperty(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
819 PropertyOrGetter.setPointer(Getter);
H A DDeclCXX.h4233 IdentifierInfo *Getter, IdentifierInfo *Setter)
4235 GetterId(Getter), SetterId(Setter) {}
4244 IdentifierInfo *Getter, IdentifierInfo *Setter);
4231 MSPropertyDecl(DeclContext *DC, SourceLocation L, DeclarationName N, QualType T, TypeSourceInfo *TInfo, SourceLocation StartL, IdentifierInfo *Getter, IdentifierInfo *Setter) argument
/freebsd-current/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp452 static void rewriteToObjCProperty(const ObjCMethodDecl *Getter, argument
469 std::string PropertyNameString = Getter->getNameAsString();
489 QualType QT = Getter->getReturnType();
493 QualType ResType = Context.getCanonicalType(Getter->getReturnType());
504 QualType RT = Getter->getReturnType();
542 SourceLocation StartGetterSelectorLoc = Getter->getSelectorStartLoc();
543 Selector GetterSelector = Getter->getSelector();
547 commit.replace(CharSourceRange::getCharRange(Getter->getBeginLoc(),
/freebsd-current/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DIRMutator.cpp65 for (const auto &Getter : AllowedTypes)
66 Types.push_back(Getter(M.getContext()));
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasAnalysis.cpp834 for (auto &Getter : ResultGetters)
835 (*Getter)(F, AM, R);
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DOpenMPOpt.cpp315 /// Getter RTL function associated with this ICV.
316 RuntimeFunction Getter; member in struct:__anon2850::OMPInformationCache::InternalControlVarInfo
447 ICV.Getter = RTL; \
2374 auto &GetterRFI = OMPInfoCache.RFIs[OMPInfoCache.ICVs[ICV].Getter];
2567 auto &Getter = OMPInfoCache.RFIs[ICVInfo.Getter]; variable
2568 if (Getter.Declaration == getAssociatedFunction()) {
5516 auto &GetterRFI = OMPInfoCache.RFIs[ICVInfo.Getter];
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp2794 /// \return true if Getter has the default name for the property PD.
2796 const ObjCMethodDecl *Getter) {
2798 if (!Getter)
2801 assert(Getter->getDeclName().isObjCZeroArgSelector());
2803 Getter->getDeclName().getObjCSelector().getNameForSlot(0);
2999 ObjCMethodDecl *Getter = PD->getGetterMethodDecl();
3003 hasDefaultGetterName(PD, Getter) ? ""
3101 ObjCMethodDecl *Getter = PImpD->getGetterMethodDecl(); local
3105 hasDefaultGetterName(PD, Getter)
2795 hasDefaultGetterName(const ObjCPropertyDecl *PD, const ObjCMethodDecl *Getter) argument
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp231 const std::string Getter = local
235 << Getter << ")\n"; local
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DStmtPrinter.cpp1234 if (const auto *Getter = Node->getImplicitPropertyGetter())
1235 Getter->getSelector().print(OS);
H A DTextNodeDumper.cpp1472 OS << " Kind=MethodRef Getter=\"";
1494 OS << "Getter&Setter";
1496 OS << "Getter";
H A DDeclCXX.cpp3386 IdentifierInfo *Getter,
3388 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter);
/freebsd-current/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp5362 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl())
5363 if (!Getter->isDefined())
5364 InstanceMethods.push_back(Getter);
5640 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl())
5641 InstanceMethods.push_back(Getter);
H A DRewriteModernObjC.cpp7037 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl())
7039 InstanceMethods.push_back(Getter);
7287 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl())
7288 InstanceMethods.push_back(Getter);
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1768 FunctionCallee Getter = MS.getKmsanShadowOriginAccessFn(isStore, Size);
1771 if (Getter) {
1772 ShadowOriginPtrs = createMetadataCall(IRB, Getter, AddrCast);
/freebsd-current/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1516 auto *Getter = readDeclAs<ObjCMethodDecl>(); local
1518 E->setImplicitProperty(Getter, Setter, MethodRefFlags);

Completed in 749 milliseconds

12