Home
last modified time | relevance | path

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

/external/chromium_org/v8/test/mjsunit/regress/
Dregress-cntl-descriptors-enum.js30 DontEnum = 2;
33 %SetProperty(o, "a", 0, DontEnum);
36 %SetProperty(o2, "a", 0, DontEnum);
/external/chromium_org/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/chromium_org/v8/test/mjsunit/
Dmirror-regexp.js32 debug.PropertyAttribute.DontEnum |
39 'lastIndex': debug.PropertyAttribute.DontEnum | debug.PropertyAttribute.DontDelete
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DCustomElementConstructorBuilder.cpp224 …Set(prototypeKey, m_prototype, v8::PropertyAttribute(v8::ReadOnly | v8::DontEnum | v8::DontDelete)… in createConstructor()
227 m_prototype->ForceSet(v8String(isolate, "constructor"), m_constructor, v8::DontEnum); in createConstructor()
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
DV8TestException.cpp109 …efined(), defaultSignature, 0), static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::DontEnum)); in configureV8TestExceptionTemplate()
DV8TestInterfaceNamedConstructor.cpp70 …v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::DontEnum), 0 /* on instanc…
DV8TestTypedefs.cpp290 …v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::DontEnum), 0 /* on instanc…
DV8TestInterface.cpp1320 …v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::DontEnum), 0 /* on instanc…
DV8TestObject.cpp9656 …v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::DontEnum), 0 /* on instanc…
9657 …v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::DontEnum), 0 /* on instanc…
9658 …v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::DontEnum), 0 /* on instanc…
9674 …v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::DontEnum), 0 /* on instanc…
10009 …efined(), defaultSignature, 0), static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::DontEnum)); in configureV8TestObjectTemplate()
10011 …ltSignature, 0), static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::DontEnum | v8::ReadOnly)); in configureV8TestObjectTemplate()
/external/chromium_org/v8/src/
Dproperty-details.h16 DONT_ENUM = v8::DontEnum,
Dmirror-debugger.js184 PropertyAttribute.DontEnum = DONT_ENUM;
1285 return (this.attributes() & PropertyAttribute.DontEnum) == 0;
Dapi.cc3067 value, DontEnum); in SetPrivate()
/external/chromium_org/v8/include/
Dv8.h2009 DontEnum = 1 << 1, enumerator
/external/chromium_org/v8/test/cctest/
Dtest-api.cc4392 context->Global()->Set(prop, v8_num(28), v8::DontEnum); in THREADED_TEST()
4393 CHECK_EQ(v8::DontEnum, context->Global()->GetPropertyAttributes(prop)); in THREADED_TEST()