/external/webkit/Source/WebCore/bindings/scripts/test/JS/ |
D | JSTestObj.cpp | 60 …{ "readOnlyIntAttr", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTe… 61 …{ "readOnlyStringAttr", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(j… 62 …{ "readOnlyTestObjAttr", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(… 63 …{ "shortAttr", DontDelete, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestObjShortAttr), … 64 …{ "unsignedShortAttr", DontDelete, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestObjUnsi… 65 …{ "intAttr", DontDelete, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestObjIntAttr), (int… 66 …{ "longLongAttr", DontDelete, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestObjLongLongA… 67 …{ "unsignedLongLongAttr", DontDelete, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestObjU… 68 …{ "stringAttr", DontDelete, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestObjStringAttr)… 69 …{ "testObjAttr", DontDelete, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestObjTestObjAtt… [all …]
|
D | JSTestSerializedScriptValueInterface.cpp | 46 …{ "value", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestSerializ… 88 …e, JSTestSerializedScriptValueInterfacePrototype::self(exec, globalObject), DontDelete | ReadOnly); in JSTestSerializedScriptValueInterfaceConstructor()
|
D | JSTestMediaQueryListListener.cpp | 87 …prototype, JSTestMediaQueryListListenerPrototype::self(exec, globalObject), DontDelete | ReadOnly); in JSTestMediaQueryListListenerConstructor() 109 …{ "method", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestMediaQueryListListe…
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | PropertyDescriptor.cpp | 36 unsigned PropertyDescriptor::defaultAttributes = (DontDelete << 1) - 1; 51 return !(m_attributes & DontDelete); in configurable() 72 m_attributes = ReadOnly | DontDelete | DontEnum; in setUndefined() 136 m_attributes &= ~DontDelete; in setConfigurable() 138 m_attributes |= DontDelete; in setConfigurable() 174 if (sharedSeen & ConfigurablePresent && mismatch & DontDelete) in attributesEqual() 188 if (sharedSeen & ConfigurablePresent && mismatch & DontDelete) in attributesWithOverride() 189 newAttributes ^= DontDelete; in attributesWithOverride()
|
D | JSFunction.cpp | 70 …pertyNames->name, jsString(exec, name.isNull() ? "" : name.ustring()), DontDelete | ReadOnly | Don… in JSFunction() 71 …putDirect(exec->globalData(), exec->propertyNames().length, jsNumber(length), DontDelete | ReadOnl… in JSFunction() 83 …pertyNames->name, jsString(exec, name.isNull() ? "" : name.ustring()), DontDelete | ReadOnly | Don… in JSFunction() 84 …putDirect(exec->globalData(), exec->propertyNames().length, jsNumber(length), DontDelete | ReadOnl… in JSFunction() 94 …pertyNames->name, jsString(exec, name.isNull() ? "" : name.ustring()), DontDelete | ReadOnly | Don… in JSFunction() 108 descriptor.setAccessorDescriptor(thrower, thrower, DontEnum | DontDelete | Getter | Setter); in createDescriptorForThrowingProperty() 192 … putDirect(exec->globalData(), exec->propertyNames().prototype, prototype, DontDelete | DontEnum); in getOwnPropertySlot() 243 …etDescriptor(exec->interpreter()->retrieveArguments(exec, this), ReadOnly | DontEnum | DontDelete); in getOwnPropertyDescriptor() 248 …riptor.setDescriptor(jsNumber(jsExecutable()->parameterCount()), ReadOnly | DontEnum | DontDelete); in getOwnPropertyDescriptor() 256 …r.setDescriptor(exec->interpreter()->retrieveCaller(exec, this), ReadOnly | DontEnum | DontDelete); in getOwnPropertyDescriptor()
|
D | MathObject.cpp | 94 …nsition(exec->globalData(), Identifier(exec, "E"), jsNumber(exp(1.0)), DontDelete | DontEnum | Rea… in MathObject() 95 …ition(exec->globalData(), Identifier(exec, "LN2"), jsNumber(log(2.0)), DontDelete | DontEnum | Rea… in MathObject() 96 …ion(exec->globalData(), Identifier(exec, "LN10"), jsNumber(log(10.0)), DontDelete | DontEnum | Rea… in MathObject() 97 …ec->globalData(), Identifier(exec, "LOG2E"), jsNumber(1.0 / log(2.0)), DontDelete | DontEnum | Rea… in MathObject() 98 …lobalData(), Identifier(exec, "LOG10E"), jsNumber(0.4342944819032518), DontDelete | DontEnum | Rea… in MathObject() 99 …sition(exec->globalData(), Identifier(exec, "PI"), jsNumber(piDouble), DontDelete | DontEnum | Rea… in MathObject() 100 …(exec->globalData(), Identifier(exec, "SQRT1_2"), jsNumber(sqrt(0.5)), DontDelete | DontEnum | Rea… in MathObject() 101 …on(exec->globalData(), Identifier(exec, "SQRT2"), jsNumber(sqrt(2.0)), DontDelete | DontEnum | Rea… in MathObject()
|
D | ErrorConstructor.cpp | 36 …->globalData(), exec->propertyNames().prototype, errorPrototype, DontEnum | DontDelete | ReadOnly); in ErrorConstructor() 37 …nsition(exec->globalData(), exec->propertyNames().length, jsNumber(1), DontDelete | ReadOnly | Don… in ErrorConstructor()
|
D | BooleanConstructor.cpp | 34 …globalData(), exec->propertyNames().prototype, booleanPrototype, DontEnum | DontDelete | ReadOnly); in BooleanConstructor() 37 …n(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontDelete | DontEnum); in BooleanConstructor()
|
D | ArrayConstructor.cpp | 44 …->globalData(), exec->propertyNames().prototype, arrayPrototype, DontEnum | DontDelete | ReadOnly); in ArrayConstructor() 47 …n(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontEnum | DontDelete); in ArrayConstructor()
|
D | NativeErrorConstructor.cpp | 42 …putDirect(exec->globalData(), exec->propertyNames().length, jsNumber(1), DontDelete | ReadOnly | D… in NativeErrorConstructor() 43 …putDirect(exec->globalData(), exec->propertyNames().prototype, prototype, DontDelete | ReadOnly | … in NativeErrorConstructor()
|
D | StringConstructor.cpp | 55 …>globalData(), exec->propertyNames().prototype, stringPrototype, ReadOnly | DontEnum | DontDelete); in StringConstructor() 64 …n(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontEnum | DontDelete); in StringConstructor()
|
D | JSByteArray.cpp | 42 …), exec->globalData().propertyNames->length, jsNumber(m_storage->length()), ReadOnly | DontDelete); in JSByteArray() 74 descriptor.setDescriptor(getIndex(exec, index), DontDelete); in getOwnPropertyDescriptor()
|
D | Error.cpp | 125 …butes(globalData, Identifier(globalData, linePropertyName), jsNumber(line), ReadOnly | DontDelete); in addErrorInfo() 127 …, Identifier(globalData, sourceIdPropertyName), jsNumber((double)sourceID), ReadOnly | DontDelete); in addErrorInfo() 129 …tifier(globalData, sourceURLPropertyName), jsString(globalData, sourceURL), ReadOnly | DontDelete); in addErrorInfo()
|
D | NumberConstructor.cpp | 63 …>globalData(), exec->propertyNames().prototype, numberPrototype, DontEnum | DontDelete | ReadOnly); in NumberConstructor() 66 …n(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontEnum | DontDelete); in NumberConstructor()
|
D | FunctionConstructor.cpp | 43 …lobalData(), exec->propertyNames().prototype, functionPrototype, DontEnum | DontDelete | ReadOnly); in FunctionConstructor() 46 …n(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontDelete | DontEnum); in FunctionConstructor()
|
D | JSVariableObject.cpp | 65 … descriptor.setDescriptor(registerAt(entry.getIndex()).get(), entry.getAttributes() | DontDelete); in symbolTableGet()
|
D | Structure.cpp | 479 iter->attributes |= DontDelete; in sealTransition() 493 iter->attributes |= (DontDelete | ReadOnly); in freezeTransition() 527 if ((iter->attributes & DontDelete) != DontDelete) in isSealed() 545 if ((iter->attributes & (DontDelete | ReadOnly)) != (DontDelete | ReadOnly)) in isFrozen()
|
D | InternalFunction.cpp | 48 …ames->name, jsString(globalData, name.isNull() ? "" : name.ustring()), DontDelete | ReadOnly | Don… in InternalFunction()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSDOMWindowBase.cpp | 56 GlobalPropertyInfo(Identifier(globalExec(), "document"), jsNull(), DontDelete | ReadOnly), in JSDOMWindowBase() 57 GlobalPropertyInfo(Identifier(globalExec(), "window"), m_shell, DontDelete | ReadOnly) in JSDOMWindowBase() 67 …Data(), Identifier(exec, "document"), toJS(exec, this, m_impl->document()), DontDelete | ReadOnly); in updateDocument()
|
D | JSImageDataCustom.cpp | 52 …ew (exec) JSByteArray(exec, cpaStructure.get(), imageData->data()->data()), DontDelete | ReadOnly); in toJS()
|
D | JSSQLResultSetRowListCustom.cpp | 77 …ta(), Identifier(exec, stringToUString(m_impl->columnNames()[i])), jsValue, DontDelete | ReadOnly); in item()
|
D | JSAudioConstructor.cpp | 47 …putDirect(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontDelete | D… in JSAudioConstructor()
|
/external/v8/test/mjsunit/ |
D | mirror-regexp.js | 33 debug.PropertyAttribute.DontDelete; 39 'lastIndex': debug.PropertyAttribute.DontEnum | debug.PropertyAttribute.DontDelete
|
/external/webkit/Source/WebCore/bridge/ |
D | runtime_array.cpp | 102 … descriptor.setDescriptor(slot.getValue(exec, propertyName), ReadOnly | DontDelete | DontEnum); in getOwnPropertyDescriptor() 112 descriptor.setDescriptor(slot.getValue(exec, propertyName), DontDelete | DontEnum); in getOwnPropertyDescriptor()
|
D | runtime_object.cpp | 178 descriptor.setDescriptor(slot.getValue(exec, propertyName), DontDelete); in getOwnPropertyDescriptor() 188 descriptor.setDescriptor(slot.getValue(exec, propertyName), DontDelete | ReadOnly); in getOwnPropertyDescriptor() 198 … descriptor.setDescriptor(slot.getValue(exec, propertyName), DontDelete | ReadOnly | DontEnum); in getOwnPropertyDescriptor()
|