/external/v8/test/mjsunit/ |
accessors-on-global-object.js | 28 // Test that installing a getter on the global object instead of a 59 // Test that replacing a getter with a normal property works as
|
getter-in-prototype.js | 29 // that have only a getter in a prototype object.
|
object-create.js | 95 // Add a getter foo that returns a counter value. 108 // Make sure that trying to add both a value and a getter 205 assertTrue(/Getter must be a function/.test(e)); 219 assertTrue(/Getter must be a function/.test(e));
|
/external/v8/test/mjsunit/regress/ |
regress-612.js | 34 // Define getter which currently moves object into slow mode. 41 // Now object is turned into fast mode, but it has getter defined above...
|
regress-526.js | 28 // Test object literals with computed property and getter.
|
/external/clang/test/Coverage/ |
objc-language-features.inc | 24 @property(assign, getter=getme, setter=setme:) id p4;
|
/external/clang/test/SemaObjC/ |
newproperty-class-method-1.m | 50 /* We read it using the other getter. */
|
property-9.m | 54 readonly getter=isAwesome) // expected-error {{error: expected ')'}}
|
property-user-setter.m | 92 g(c.Foo); // expected-error {{expected getter method not found on object of type 'C *'}}
|
/external/webkit/Source/JavaScriptCore/runtime/ |
PropertySlot.cpp | 31 // Prevent getter functions from observing execution if an exception is pending.
|
ObjectConstructor.cpp | 156 description->putDirect(exec->globalData(), exec->propertyNames().get, descriptor.getter() ? descriptor.getter() : jsUndefined(), 0); 240 throwError(exec, createTypeError(exec, "Getter 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())); 317 if (descriptor.getter()) 318 markBuffer.append(descriptor.getter());
|
PropertySlot.h | 43 Getter, 171 m_cachedPropertyType = Getter;
|
ClassInfo.h | 46 * For classes that can be used from multiple threads, it is accessed via a getter function that would typically return a pointer to thread-specific value.
|
/external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/ |
optional-event-properties.js | 5 ObjectThrowingException.prototype.__defineGetter__("x", function() { throw new Error('x getter exception'); }); 6 ObjectThrowingException.prototype.__defineGetter__("alpha", function() { throw new Error('alpha getter exception'); }); 34 testException("event.initDeviceMotionEvent('', false, false, objectThrowingException, {x: 3, z: 5}, {gamma: 8, beta: 7}, 9)", "Error: x getter exception"); 35 testException("event.initDeviceMotionEvent('', false, false, {x: 0, y: 1, z: 2}, objectThrowingException, {gamma: 8, beta: 7}, 9)", "Error: x getter exception"); 36 testException("event.initDeviceMotionEvent('', false, false, {x: 0, y: 1, z: 2}, {x: 3, z: 5}, objectThrowingException, 9)", "Error: alpha getter exception");
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/ |
getset-005.js | 26 * store the getter/setter functions in global variables. 47 // The getter/setter functions we'll use in all three sections below - 52 // SECTION1: define getter/setter directly on an object (not its prototype) 83 // SECTION2: define getter/setter in Object.prototype 114 // SECTION 3: define getter/setter in prototype of user-defined constructor
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_new_handlers.c | 58 * within internal getter calls, which will call this function 285 * Generic getter for basic type properties. Type is required to be basic. 385 * Generic getter for array type properties. Array elements type is 671 * Getter for "DebugLevel" property. 694 * Getter for "DebugTimestamp" property. 711 * Getter for "DebugShowKeys" property. 818 * Getter for "Interfaces" property. Handles requests 858 * Getter for "EapMethods" property. Handles requests [all...] |
/external/chromium/chrome/browser/remoting/ |
directory_add_request.cc | 22 DirectoryAddRequest::DirectoryAddRequest(net::URLRequestContextGetter* getter) 23 : getter_(getter) {
|
directory_add_request.h | 45 explicit DirectoryAddRequest(net::URLRequestContextGetter* getter);
|
/external/clang/lib/Sema/ |
SemaExprObjC.cpp | 560 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); 561 if (Getter && 562 (Getter->hasRelatedResultType() 563 || DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc))) 564 ResTy = getMessageSendResultType(QualType(OPT, 0), Getter, false, 586 if (ObjCMethodDecl *Getter = PD->getGetterMethodDecl()) 587 T = getMessageSendResultType(QualType(OPT, 0), Getter, false, Super); 608 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); 611 if (!Getter) 612 Getter = LookupMethodInQualifiedType(Sel, OPT, true) [all...] |
/external/webkit/Source/JavaScriptCore/dfg/ |
DFGAliasTracker.h | 40 // where we know a getter will not be called, or optimizing puts to arrays 56 // on the speculative path we will not have allowed getter access).
|
/external/webkit/Source/WebCore/css/ |
CSSStyleApplyProperty.cpp | 87 ApplyPropertyDefault(T (RenderStyle::*getter)() const, void (RenderStyle::*setter)(T), T (*initial)()) 88 : m_getter(getter) 119 ApplyPropertyColorBase(const Color& (RenderStyle::*getter)() const, const Color& (RenderStyle::*defaultValue)() const, void (RenderStyle::*setter)(const Color&)) 120 : m_getter(getter) 151 ApplyPropertyColor(const Color& (RenderStyle::*getter)() const, void (RenderStyle::*setter)(const Color&), Color (*initialValue)()) 152 : ApplyPropertyColorBase(getter, 0, setter) 179 ApplyPropertyDirection(TextDirection (RenderStyle::*getter)() const, void (RenderStyle::*setter)(TextDirection), TextDirection (*initial)()) 180 : ApplyPropertyDefault<TextDirection>(getter, setter, initial)
|
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility_cocoa.h | 43 @property(nonatomic, readonly, getter=isIgnored) BOOL ignored;
|
/external/chromium/chrome/browser/ |
fullscreen_mac.mm | 18 @property (nonatomic, getter=isFullScreen) BOOL fullScreen;
|
/external/chromium/chrome/browser/sync/notifier/ |
non_blocking_invalidation_notifier_unittest.cc | 45 // The request context getter gets deleted on the I/O thread. To prevent a
|
/external/chromium/chrome/browser/ui/cocoa/wrench_menu/ |
menu_tracked_button.h | 39 @property(nonatomic, readonly, getter=isTracking) BOOL tracking;
|