Home
last modified time | relevance | path

Searched refs:DontDelete (Results 1 – 10 of 10) sorted by relevance

/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 PASS Array.prototype.push.call(x = ['b', 'a']); properties(x) is '0:b, 1:a, length:2(DontDelete, Do…
70 …pe.push.call(x = ['b', 'a'], 'c'); properties(x) is '0:b, 1:a, 2:c, length:3(DontDelete, DontEnum)'
74 PASS properties(Array.prototype.reverse.call(['b', 'a'])) is '0:a, 1:b, length:2(DontDelete, DontEn…
83 PASS Array.prototype.shift.call(x = ['b', 'a']); properties(x) is '0:a, length:1(DontDelete, DontEn…
91 PASS properties(Array.prototype.sort.call(['b', 'a'])) is '0:a, 1:b, length:2(DontDelete, DontEnum)'
100 PASS Array.prototype.splice.call(x = ['b', 'a'], 0, 1); properties(x) is '0:a, length:1(DontDelete,…
108 PASS Array.prototype.unshift.call(x = ['b', 'a']); properties(x) is '0:b, 1:a, length:2(DontDelete,…
116 …unshift.call(x = ['b', 'a'], 'c'); properties(x) is '0:c, 1:b, 2:a, length:3(DontDelete, DontEnum)'
/external/pdfium/xfa/src/fxjse/src/
Dclass.cpp41 static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete)); in FXJSE_DefineFunctions()
268 static_cast<v8::PropertyAttribute>(v8::DontDelete)); in Create()
279 static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete)); in Create()
290 static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete)); in Create()
Ddynprop.cpp297 info.GetReturnValue().Set(v8::DontDelete); in FXJSE_V8_GenericNamedPropertyQueryCallback()
/external/v8/test/mjsunit/
Dmirror-regexp.js32 var dont_delete = debug.PropertyAttribute.DontDelete;
/external/v8/src/
Dproperty-details.h20 DONT_DELETE = ::v8::DontDelete,
Dapi.cc3541 desc.set_configurable(!(attributes & v8::DontDelete)); in DefineOwnProperty()
/external/v8/test/cctest/
Dtest-log.cc357 static_cast<v8::PropertyAttribute>(v8::DontDelete)); in TEST()
Dtest-api.cc4999 ->DefineOwnProperty(context.local(), prop, v8_num(13), v8::DontDelete) in THREADED_TEST()
5012 CHECK_EQ(v8::DontDelete, context->Global() in THREADED_TEST()
6526 v8_str("donut"), v8::DEFAULT, v8::DontDelete) in THREADED_TEST()
6530 v8_str("donut"), v8::DEFAULT, v8::DontDelete) in THREADED_TEST()
/external/v8/src/debug/
Dmirrors.js253 PropertyAttribute.DontDelete = DONT_DELETE;
1488 return (this.attributes() & PropertyAttribute.DontDelete) == 0;
/external/v8/include/
Dv8.h2588 DontDelete = 1 << 2 enumerator