Searched refs:setter (Results 1 - 25 of 61) sorted by relevance

123

/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-CoreText/PyObjCTest/
H A Dtest_ctframesetter.py14 setter = CTFramesetterCreateWithAttributedString(
16 self.failUnlessIsInstance(setter, CTFramesetterRef)
20 v = CTFramesetterGetTypesetter(setter)
H A Dtest_ctframe.py23 setter = CTFramesetterCreateWithAttributedString(
25 self.failUnlessIsInstance(setter, CTFramesetterRef)
31 frame = CTFramesetterCreateFrame(setter, CFRange(0, 5),
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-CoreText/PyObjCTest/
H A Dtest_ctframesetter.py20 setter = CTFramesetterCreateWithAttributedString(
22 self.assertIsInstance(setter, CTFramesetterRef)
26 v = CTFramesetterGetTypesetter(setter)
33 setter = CTFramesetterCreateWithAttributedString(
35 self.assertIsInstance(setter, CTFramesetterRef)
40 setter, CFRange(0, 2), None, CGSize(100, 500),
H A Dtest_ctframe.py23 setter = CTFramesetterCreateWithAttributedString(
25 self.assertIsInstance(setter, CTFramesetterRef)
31 frame = CTFramesetterCreateFrame(setter, CFRange(0, 5),
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_write_set_format_by_name.c45 struct { const char *name; int (*setter)(struct archive *); } names[] = member in struct:__anon9381
71 return ((names[i].setter)(a));
H A Darchive_write_set_format.c42 struct { int code; int (*setter)(struct archive *); } codes[] = member in struct:__anon9380
67 return ((codes[i].setter)(a));
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/bundle-multi-link/
H A Dmain.c36 typedef void (*setter)(int); typedef
61 setter func = NSAddressOfSymbol(sym);
94 setter func2 = NSAddressOfSymbol(sym2);
123 setter func3 = NSAddressOfSymbol(sym3);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DGetterSetter.h35 // This is an internal value object which stores getter and setter functions
60 JSObject* setter() const { return m_setter.get(); } function in class:JSC::GetterSetter
61 void setSetter(VM& vm, JSObject* setter) { m_setter.setMayBeNull(vm, this, setter); } argument
H A DPropertyDescriptor.cpp81 JSValue PropertyDescriptor::setter() const function in class:JSC::PropertyDescriptor
110 m_setter = accessor->setter() ? accessor->setter() : jsUndefined();
125 m_setter = accessor->setter() ? accessor->setter() : jsUndefined();
156 void PropertyDescriptor::setSetter(JSValue setter) argument
158 m_setter = setter;
H A DSparseArrayValueMap.cpp181 JSObject* setter = asGetterSetter(accessor)->setter(); local
183 if (!setter) {
190 CallType callType = setter->methodTable()->getCallData(setter, callData);
195 call(exec, setter, callType, callData, thisValue, args);
H A DPropertyDescriptor.h53 JS_EXPORT_PRIVATE JSValue setter() const;
79 // May be a getter/setter
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_ivar.py150 setter = objc.setInstanceVariable
153 setter(obj, 'intValue', 99)
157 setter(obj, 'floatValue', 0.5)
161 setter(obj, 'charValue', 'b')
163 setter(obj, 'charValue', 10)
167 setter(obj, 'strValue', "foo bar")
169 setter(obj, 'strValue', None)
174 self.assertRaises(TypeError, setter, 'objValue', o)
176 setter(obj, 'objValue', o, True)
182 setter(ob
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_ivar.py151 setter = objc.setInstanceVariable
154 setter(obj, 'intValue', 99)
158 setter(obj, 'floatValue', 0.5)
162 setter(obj, 'charValue', b'b')
164 setter(obj, 'charValue', 10)
168 setter(obj, 'strValue', b"foo bar")
170 setter(obj, 'strValue', None)
175 self.assertRaises(TypeError, setter, 'objValue', o)
177 setter(obj, 'objValue', o, True)
183 setter(ob
[all...]
H A Dtest_object_property.py158 @p1.setter
200 @p1.setter
227 def setter(self, value): function in function:TestObjectProperty.testDynamic
231 OCTestObjectProperty8.setP1_ = setter
262 @OCTestObjectProperty5.p1.setter
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/GetSet/
H A Dgetset-001.js45 TestObject.prototype.y setter =
H A Dgetset-002.js39 y setter: function set_y (newVal)
H A Dgetset-003.js22 * SUMMARY: Testing obj.prop getter/setter
28 var summary = 'Testing obj.prop getter/setter';
43 // SECTION1: define getter/setter directly on an object (not its prototype)
47 obj.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
74 // SECTION2: define getter/setter in Object.prototype
77 Object.prototype.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
105 // SECTION 3: define getter/setter in prototype of user-defined constructor
111 TestObject.prototype.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
/macosx-10.9.5/swig-10/Lib/chicken/
H A Dswigclosprefix.scm14 (define-method (compute-getter-and-setter (class <swig-metaclass-$module>) slot allocator)
23 (setter (let search-set ((lst slot))
31 (lambda (o new) (setter (slot-ref o 'swig-this) new) new)))))
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/apps/scripts/
H A Dparameter.xotcl7 ### a standard setter/getter method with this name is created.
29 ### In order to use the standard setter for b, use the method with
33 ### * There are two ways to specify custom setter/getter methods for
34 ### parameters: (a) the custom setter/getter can be defined within the
35 ### class hierarchy of the object, or (b) the custom getter/setter can
36 ### be specified on a different object. The custom setter/getter
37 ### method are called, from the standard setter/getter methods
40 ### and -setter can be used to specify the custom getter and
41 ### and setter methods:
42 ### Class D -parameter {{a -setter myse
[all...]
/macosx-10.9.5/libclosure-63/objectTests/
H A Dtlctester.mm92 void (^setter)(void) = ^{
96 pthread_create(&threads[i], NULL, callBlock, (void *)Block_copy(setter));
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSDictionary.h70 bool tryGetProperty(const char* propertyName, T* context, void (*setter)(T* context, const Result&)) const;
97 GetPropertyResult tryGetPropertyAndResult(const char* propertyName, T* context, void (*setter)(T* context, const Result&)) const;
143 bool JSDictionary::tryGetProperty(const char* propertyName, T* context, void (*setter)(T* context, const Result&)) const
145 return tryGetPropertyAndResult(propertyName, context, setter) != ExceptionThrown;
161 JSDictionary::GetPropertyResult JSDictionary::tryGetPropertyAndResult(const char* propertyName, T* context, void (*setter)(T* context, const Result&)) const
175 setter(context, result);
/macosx-10.9.5/cxxfilt-11/cxxfilt/cpu/
H A Dsimplify.inc151 x-getter x-setter)
162 (setter x-setter)
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Lib/objc/
H A D_descriptors.py188 Use this in a class dictionary to syntheze simple setting/setter methods.
205 setter = textwrap.dedent('''
211 setter = textwrap.dedent('''
222 exec setter in classDict
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Lib/objc/
H A D_descriptors.py193 Use this in a class dictionary to syntheze simple setting/setter methods.
215 setter = textwrap.dedent('''
221 setter = textwrap.dedent('''
232 exec setter in classDict
/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DCSSPropertyAnimation.cpp365 PropertyWrapper(CSSPropertyID prop, T (RenderStyle::*getter)() const, void (RenderStyle::*setter)(T))
367 , m_setter(setter)
383 RefCountedPropertyWrapper(CSSPropertyID prop, T* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassRefPtr<T>))
385 , m_setter(setter)
401 PropertyWrapperClipPath(CSSPropertyID prop, ClipPathOperation* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassRefPtr<ClipPathOperation>))
402 : RefCountedPropertyWrapper<ClipPathOperation>(prop, getter, setter)
410 PropertyWrapperShape(CSSPropertyID prop, ShapeValue* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassRefPtr<ShapeValue>))
411 : RefCountedPropertyWrapper<ShapeValue>(prop, getter, setter)
419 StyleImagePropertyWrapper(CSSPropertyID prop, StyleImage* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassRefPtr<StyleImage>))
420 : RefCountedPropertyWrapper<StyleImage>(prop, getter, setter)
766 FillLayerPropertyWrapper(T (FillLayer::*getter)() const, void (FillLayer::*setter)(T)) function in class:WebCore::PropertyWrapperShadow::FillLayerPropertyWrapper
784 FillLayerRefCountedPropertyWrapper(T* (FillLayer::*getter)() const, void (FillLayer::*setter)(PassRefPtr<T>)) function in class:WebCore::PropertyWrapperShadow::FillLayerRefCountedPropertyWrapper
801 FillLayerStyleImagePropertyWrapper(StyleImage* (FillLayer::*getter)() const, void (FillLayer::*setter)(PassRefPtr<StyleImage>)) function in class:WebCore::PropertyWrapperShadow::FillLayerStyleImagePropertyWrapper
[all...]

Completed in 405 milliseconds

123