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

/external/chromium_org/tools/usb_gadget/
H A Dusb_descriptors.py70 def Setter(self, value): function in function:Descriptor.AddField
79 setattr(cls, name, property(Getter, Setter))
101 def Setter(unused_self, unused_value): function in function:Descriptor.AddFixedField
106 setattr(cls, name, property(Getter, Setter))
129 def Setter(unused_self, unused_value): function in function:Descriptor.AddComputedField
134 setattr(cls, name, property(Getter, Setter))
/external/chromium_org/third_party/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/chromium_org/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/lib/Sema/
H A DSemaPseudoObject.cpp264 ObjCMethodDecl *Setter; member in class:__anon18092::ObjCPropertyOpBuilder
272 Setter(nullptr) {
588 /// \return true if a setter was found, in which case Setter
593 Setter = setter;
633 Setter = setter;
745 QualType paramType = (*Setter->param_begin())->getType();
775 if (!Setter->isImplicit())
776 S.DiagnoseUseOfDecl(Setter, GenericLoc, nullptr, true);
777 if ((Setter->isInstanceMethod() && !RefExpr->isClassReceiver()) ||
780 GenericLoc, SetterSelector, Setter,
[all...]
H A DSemaExprMember.cpp1487 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); local
1488 if (!Setter) {
1491 Setter = IFace->lookupPrivateMethod(SetterSel, false);
1494 if (Setter && S.DiagnoseUseOfDecl(Setter, MemberLoc))
1497 if (Getter || Setter) {
1499 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue,
H A DSemaExprObjC.cpp1639 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); local
1642 if (!Setter)
1643 Setter = LookupMethodInQualifiedType(SetterSel, OPT, true);
1645 if (!Setter) {
1648 Setter = IFace->lookupPrivateMethod(SetterSel);
1651 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
1654 if (Getter || Setter) {
1657 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
1661 ObjCPropertyRefExpr(Getter, Setter, Contex
1778 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); local
[all...]
H A DTreeTransform.h2609 ObjCMethodDecl *Setter,
2614 new (getSema().Context) ObjCPropertyRefExpr(Getter, Setter, T,
2607 RebuildObjCPropertyRefExpr(Expr *Base, QualType T, ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, SourceLocation PropertyLoc) argument
/external/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.h3164 IdentifierInfo *Getter, IdentifierInfo *Setter)
3166 GetterId(Getter), SetterId(Setter) {}
3172 IdentifierInfo *Getter, IdentifierInfo *Setter);
3162 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.cpp2131 IdentifierInfo *Setter) {
2132 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter);
2126 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.cpp351 const ObjCMethodDecl *Setter,
379 if (!Setter)
391 } else if (!Setter) {
396 const ParmVarDecl *argDecl = *Setter->param_begin();
449 if (Setter && AvailabilityArgsMatch) {
450 SourceLocation EndLoc = Setter->getDeclaratorEndLoc();
453 SourceLocation BeginOfSetterDclLoc = Setter->getLocStart();
350 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/Serialization/
H A DASTReaderStmt.cpp999 ObjCMethodDecl *Setter = ReadDeclAs<ObjCMethodDecl>(Record, Idx); local
1000 E->setImplicitProperty(Getter, Setter, MethodRefFlags);
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp1618 /// \return true if Setter has the default name for the property PD.
1620 const ObjCMethodDecl *Setter) {
1622 if (!Setter)
1625 assert(Setter->getDeclName().isObjCOneArgSelector());
1627 Setter->getDeclName().getObjCSelector().getNameForSlot(0);
1704 ObjCMethodDecl *Setter = PD->getSetterMethodDecl(); local
1710 hasDefaultSetterName(PD, Setter) ? "" :
1778 ObjCMethodDecl *Setter = PD->getSetterMethodDecl(); local
1784 hasDefaultSetterName(PD, Setter) ? "" :
1619 hasDefaultSetterName(const ObjCPropertyDecl *PD, const ObjCMethodDecl *Setter) argument
/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/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 4256 milliseconds