HomeSort by relevance Sort by last modified time
    Searched refs:DontDelete (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/v8/test/webkit/fast/js/
array-functions-non-arrays.js 70 flags.push("DontDelete");
96 shouldBe("properties(['b', 'a'])", "'0:b, 1:a, length:2(DontDelete, DontEnum)'");
131 shouldBe("Array.prototype.pop.call(x = ['b', 'a']); properties(x)", "'0:b, length:1(DontDelete, DontEnum)'");
140 shouldBe("Array.prototype.push.call(x = ['b', 'a']); properties(x)", "'0:b, 1:a, length:2(DontDelete, DontEnum)'");
148 shouldBe("Array.prototype.push.call(x = ['b', 'a'], 'c'); properties(x)", "'0:b, 1:a, 2:c, length:3(DontDelete, DontEnum)'");
153 shouldBe("properties(Array.prototype.reverse.call(['b', 'a']))", "'0:a, 1:b, length:2(DontDelete, DontEnum)'");
163 shouldBe("Array.prototype.shift.call(x = ['b', 'a']); properties(x)", "'0:a, length:1(DontDelete, DontEnum)'");
173 shouldBe("properties(Array.prototype.sort.call(['b', 'a']))", "'0:a, 1:b, length:2(DontDelete, DontEnum)'");
183 shouldBe("Array.prototype.splice.call(x = ['b', 'a'], 0, 1); properties(x)", "'0:a, length:1(DontDelete, DontEnum)'");
192 shouldBe("Array.prototype.unshift.call(x = ['b', 'a']); properties(x)", "'0:b, 1:a, length:2(DontDelete, DontEnum)'")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SQLResultSetRowListCustom.cpp 81 item->Set(v8String(rowList->columnNames()[i], args.GetIsolate()), value, static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::ReadOnly));
V8MessageEventCustom.cpp 96 v8::PropertyAttribute dataAttr = static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::ReadOnly);
  /external/v8/src/
property-details.h 40 DONT_DELETE = v8::DontDelete,
mirror-debugger.js 190 PropertyAttribute.DontDelete = DONT_DELETE;
1133 return (this.attributes() & PropertyAttribute.DontDelete) == 0;
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-74.js 28 // Test that the variable introduced by catch blocks is DontDelete.
  /external/v8/test/mjsunit/regress/
regress-74.js 28 // Test that the variable introduced by catch blocks is DontDelete.
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8DOMConfiguration.cpp 80 batchConfigureCallbacks(functionDescriptor->PrototypeTemplate(), defaultSignature, static_cast<v8::PropertyAttribute>(v8::DontDelete), callbacks, callbackCount, isolate, currentWorldType);
CustomElementConstructorBuilder.cpp 215 m_constructor->ForceSet(prototypeKey, m_prototype, v8::PropertyAttribute(v8::ReadOnly | v8::DontEnum | v8::DontDelete));
230 if (m_prototype->GetPropertyAttributes(v8String("constructor", m_context->GetIsolate())) & v8::DontDelete) {
V8WindowShell.cpp 360 context->Global()->ForceSet(v8::String::NewSymbol("document"), documentWrapper, static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete));
  /external/chromium_org/v8/test/mjsunit/
mirror-regexp.js 33 debug.PropertyAttribute.DontDelete;
39 'lastIndex': debug.PropertyAttribute.DontEnum | debug.PropertyAttribute.DontDelete
delete.js 47 var y = 87; // should have DontDelete attribute
  /external/v8/test/mjsunit/
mirror-regexp.js 33 debug.PropertyAttribute.DontDelete;
39 'lastIndex': debug.PropertyAttribute.DontEnum | debug.PropertyAttribute.DontDelete
delete.js 47 var y = 87; // should have DontDelete attribute
  /external/chromium_org/v8/test/webkit/fast/js/kde/
prototype_length.js 44 // check DontDelete
  /external/chromium_org/v8/src/
property-details.h 40 DONT_DELETE = v8::DontDelete,
mirror-debugger.js 189 PropertyAttribute.DontDelete = DONT_DELETE;
1199 return (this.attributes() & PropertyAttribute.DontDelete) == 0;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestActiveDOMObject.cpp 214 proto->SetAccessor(v8::String::NewSymbol("postMessage"), TestActiveDOMObjectV8Internal::postMessageAttrGetterCallback, TestActiveDOMObjectV8Internal::TestActiveDOMObjectDomainSafeFunctionSetter, v8Undefined(), v8::ALL_CAN_READ, static_cast<v8::PropertyAttribute>(v8::DontDelete));
  /external/chromium_org/v8/test/cctest/
test-object-observe.cc 346 obj->Set(Number::New(1.1), Number::New(6), DontDelete);
test-log.cc 412 static_cast<v8::PropertyAttribute>(v8::DontDelete));
test-api.cc     [all...]
  /external/v8/test/cctest/
test-log.cc 381 static_cast<v8::PropertyAttribute>(v8::DontDelete));
test-api.cc     [all...]
  /external/v8/include/
v8.h     [all...]
  /external/chromium_org/v8/include/
v8.h     [all...]

Completed in 664 milliseconds