Searched defs:Setter (Results 1 - 15 of 15) sorted by relevance

/external/jetty/src/java/org/eclipse/jetty/util/ajax/
H A DJSONPojoConvertor.java58 protected Map<String,Setter> _setters = new HashMap<String,Setter>();
157 _setters.put(name, new Setter(name, method));
161 protected Setter getSetter(String name)
203 Setter setter = getSetter((String)entry.getKey());
251 public static class Setter class in class:JSONPojoConvertor
259 public Setter(String propertyName, Method method) method in class:JSONPojoConvertor.Setter
/external/protobuf/python/google/protobuf/internal/
H A Dcpp_message.py84 def Setter(self, value): function in function:ScalarProperty
87 return property(Getter, Setter)
179 def Setter(self, new_value): function in function:RepeatedScalarProperty
184 return property(Getter, Setter, doc=doc)
285 def Setter(self, new_value): function in function:RepeatedCompositeProperty
290 return property(Getter, Setter, doc=doc)
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp264 ObjCMethodDecl *Setter; member in class:__anon1221::ObjCPropertyOpBuilder
272 Setter(nullptr) {
592 /// \return true if a setter was found, in which case Setter
597 Setter = setter;
637 Setter = setter;
747 QualType paramType = (*Setter->param_begin())->getType();
777 if (!Setter->isImplicit())
778 S.DiagnoseUseOfDecl(Setter, GenericLoc, nullptr, true);
779 if ((Setter->isInstanceMethod() && !RefExpr->isClassReceiver()) ||
782 GenericLoc, SetterSelector, Setter,
[all...]
H A DSemaExprMember.cpp1504 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); local
1505 if (!Setter) {
1508 Setter = IFace->lookupPrivateMethod(SetterSel, false);
1511 if (Setter && S.DiagnoseUseOfDecl(Setter, MemberLoc))
1514 if (Getter || Setter) {
1516 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue,
H A DSemaExprObjC.cpp1592 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); local
1595 if (!Setter)
1596 Setter = LookupMethodInQualifiedType(SetterSel, OPT, true);
1598 if (!Setter) {
1601 Setter = IFace->lookupPrivateMethod(SetterSel);
1604 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
1610 if (Setter && Setter->isImplicit() && Setter
1749 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); local
[all...]
H A DTreeTransform.h2693 ObjCMethodDecl *Setter,
2698 new (getSema().Context) ObjCPropertyRefExpr(Getter, Setter, T,
2691 RebuildObjCPropertyRefExpr(Expr *Base, QualType T, ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, SourceLocation PropertyLoc) argument
/external/v8/test/cctest/
H A Dtest-cpu-profiler.cc776 static void Setter(v8::Local<v8::String> name, function in class:TestApiCallbacks
831 &TestApiCallbacks::Getter, &TestApiCallbacks::Setter, data); member in class:TestApiCallbacks
876 &TestApiCallbacks::Getter, &TestApiCallbacks::Setter, data); member in class:TestApiCallbacks
/external/clang/include/clang/AST/
H A DExprObjC.h537 /// pointer is an (optional) ObjCMethodDecl and Setter may be set.
539 /// the pointer is an ObjCPropertyDecl and Setter is always null.
551 /// \brief Contains the Setter method pointer and MethodRefFlags bit flags.
591 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
597 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
602 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
607 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
612 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
617 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
709 const ObjCMethodDecl *Setter local
758 setImplicitProperty(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, unsigned methRefFlags) argument
[all...]
H A DDeclCXX.h3227 IdentifierInfo *Getter, IdentifierInfo *Setter)
3229 GetterId(Getter), SetterId(Setter) {}
3235 IdentifierInfo *Getter, IdentifierInfo *Setter);
3225 MSPropertyDecl(DeclContext *DC, SourceLocation L, DeclarationName N, QualType T, TypeSourceInfo *TInfo, SourceLocation StartL, IdentifierInfo *Getter, IdentifierInfo *Setter) argument
/external/clang/lib/AST/
H A DDeclCXX.cpp2185 IdentifierInfo *Setter) {
2186 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter);
2180 Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName N, QualType T, TypeSourceInfo *TInfo, SourceLocation StartL, IdentifierInfo *Getter, IdentifierInfo *Setter) argument
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp463 const ObjCMethodDecl *Setter,
491 if (!Setter)
503 } else if (!Setter) {
508 const ParmVarDecl *argDecl = *Setter->param_begin();
561 if (Setter && AvailabilityArgsMatch) {
562 SourceLocation EndLoc = Setter->getDeclaratorEndLoc();
565 SourceLocation BeginOfSetterDclLoc = Setter->getLocStart();
462 rewriteToObjCProperty(const ObjCMethodDecl *Getter, const ObjCMethodDecl *Setter, const NSAPI &NS, edit::Commit &commit, unsigned LengthOfPrefix, bool Atomic, bool UseNsIosOnlyMacro, bool AvailabilityArgsMatch) argument
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp1636 /// \return true if Setter has the default name for the property PD.
1638 const ObjCMethodDecl *Setter) {
1640 if (!Setter)
1643 assert(Setter->getDeclName().isObjCOneArgSelector());
1645 Setter->getDeclName().getObjCSelector().getNameForSlot(0);
1721 ObjCMethodDecl *Setter = PD->getSetterMethodDecl(); local
1726 hasDefaultSetterName(PD, Setter) ? ""
1795 ObjCMethodDecl *Setter = PD->getSetterMethodDecl(); local
1800 hasDefaultSetterName(PD, Setter) ? "" : getSelectorName(
1637 hasDefaultSetterName(const ObjCPropertyDecl *PD, const ObjCMethodDecl *Setter) argument
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1000 ObjCMethodDecl *Setter = ReadDeclAs<ObjCMethodDecl>(Record, Idx); local
1001 E->setImplicitProperty(Getter, Setter, MethodRefFlags);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jetty/lib/
H A Djetty-util-6.1.26.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/mortbay/util/ org/mortbay/util/ajax/ ...

Completed in 471 milliseconds