HomeSort by relevance Sort by last modified time
    Searched refs:setter (Results 226 - 250 of 296) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeWizard.h 72 @property (retain, getter=getLabel, setter=setLabel:) NSString *label;
73 @property (assign, getter=getHasTextArg, setter=setHasTextArg:) BOOL hasTextArg;
  /external/protobuf/python/google/protobuf/
reflection.py 479 # We define a setter just so we can throw an exception with a more
481 def setter(self, new_value): function in function:_AddPropertiesForRepeatedField
486 setattr(cls, property_name, property(getter, setter, doc=doc))
509 def setter(self, new_value): function in function:_AddPropertiesForNonRepeatedScalarField
516 setter.__module__ = None
517 setter.__doc__ = 'Setter for %s.' % proto_field_name
519 # Add a property to encapsulate the getter/setter.
521 setattr(cls, property_name, property(getter, setter, doc=doc))
559 # We define a setter just so we can throw an exception with a mor
561 def setter(self, new_value): function in function:_AddPropertiesForNonRepeatedCompositeField
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1213575.js 29 // to pass 'the hole' to a defined setter.
regress-1160.js 33 // the setter on its prototype.
regress-191.js 38 assertFalse(setterCalled, "accessor setter call on context object");
regress-192.js 39 function() { assertUnreachable("setter"); });
regress-88591.js 29 // prototype shadowed by a setter in the global object's prototype's
regress-900.js 37 // Make sure we can't overwrite an accessor, but that the setter is
  /external/webkit/Source/JavaScriptCore/runtime/
ObjectConstructor.cpp 157 description->putDirect(exec->globalData(), exec->propertyNames().set, descriptor.setter() ? descriptor.setter() : jsUndefined(), 0);
256 throwError(exec, createTypeError(exec, "Setter must be a function."));
269 throwError(exec, createTypeError(exec, "Invalid property. 'value' present on property with getter or setter."));
274 throwError(exec, createTypeError(exec, "Invalid property. 'writable' present on property with getter or setter."));
291 ASSERT((descriptor.attributes() & (Getter | Setter)) || (!descriptor.isAccessorDescriptor()));
319 if (descriptor.setter())
320 markBuffer.append(descriptor.setter());
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ST4ObjC.stg 94 @property (retain, getter=getTemplateLib, setter=setTemplateLib:) STGroup *templateLib;
AST.stg 82 @property (retain, getter=getTreeAdaptor, setter=setTreeAdaptor:) id\<ANTLRTreeAdaptor> treeAdaptor;
123 @property (retain, getter=getTree, setter=setTree:) <recognizer.ASTLabelType; null="ANTLRCommonTree"> *tree;
  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
IntArray.java 337 int setter = 1 << theBit;
338 m_ints[theInt] |= setter;
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 24 // as a message-send of the associated 'setter' selector, typically:
215 ObjCMethodDecl *Setter;
222 SyntacticRefExpr(0), InstanceReceiver(0), Getter(0), Setter(0) {
485 ObjCMethodDecl *setter = RefExpr->getImplicitPropertySetter(); local
486 assert(setter && "both setter and getter are null - cannot happen");
488 setter->getSelector().getIdentifierInfoForSlot(0);
504 /// Try to find the most accurate setter declaration for the property
507 /// \return true if a setter was found, in which case Setter
    [all...]
  /external/v8/test/mjsunit/
accessors-on-global-object.js 41 // Test that installing a setter on the global object instead of a
megamorphic-callbacks.js 51 // setter and getter properties to the object.
  /external/v8/test/mjsunit/compiler/
objectliterals.js 28 // Test object literals with getter, setter and prototype properties.
  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.h 79 v8::AccessorSetter setter; member in struct:WebCore::BatchedAttribute
92 attribute.setter,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/
antsupportlib.jar 
  /external/v8/test/mjsunit/harmony/
collections.js 31 // Test valid getter and setter calls on Sets.
40 // Test valid getter and setter calls on Maps and WeakMaps
51 // Test invalid getter and setter calls for WeakMap only
  /external/webkit/Source/WebCore/page/animation/
AnimationBase.cpp 280 PropertyWrapper(int prop, T (RenderStyle::*getter)() const, void (RenderStyle::*setter)(T))
282 , m_setter(setter)
332 PropertyWrapperShadow(int prop, const ShadowData* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(ShadowData*, bool))
335 , m_setter(setter)
397 PropertyWrapperMaybeInvalidColor(int prop, const Color& (RenderStyle::*getter)() const, void (RenderStyle::*setter)(const Color&))
400 , m_setter(setter)
480 FillLayerPropertyWrapper(T (FillLayer::*getter)() const, void (FillLayer::*setter)(T)) function in class:WebCore::FillLayerPropertyWrapper
482 , m_setter(setter)
    [all...]
  /external/javassist/src/main/javassist/
CtNewMethod.java 252 * Creates a public setter method. The setter method assigns the
259 * @param methodName the name of the setter
262 public static CtMethod setter(String methodName, CtField field) method in class:CtNewMethod
  /external/v8/src/
v8globals.h 354 MaybeObject* (*setter)(JSObject* object, Object* value, void* data); member in struct:v8::internal::AccessorDescriptor
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_introspect.c 96 dsc->setter ? "write" : "");
  /external/v8/include/
v8.h     [all...]
  /external/v8/test/cctest/
test-accessors.cc 63 Local<Script> setter = v8_compile("obj.foo = 901;"); local
64 CHECK_EQ(901, setter->Run()->Int32Value());
350 // Use the throwing property setter/getter in a loop to force

Completed in 478 milliseconds

1 2 3 4 5 6 7 8 91011>>