Searched refs:getter (Results 1 - 25 of 83) sorted by relevance

1234

/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DPropertySlot.cpp32 return callGetter(exec, m_thisValue, m_data.getter.getterSetter);
H A DGetterSetter.cpp55 JSObject* getter = jsCast<GetterSetter*>(getterSetter)->getter();
56 if (!getter)
60 CallType callType = getter->methodTable(exec->vm())->getCallData(getter, callData);
61 return call(exec, getter, callType, callData, base, ArgList());
H A DCustomGetterSetter.h50 CustomGetterSetter::CustomGetter getter() const { return m_getter; } function in class:JSC::CustomGetterSetter
61 CustomGetterSetter(VM& vm, CustomGetter getter, CustomSetter setter) argument
63 , m_getter(getter)
H A DGetterSetter.h35 // This is an internal value object which stores getter and setter functions
58 JSObject* getter() const { return m_getter.get(); } function in class:JSC::GetterSetter
59 void setGetter(VM& vm, JSObject* getter) { m_getter.setMayBeNull(vm, this, getter); } argument
H A DPropertyDescriptor.cpp75 JSValue PropertyDescriptor::getter() const function in class:JSC::PropertyDescriptor
109 m_getter = accessor->getter() ? accessor->getter() : jsUndefined();
134 m_getter = accessor->getter() ? accessor->getter() : jsUndefined();
173 void PropertyDescriptor::setGetter(JSValue getter) argument
175 m_getter = getter;
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_ivar.py118 getter = objc.getInstanceVariable
120 cls = getter(obj, 'isa')
123 self.assertEquals(getter(obj, 'intValue'), 42)
124 self.assertInstanceOf(getter(obj, 'intValue'), int)
126 self.assertEquals(getter(obj, 'floatValue'), -10.055)
127 self.assertInstanceOf(getter(obj, 'floatValue'), float)
129 self.assertEquals(getter(obj, 'charValue'), ord('a'))
130 self.assertInstanceOf(getter(obj, 'charValue'), int)
132 self.assertEquals(getter(obj, 'strValue'), "hello world")
133 self.assertInstanceOf(getter(ob
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_ivar.py119 getter = objc.getInstanceVariable
121 cls = getter(obj, 'isa')
124 self.assertEquals(getter(obj, 'intValue'), 42)
125 self.assertIsInstance(getter(obj, 'intValue'), int)
127 self.assertEquals(getter(obj, 'floatValue'), -10.055)
128 self.assertIsInstance(getter(obj, 'floatValue'), float)
130 self.assertEquals(getter(obj, 'charValue'), ord('a'))
131 self.assertIsInstance(getter(obj, 'charValue'), int)
133 self.assertEquals(getter(obj, 'strValue'), b"hello world")
134 self.assertIsInstance(getter(ob
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/API/Cocoa/
H A DWKBrowsingContextHandleInternal.h32 @property (nonatomic, readonly, getter = _pageID) uint64_t pageID;
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest_ivar.py120 getter = objc.getInstanceVariable
122 cls = getter(obj, 'isa')
125 self.assertEqual(getter(obj, 'intValue'), 42)
126 self.assertIsInstance(getter(obj, 'intValue'), int)
128 self.assertEqual(getter(obj, 'floatValue'), -10.055)
129 self.assertIsInstance(getter(obj, 'floatValue'), float)
131 self.assertEqual(getter(obj, 'charValue'), ord('a'))
132 self.assertIsInstance(getter(obj, 'charValue'), int)
134 self.assertEqual(getter(obj, 'strValue'), b"hello world")
135 self.assertIsInstance(getter(ob
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKFrameInfo.h43 @property (nonatomic, readonly, getter=isMainFrame) BOOL mainFrame;
H A DWKNavigationActionPrivate.h33 @property (nonatomic, readonly, getter=_isUserInitiated) BOOL _userInitiated;
H A D_WKFormInputSession.h34 @property (nonatomic, readonly, getter=isValid) BOOL valid;
H A D_WKWebsiteDataStore.h41 @property (readonly, getter=isNonPersistent) BOOL nonPersistent;
H A DWKNavigationResponse.h41 @property (nonatomic, readonly, getter=isForMainFrame) BOOL forMainFrame;
H A DWKUserScript.h54 @property (nonatomic, readonly, getter=isForMainFrameOnly) BOOL forMainFrameOnly;
/macosx-10.10.1/WebKit-7600.1.25/mac/WebView/
H A DWebPreferences.h170 @property (nonatomic, getter=isJavaEnabled) BOOL javaEnabled;
175 @property (nonatomic, getter=isJavaScriptEnabled) BOOL javaScriptEnabled;
185 @property (nonatomic, getter=arePlugInsEnabled) BOOL plugInsEnabled;
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/bundle-multi-link/
H A Dmain.c37 typedef int (*getter)(void); typedef
83 getter func2getter = NSAddressOfSymbol(sym2getter);
163 getter func4getter = NSAddressOfSymbol(sym4getter);
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/GetSet/
H A Dgetset-001.js32 TestObject.prototype.y getter =
60 reportCompare ("got <initial y>", t.y, "y getter, before set");
63 reportCompare ("got new y", t.y, "y getter, after set");
66 reportCompare (2, t.y, "y getter, after numeric set");
70 reportCompare (d, t.y, "y getter, after date set");
H A Dgetset-002.js28 y getter: function get_y ()
56 reportCompare ("got <initial y>", t.y, "y getter, before set");
59 reportCompare ("got new y", t.y, "y getter, after set");
62 reportCompare (2, t.y, "y getter, after numeric set");
66 reportCompare (d, t.y, "y getter, after date set");
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Denv016.tcl11 # TEST rep_stat or getter functions to verify they're set correctly.
65 # Test options that we query via getter functions.
90 puts "\tEnv016.b: Check settings via getter functions."
95 set getter [lindex $l 3]
123 set gval [eval $masterenv $getter]
H A Denv007.tcl39 # 8. Arg used in getter
113 set getter [lindex $item 8]
127 error_check_good get_envval [eval $env $getter] $envval
147 error_check_good get_configval1 [eval $env $getter] $configval
163 error_check_good get_configval2 [eval $env $getter] $configval
173 # the config file code. Also check with a getter that the
235 set getter [lindex $item 2]
257 error_check_good getter:1 [eval $env $getter] $getval
295 set getter [linde
[all...]
/macosx-10.10.1/swig-12/Lib/chicken/
H A Dswigclosprefix.scm14 (define-method (compute-getter-and-setter (class <swig-metaclass-$module>) slot allocator)
17 (let ((getter (let search-get ((lst slot))
30 (lambda (o) (getter (slot-ref o 'swig-this)))
/macosx-10.10.1/libclosure-65/objectTests/
H A Dtlctester.mm99 void (^getter)(void) = ^{
106 pthread_create(&threads[i], NULL, callBlock, (void *)Block_copy(getter));
/macosx-10.10.1/cxxfilt-11/cxxfilt/cpu/
H A Dsimplify.inc151 x-getter x-setter)
161 (getter x-getter)
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/apps/scripts/
H A Dparameter.xotcl7 ### a standard setter/getter method with this name is created.
25 ### * In order to call the standard getter method use the method
27 ### in order to call the standard getter for parameter a, use
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
39 ### * In order to use approach (a) the parameter methods -getter
40 ### and -setter can be used to specify the custom getter an
[all...]

Completed in 117 milliseconds

1234