Searched defs:configurable (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/v8/test/mjsunit/
H A Dobject-define-property.js86 configurable: true
92 configurable: false
97 configurable: true
102 configurable: true
107 var dataConfigurable = { value: 1000, configurable: true };
109 var dataNoConfigurable = { value: 2000, configurable: false };
132 assertFalse(desc.configurable);
145 // Make sure that foo can't be reset (as configurable is false).
157 assertTrue(desc.configurable);
169 // Redefine bar with non configurable tes
[all...]
/external/chromium_org/chrome/browser/resources/standalone/
H A Dstandalone_hack.js325 configurable: true
/external/chromium_org/v8/src/
H A Dobjects.cc3608 // [[GetProperty]] requires to check that all properties are configurable.
3612 Handle<Object> configurable = local
3614 ASSERT(configurable->IsBoolean());
3615 if (configurable->IsFalse()) {
3624 ASSERT(configurable->IsTrue());
3749 Handle<Object> configurable; local
3751 isolate, configurable, Object::GetProperty(desc, conf_n), NONE);
3766 if (configurable->IsFalse()) {
3779 if (!configurable->BooleanValue()) attributes |= DONT_DELETE;
5278 // Deleting a non-configurable propert
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 309 milliseconds