Searched refs:DontDelete (Results 1 – 10 of 10) sorted by relevance
/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 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/ |
D | class.cpp | 41 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()
|
D | dynprop.cpp | 297 info.GetReturnValue().Set(v8::DontDelete); in FXJSE_V8_GenericNamedPropertyQueryCallback()
|
/external/v8/test/mjsunit/ |
D | mirror-regexp.js | 32 var dont_delete = debug.PropertyAttribute.DontDelete;
|
/external/v8/src/ |
D | property-details.h | 20 DONT_DELETE = ::v8::DontDelete,
|
D | api.cc | 3541 desc.set_configurable(!(attributes & v8::DontDelete)); in DefineOwnProperty()
|
/external/v8/test/cctest/ |
D | test-log.cc | 357 static_cast<v8::PropertyAttribute>(v8::DontDelete)); in TEST()
|
D | test-api.cc | 4999 ->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/ |
D | mirrors.js | 253 PropertyAttribute.DontDelete = DONT_DELETE; 1488 return (this.attributes() & PropertyAttribute.DontDelete) == 0;
|
/external/v8/include/ |
D | v8.h | 2588 DontDelete = 1 << 2 enumerator
|