HomeSort by relevance Sort by last modified time
    Searched refs:accessor (Results 26 - 50 of 109) sorted by null

12 3 4 5

  /external/chromium_org/v8/test/mjsunit/regress/
regress-2346.js 39 obj.__defineGetter__("accessor", get);
40 obj.__defineSetter__("accessor", set);
50 var descIsAccessor = Object.getOwnPropertyDescriptor(obj, 'accessor');
59 var descIsNotAccessor = Object.getOwnPropertyDescriptor(obj, 'not-accessor');
regress-1548.js 36 // caller accessor on the prototype.
46 // caller accessor on the prototype.
regress-191.js 28 // Make sure that accessor setters are ignored on context extension
38 assertFalse(setterCalled, "accessor setter call on context object");
regress-123512.js 46 // Test accessor element on prototype.
71 // Test accessor property and element on prototype.
regress-117409.js 45 // and the backing store. Debug mode will crash here in set_elements accessor.
regress-1184.js 39 // ...JS accessor traverses v8 runtime/JS boundary and
regress-1491.js 28 // Test that the Array length accessor correctly deals with non-array
regress-900.js 37 // Make sure we can't overwrite an accessor, but that the setter is
  /external/v8/test/mjsunit/
get-own-property-descriptor.js 37 obj.__defineGetter__("accessor", get);
38 obj.__defineSetter__("accessor", set);
48 var descIsAccessor = Object.getOwnPropertyDescriptor(obj, 'accessor');
57 var descIsNotAccessor = Object.getOwnPropertyDescriptor(obj, 'not-accessor');
keyed-ic.js 31 // Prototype accessor.
63 // Array length accessor.
91 // String length accessor.
  /external/chromium_org/chrome/browser/download/
download_query.h 143 const content::DownloadItem&)>& accessor);
  /external/chromium_org/v8/test/mjsunit/
object-freeze.js 247 Object.defineProperty(obj, 'accessor', {
264 assertEquals(42, obj.accessor);
266 obj.accessor = 'ignored value';
285 Object.defineProperty(obj, 'accessor', {
295 assertEquals(42, obj.accessor);
297 obj.accessor = 'ignored value';
300 // Test for regression in mixed accessor/data property objects.
306 Object.defineProperty(obj, 'accessor', {
keyed-ic.js 31 // Prototype accessor.
63 // Array length accessor.
91 // String length accessor.
try-catch-extension-object.js 29 // objects so that __proto__ accessors and accessor setters in the
  /external/v8/test/mjsunit/regress/
regress-1548.js 36 // caller accessor on the prototype.
46 // caller accessor on the prototype.
regress-191.js 28 // Make sure that accessor setters are ignored on context extension
38 assertFalse(setterCalled, "accessor setter call on context object");
regress-117409.js 45 // and the backing store. Debug mode will crash here in set_elements accessor.
regress-1184.js 39 // ...JS accessor traverses v8 runtime/JS boundary and
regress-1491.js 28 // Test that the Array length accessor correctly deals with non-array
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp     [all...]
  /external/chromium_org/tools/gn/
parser.cc 319 scoped_ptr<AccessorNode> accessor(new AccessorNode);
320 accessor->set_base(left->AsIdentifier()->value());
321 accessor->set_index(value.Pass());
322 return accessor.PassAs<ParseNode>();
  /external/chromium_org/v8/test/mjsunit/bugs/
bug-1344252.js 73 // Add a z accessor in the prototype chain for o1 and o2.
75 // The accessor should be called for o2.
  /external/v8/test/mjsunit/bugs/
bug-1344252.js 73 // Add a z accessor in the prototype chain for o1 and o2.
75 // The accessor should be called for o2.
  /external/v8/src/
proxy.js 112 } else { // accessor
130 } else { // accessor
  /external/chromium_org/v8/test/webkit/
cyclic-prototypes.js 35 // This changes behaviour, since __proto__ is an accessor on Object.prototype.

Completed in 2494 milliseconds

12 3 4 5