/external/webkit/JavaScriptCore/runtime/ |
D | ExceptionHelpers.cpp | 78 …pressionBeginOffsetPropertyName), jsNumber(exec, divotPoint - startOffset), ReadOnly | DontDelete); in createUndefinedVariableError() 79 …ifier(exec, expressionCaretOffsetPropertyName), jsNumber(exec, divotPoint), ReadOnly | DontDelete); in createUndefinedVariableError() 80 …, expressionEndOffsetPropertyName), jsNumber(exec, divotPoint + endOffset), ReadOnly | DontDelete); in createUndefinedVariableError() 140 …pressionBeginOffsetPropertyName), jsNumber(exec, divotPoint - startOffset), ReadOnly | DontDelete); in createInvalidParamError() 141 …ifier(exec, expressionCaretOffsetPropertyName), jsNumber(exec, divotPoint), ReadOnly | DontDelete); in createInvalidParamError() 142 …, expressionEndOffsetPropertyName), jsNumber(exec, divotPoint + endOffset), ReadOnly | DontDelete); in createInvalidParamError() 161 …pressionBeginOffsetPropertyName), jsNumber(exec, divotPoint - startOffset), ReadOnly | DontDelete); in createNotAConstructorError() 162 …ifier(exec, expressionCaretOffsetPropertyName), jsNumber(exec, divotPoint), ReadOnly | DontDelete); in createNotAConstructorError() 163 …, expressionEndOffsetPropertyName), jsNumber(exec, divotPoint + endOffset), ReadOnly | DontDelete); in createNotAConstructorError() 175 …pressionBeginOffsetPropertyName), jsNumber(exec, divotPoint - startOffset), ReadOnly | DontDelete); in createNotAFunctionError() [all …]
|
D | MathObject.cpp | 91 …putDirectWithoutTransition(Identifier(exec, "E"), jsNumber(exec, exp(1.0)), DontDelete | DontEnum … in MathObject() 92 …putDirectWithoutTransition(Identifier(exec, "LN2"), jsNumber(exec, log(2.0)), DontDelete | DontEnu… in MathObject() 93 …putDirectWithoutTransition(Identifier(exec, "LN10"), jsNumber(exec, log(10.0)), DontDelete | DontE… in MathObject() 94 …tTransition(Identifier(exec, "LOG2E"), jsNumber(exec, 1.0 / log(2.0)), DontDelete | DontEnum | Rea… in MathObject() 95 …ransition(Identifier(exec, "LOG10E"), jsNumber(exec, 1.0 / log(10.0)), DontDelete | DontEnum | Rea… in MathObject() 96 …putDirectWithoutTransition(Identifier(exec, "PI"), jsNumber(exec, piDouble), DontDelete | DontEnum… in MathObject() 97 …putDirectWithoutTransition(Identifier(exec, "SQRT1_2"), jsNumber(exec, sqrt(0.5)), DontDelete | Do… in MathObject() 98 …putDirectWithoutTransition(Identifier(exec, "SQRT2"), jsNumber(exec, sqrt(2.0)), DontDelete | Dont… in MathObject()
|
D | Error.cpp | 86 …tWithAttributes(exec, Identifier(exec, "line"), jsNumber(exec, lineNumber), ReadOnly | DontDelete); in create() 88 …ithAttributes(exec, Identifier(exec, "sourceId"), jsNumber(exec, sourceID), ReadOnly | DontDelete); in create() 90 …hAttributes(exec, Identifier(exec, "sourceURL"), jsString(exec, sourceURL), ReadOnly | DontDelete); in create()
|
D | PrototypeFunction.cpp | 40 … putDirect(exec->propertyNames().length, jsNumber(exec, length), DontDelete | ReadOnly | DontEnum); in PrototypeFunction() 48 … putDirect(exec->propertyNames().length, jsNumber(exec, length), DontDelete | ReadOnly | DontEnum); in PrototypeFunction()
|
D | ErrorConstructor.cpp | 36 …thoutTransition(exec->propertyNames().prototype, errorPrototype, DontEnum | DontDelete | ReadOnly); in ErrorConstructor() 37 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), DontDelete | ReadOnly … in ErrorConstructor()
|
D | ArrayConstructor.cpp | 40 …thoutTransition(exec->propertyNames().prototype, arrayPrototype, DontEnum | DontDelete | ReadOnly); in ArrayConstructor() 43 …thoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | DontDelete); in ArrayConstructor()
|
D | NativeErrorConstructor.cpp | 39 …putDirect(exec->propertyNames().length, jsNumber(exec, 1), DontDelete | ReadOnly | DontEnum); // E… in NativeErrorConstructor() 40 …putDirect(exec->propertyNames().prototype, nativeErrorPrototype, DontDelete | ReadOnly | DontEnum); in NativeErrorConstructor()
|
D | BooleanConstructor.cpp | 34 …outTransition(exec->propertyNames().prototype, booleanPrototype, DontEnum | DontDelete | ReadOnly); in BooleanConstructor() 37 …thoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontDelete | DontEnum); in BooleanConstructor()
|
D | ObjectConstructor.cpp | 39 …houtTransition(exec->propertyNames().prototype, objectPrototype, DontEnum | DontDelete | ReadOnly); in ObjectConstructor() 42 …thoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | DontDelete); in ObjectConstructor()
|
D | StringConstructor.cpp | 54 …houtTransition(exec->propertyNames().prototype, stringPrototype, ReadOnly | DontEnum | DontDelete); in StringConstructor() 60 …thoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | DontDelete); in StringConstructor()
|
D | NumberConstructor.cpp | 60 …houtTransition(exec->propertyNames().prototype, numberPrototype, DontEnum | DontDelete | ReadOnly); in NumberConstructor() 63 …thoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | DontDelete); in NumberConstructor()
|
D | FunctionConstructor.cpp | 40 …utTransition(exec->propertyNames().prototype, functionPrototype, DontEnum | DontDelete | ReadOnly); in FunctionConstructor() 43 …thoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontDelete | DontEnum); in FunctionConstructor()
|
D | JSGlobalObject.cpp | 319 …(exec) MathObject(exec, MathObject::createStructure(d()->objectPrototype)), DontEnum | DontDelete), in reset() 320 GlobalPropertyInfo(Identifier(exec, "NaN"), jsNaN(exec), DontEnum | DontDelete), in reset() 321 … GlobalPropertyInfo(Identifier(exec, "Infinity"), jsNumber(exec, Inf), DontEnum | DontDelete), in reset() 322 GlobalPropertyInfo(Identifier(exec, "undefined"), jsUndefined(), DontEnum | DontDelete), in reset() 323 …), new (exec) JSONObject(JSONObject::createStructure(d()->objectPrototype)), DontEnum | DontDelete) in reset()
|
D | JSFunction.cpp | 58 … putDirect(exec->propertyNames().length, jsNumber(exec, length), DontDelete | ReadOnly | DontEnum); in JSFunction() 143 putDirect(exec->propertyNames().prototype, prototype, DontDelete); in getOwnPropertySlot()
|
D | InternalFunction.cpp | 43 …putDirect(globalData->propertyNames->name, jsString(globalData, name.ustring()), DontDelete | Read… in InternalFunction()
|
D | JSVariableObject.cpp | 59 attributes = entry.getAttributes() | DontDelete; in getPropertyAttributes()
|
D | DateConstructor.cpp | 63 …ectWithoutTransition(exec->propertyNames().prototype, datePrototype, DontEnum|DontDelete|ReadOnly); in DateConstructor() 69 …thoutTransition(exec->propertyNames().length, jsNumber(exec, 7), ReadOnly | DontEnum | DontDelete); in DateConstructor()
|
/external/webkit/WebCore/bindings/js/ |
D | JSDOMWindowBase.cpp | 55 GlobalPropertyInfo(Identifier(globalExec(), "document"), jsNull(), DontDelete | ReadOnly), in JSDOMWindowBase() 56 GlobalPropertyInfo(Identifier(globalExec(), "window"), d()->shell, DontDelete | ReadOnly) in JSDOMWindowBase() 66 …utes(Identifier(exec, "document"), toJS(exec, this, d()->impl->document()), DontDelete | ReadOnly); in updateDocument()
|
D | JSImageDataCustom.cpp | 52 … JSByteArray(exec, cpaStructure, imageData->data()->data(), &cpaClassInfo), DontDelete | ReadOnly); in toJS()
|
D | JSWebKitCSSMatrixConstructor.cpp | 42 putDirect(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly|DontDelete|DontEnum); in JSWebKitCSSMatrixConstructor()
|
D | JSSQLResultSetRowListCustom.cpp | 77 … object->putDirect(Identifier(exec, m_impl->columnNames()[i]), jsValue, DontDelete | ReadOnly); in item()
|
D | JSAudioConstructor.cpp | 48 putDirect(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly|DontDelete|DontEnum); in JSAudioConstructor()
|
D | JSWebKitPointConstructor.cpp | 43 putDirect(exec->propertyNames().length, jsNumber(exec, 2), ReadOnly|DontDelete|DontEnum); in JSWebKitPointConstructor()
|
D | JSWorkerConstructor.cpp | 48 putDirect(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly|DontDelete|DontEnum); in JSWorkerConstructor()
|
/external/webkit/V8Binding/v8/test/mjsunit/ |
D | mirror-regexp.js | 33 debug.PropertyAttribute.DontDelete; 39 'lastIndex': debug.PropertyAttribute.DontEnum | debug.PropertyAttribute.DontDelete
|