Home
last modified time | relevance | path

Searched refs:DontEnum (Results 1 – 8 of 8) sorted by relevance

/external/v8/test/mjsunit/regress/
Dregress-cntl-descriptors-enum.js30 DontEnum = 2;
33 %AddNamedProperty(o, "a", 0, DontEnum);
36 %AddNamedProperty(o2, "a", 0, DontEnum);
/external/v8/test/webkit/fast/js/
Darray-functions-non-arrays-expected.txt29 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/
Dmirror-regexp.js31 var dont_enum = debug.PropertyAttribute.DontEnum;
/external/v8/src/
Dproperty-details.h19 DONT_ENUM = ::v8::DontEnum,
Dapi.cc3540 desc.set_enumerable(!(attributes & v8::DontEnum)); in DefineOwnProperty()
3603 value, DontEnum); in SetPrivate()
/external/v8/src/debug/
Dmirrors.js252 PropertyAttribute.DontEnum = DONT_ENUM;
1483 return (this.attributes() & PropertyAttribute.DontEnum) == 0;
/external/v8/include/
Dv8.h2587 DontEnum = 1 << 1, enumerator
/external/v8/test/cctest/
Dtest-api.cc5018 ->DefineOwnProperty(context.local(), prop, v8_num(28), v8::DontEnum) in THREADED_TEST()
5020 CHECK_EQ(v8::DontEnum, context->Global() in THREADED_TEST()