Searched refs:DontEnum (Results 1 – 8 of 8) sorted by relevance
/external/v8/test/mjsunit/regress/ |
D | regress-cntl-descriptors-enum.js | 30 DontEnum = 2; 33 %AddNamedProperty(o, "a", 0, DontEnum); 36 %AddNamedProperty(o2, "a", 0, DontEnum);
|
/external/v8/test/webkit/fast/js/ |
D | array-functions-non-arrays-expected.txt | 29 PASS properties(['b', 'a']) is '0:b, 1:a, length:2(DontDelete, DontEnum)' 54 PASS Array.prototype.pop.call(x = ['b', 'a']); properties(x) is '0:b, length:1(DontDelete, DontEnum… 62 …ay.prototype.push.call(x = ['b', 'a']); properties(x) is '0:b, 1:a, length:2(DontDelete, DontEnum)' 70 …pe.push.call(x = ['b', 'a'], 'c'); properties(x) is '0:b, 1:a, 2:c, length:3(DontDelete, DontEnum)' 74 … properties(Array.prototype.reverse.call(['b', 'a'])) is '0:a, 1:b, length:2(DontDelete, DontEnum)' 83 … Array.prototype.shift.call(x = ['b', 'a']); properties(x) is '0:a, length:1(DontDelete, DontEnum)' 91 PASS properties(Array.prototype.sort.call(['b', 'a'])) is '0:a, 1:b, length:2(DontDelete, DontEnum)' 100 …prototype.splice.call(x = ['b', 'a'], 0, 1); properties(x) is '0:a, length:1(DontDelete, DontEnum)' 108 …prototype.unshift.call(x = ['b', 'a']); properties(x) is '0:b, 1:a, length:2(DontDelete, DontEnum)' 116 …unshift.call(x = ['b', 'a'], 'c'); properties(x) is '0:c, 1:b, 2:a, length:3(DontDelete, DontEnum)'
|
/external/v8/test/mjsunit/ |
D | mirror-regexp.js | 31 var dont_enum = debug.PropertyAttribute.DontEnum;
|
/external/v8/src/ |
D | property-details.h | 19 DONT_ENUM = ::v8::DontEnum,
|
D | api.cc | 3540 desc.set_enumerable(!(attributes & v8::DontEnum)); in DefineOwnProperty() 3603 value, DontEnum); in SetPrivate()
|
/external/v8/src/debug/ |
D | mirrors.js | 252 PropertyAttribute.DontEnum = DONT_ENUM; 1483 return (this.attributes() & PropertyAttribute.DontEnum) == 0;
|
/external/v8/include/ |
D | v8.h | 2587 DontEnum = 1 << 1, enumerator
|
/external/v8/test/cctest/ |
D | test-api.cc | 5018 ->DefineOwnProperty(context.local(), prop, v8_num(28), v8::DontEnum) in THREADED_TEST() 5020 CHECK_EQ(v8::DontEnum, context->Global() in THREADED_TEST()
|