Searched refs:Setter (Results 1 - 13 of 13) sorted by relevance

/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExprObjC.h528 /// pointer is an (optional) ObjCMethodDecl and Setter may be set.
530 /// the pointer is an ObjCPropertyDecl and Setter is always null.
542 /// \brief Contains the Setter method pointer and MethodRefFlags bit flags.
582 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
588 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
593 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
598 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
603 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
608 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
700 const ObjCMethodDecl *Setter local
749 setImplicitProperty(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, unsigned methRefFlags) argument
[all...]
H A DDeclCXX.h3090 IdentifierInfo *Setter):
3092 SetterId(Setter) {}
3087 MSPropertyDecl(DeclContext *DC, SourceLocation L, DeclarationName N, QualType T, TypeSourceInfo *TInfo, SourceLocation StartL, IdentifierInfo *Getter, IdentifierInfo *Setter) argument
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprObjC.cpp1587 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); local
1590 if (!Setter)
1591 Setter = LookupMethodInQualifiedType(SetterSel, OPT, true);
1593 if (!Setter) {
1596 Setter = IFace->lookupPrivateMethod(SetterSel);
1599 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
1602 if (Getter || Setter) {
1604 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter,
1610 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter,
1731 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); local
[all...]
H A DSemaPseudoObject.cpp260 ObjCMethodDecl *Setter; member in class:__anon3455::ObjCPropertyOpBuilder
267 SyntacticRefExpr(0), InstanceReceiver(0), Getter(0), Setter(0) {
584 /// \return true if a setter was found, in which case Setter
589 Setter = setter;
629 Setter = setter;
720 QualType paramType = (*Setter->param_begin())->getType();
750 if (Setter->isInstanceMethod() || RefExpr->isObjectReceiver()) {
752 GenericLoc, SetterSelector, Setter,
757 SetterSelector, Setter,
H A DSemaExprMember.cpp1489 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); local
1490 if (!Setter) {
1493 Setter = IFace->lookupPrivateMethod(SetterSel, false);
1496 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
1499 if (Getter || Setter) {
1500 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter,
H A DSemaCodeComplete.cpp4759 CodeCompletionBuilder Setter(Results.getAllocator(),
4761 Setter.AddTypedTextChunk("setter");
4762 Setter.AddTextChunk(" = ");
4763 Setter.AddPlaceholderChunk("method");
4764 Results.AddResult(CodeCompletionResult(Setter.TakeString()));
H A DTreeTransform.h2496 ObjCMethodDecl *Setter,
2501 new (getSema().Context) ObjCPropertyRefExpr(Getter, Setter, T,
2494 RebuildObjCPropertyRefExpr(Expr *Base, QualType T, ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, SourceLocation PropertyLoc) argument
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp319 const ObjCMethodDecl *Setter,
347 if (!Setter) {
363 else if (Setter) {
364 const ParmVarDecl *argDecl = *Setter->param_begin();
417 if (Setter && AvailabilityArgsMatch) {
418 SourceLocation EndLoc = Setter->getDeclaratorEndLoc();
421 SourceLocation BeginOfSetterDclLoc = Setter->getLocStart();
318 rewriteToObjCProperty(const ObjCMethodDecl *Getter, const ObjCMethodDecl *Setter, const NSAPI &NS, edit::Commit &commit, unsigned LengthOfPrefix, bool Atomic, bool UseNsIosOnlyMacro, bool AvailabilityArgsMatch) argument
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/AST/
H A DASTDumper.cpp1911 OS << "\" Setter=\"";
1912 if (ObjCMethodDecl *Setter = Node->getImplicitPropertySetter())
1913 OS << Setter->getSelector().getAsString();
1926 OS << "Getter&Setter";
1930 OS << "Setter";
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.cpp1555 /// \return true if Setter has the default name for the property PD.
1557 const ObjCMethodDecl *Setter) {
1559 if (!Setter)
1562 assert(Setter->getDeclName().isObjCOneArgSelector());
1564 Setter->getDeclName().getObjCSelector().getNameForSlot(0);
1637 ObjCMethodDecl *Setter = PD->getSetterMethodDecl(); local
1643 hasDefaultSetterName(PD, Setter) ? "" :
1711 ObjCMethodDecl *Setter = PD->getSetterMethodDecl(); local
1717 hasDefaultSetterName(PD, Setter) ? "" :
1556 hasDefaultSetterName(const ObjCPropertyDecl *PD, const ObjCMethodDecl *Setter) argument
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp5488 if (ObjCMethodDecl *Setter = PD->getSetterMethodDecl())
5489 if (!Setter->isDefined())
5490 InstanceMethods.push_back(Setter);
5769 if (ObjCMethodDecl *Setter = PD->getSetterMethodDecl())
5770 InstanceMethods.push_back(Setter);
H A DRewriteModernObjC.cpp7323 if (ObjCMethodDecl *Setter = PD->getSetterMethodDecl())
7325 InstanceMethods.push_back(Setter);
7583 if (ObjCMethodDecl *Setter = PD->getSetterMethodDecl())
7584 InstanceMethods.push_back(Setter);
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp1001 ObjCMethodDecl *Setter = ReadDeclAs<ObjCMethodDecl>(Record, Idx); local
1002 E->setImplicitProperty(Getter, Setter, MethodRefFlags);

Completed in 393 milliseconds