HomeSort by relevance Sort by last modified time
    Searched refs:Setter (Results 1 - 25 of 46) sorted by null

1 2

  /external/v8/src/
accessors.h 56 static void name##Setter( \
69 k##name##Setter,
101 AccessorNameSetterCallback setter,
  /external/jetty/src/java/org/eclipse/jetty/util/ajax/
JSONPojoConvertor.java 58 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()); local
204 if(setter!=null)
208 setter.invoke(obj, entry.getValue());
214 LOG.warn(_pojoClass.getName()+"#"+setter.getPropertyName()+" not set from "+
251 public static class Setter
    [all...]
  /external/v8/test/mjsunit/
debug-stepframe.js 32 // Setter call.
indexed-accessors.js 84 // Using a setter where only a getter is defined does not throw an exception,
90 // Using a getter where only a setter is defined returns undefined.
94 // Setter works
object-create.js 101 // Add a setter foo that runs a function.
212 assertTrue(/Setter must be a function/.test(e));
  /external/clang/lib/Sema/
SemaExprObjC.cpp     [all...]
SemaPseudoObject.cpp 24 // as a message-send of the associated 'setter' selector, typically:
249 /// setter call or the value that was passed to the setter?
271 ObjCMethodDecl *Setter;
279 Setter(nullptr) {
604 ObjCMethodDecl *setter = RefExpr->getImplicitPropertySetter(); local
605 assert(setter && "both setter and getter are null - cannot happen");
607 setter->getSelector().getIdentifierInfoForSlot(0);
621 /// Try to find the most accurate setter declaration for the propert
    [all...]
SemaExprMember.cpp 425 // Also must look for a getter or setter name which uses property syntax.
    [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 547 /// pointer is an (optional) ObjCMethodDecl and Setter may be set.
549 /// the pointer is an ObjCPropertyDecl and Setter is always null.
553 /// to the getter, the setter, or both.
561 /// \brief Contains the Setter method pointer and MethodRefFlags bit flags.
601 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
607 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
612 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
617 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
622 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
627 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0)
    [all...]
DeclCXX.h     [all...]
  /external/protobuf/python/google/protobuf/internal/
cpp_message.py 84 def Setter(self, value):
87 return property(Getter, Setter)
179 def Setter(self, new_value):
184 return property(Getter, Setter, doc=doc)
285 def Setter(self, new_value):
290 return property(Getter, Setter, doc=doc)
  /external/v8/test/mjsunit/es6/
typedarray-of.js 90 // Note that %TypedArray%.of does not trigger "length" setter itself, as
92 // If the constructor does not assign "length", the setter should not be
95 // Setter on the newly created object.
107 // when the setter is on the new object's prototype
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.13.1513/
kotlin-runtime-0.13.1513.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.13.1514/
kotlin-runtime-0.13.1514.jar 
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 228 /// \brief - Rewrite message expression for Objective-C setter and getters into
445 // looking into setter's implementation for backing weak ivar.
453 const ObjCMethodDecl *Setter,
480 // Property with no setter may be suggested as a 'readonly' property.
481 if (!Setter)
493 } else if (!Setter) {
498 const ParmVarDecl *argDecl = *Setter->param_begin();
551 if (Setter && AvailabilityArgsMatch) {
552 SourceLocation EndLoc = Setter->getDeclaratorEndLoc();
555 SourceLocation BeginOfSetterDclLoc = Setter->getLocStart()
    [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0/
kotlin-runtime-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0-beta-1103/
kotlin-runtime-1.0.0-beta-1103.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0-beta-4584/
kotlin-runtime-1.0.0-beta-4584.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0-rc-1036/
kotlin-runtime-1.0.0-rc-1036.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.2/
kotlin-runtime-1.0.2.jar 
  /prebuilts/tools/common/offline-m2/org/jetbrains/kotlin/kotlin-runtime/1.0.0/
kotlin-runtime-1.0.0.jar 
  /prebuilts/tools/common/offline-m2/org/jetbrains/kotlin/kotlin-runtime/1.0.0-beta-4584/
kotlin-runtime-1.0.0-beta-4584.jar 
  /external/clang/lib/AST/
ASTDumper.cpp     [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
  /external/clang/tools/libclang/
IndexingContext.cpp 619 if (ObjCMethodDecl *Setter = D->getSetterMethodDecl()) {
620 getEntityInfo(Setter, SetterEntity, SA);
621 DInfo.ObjCPropDeclInfo.setter = &SetterEntity;
623 DInfo.ObjCPropDeclInfo.setter = nullptr;
    [all...]

Completed in 943 milliseconds

1 2