Home
last modified time | relevance | path

Searched refs:ReadOnly (Results 1 – 25 of 48) sorted by relevance

12

/external/webkit/JavaScriptCore/runtime/
DExceptionHelpers.cpp76 …pressionBeginOffsetPropertyName), jsNumber(exec, divotPoint - startOffset), ReadOnly | DontDelete); in createUndefinedVariableError()
77 …ifier(exec, expressionCaretOffsetPropertyName), jsNumber(exec, divotPoint), ReadOnly | DontDelete); in createUndefinedVariableError()
78 …, expressionEndOffsetPropertyName), jsNumber(exec, divotPoint + endOffset), ReadOnly | DontDelete); in createUndefinedVariableError()
138 …pressionBeginOffsetPropertyName), jsNumber(exec, divotPoint - startOffset), ReadOnly | DontDelete); in createInvalidParamError()
139 …ifier(exec, expressionCaretOffsetPropertyName), jsNumber(exec, divotPoint), ReadOnly | DontDelete); in createInvalidParamError()
140 …, expressionEndOffsetPropertyName), jsNumber(exec, divotPoint + endOffset), ReadOnly | DontDelete); in createInvalidParamError()
159 …pressionBeginOffsetPropertyName), jsNumber(exec, divotPoint - startOffset), ReadOnly | DontDelete); in createNotAConstructorError()
160 …ifier(exec, expressionCaretOffsetPropertyName), jsNumber(exec, divotPoint), ReadOnly | DontDelete); in createNotAConstructorError()
161 …, expressionEndOffsetPropertyName), jsNumber(exec, divotPoint + endOffset), ReadOnly | DontDelete); in createNotAConstructorError()
173 …pressionBeginOffsetPropertyName), jsNumber(exec, divotPoint - startOffset), ReadOnly | DontDelete); in createNotAFunctionError()
[all …]
DMathObject.cpp91 …thoutTransition(Identifier(exec, "E"), jsNumber(exec, exp(1.0)), DontDelete | DontEnum | ReadOnly); in MathObject()
92 …outTransition(Identifier(exec, "LN2"), jsNumber(exec, log(2.0)), DontDelete | DontEnum | ReadOnly); in MathObject()
93 …tTransition(Identifier(exec, "LN10"), jsNumber(exec, log(10.0)), DontDelete | DontEnum | ReadOnly); in MathObject()
94 …ition(Identifier(exec, "LOG2E"), jsNumber(exec, 1.0 / log(2.0)), DontDelete | DontEnum | ReadOnly); in MathObject()
95 …ion(Identifier(exec, "LOG10E"), jsNumber(exec, 1.0 / log(10.0)), DontDelete | DontEnum | ReadOnly); in MathObject()
96 …houtTransition(Identifier(exec, "PI"), jsNumber(exec, piDouble), DontDelete | DontEnum | ReadOnly); in MathObject()
97 …ansition(Identifier(exec, "SQRT1_2"), jsNumber(exec, sqrt(0.5)), DontDelete | DontEnum | ReadOnly); in MathObject()
98 …Transition(Identifier(exec, "SQRT2"), jsNumber(exec, sqrt(2.0)), DontDelete | DontEnum | ReadOnly); in MathObject()
DSymbolTable.h59 pack(index, attributes & ReadOnly, attributes & DontEnum); in SymbolTableEntry()
76 attributes |= ReadOnly; in getAttributes()
84 pack(getIndex(), attributes & ReadOnly, attributes & DontEnum); in setAttributes()
DError.cpp85 …tWithAttributes(exec, Identifier(exec, "line"), jsNumber(exec, lineNumber), ReadOnly | DontDelete); in create()
87 …ithAttributes(exec, Identifier(exec, "sourceId"), jsNumber(exec, sourceID), ReadOnly | DontDelete); in create()
89 …hAttributes(exec, Identifier(exec, "sourceURL"), jsString(exec, sourceURL), ReadOnly | DontDelete); in create()
DPrototypeFunction.cpp40 … 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()
DObjectConstructor.cpp35 …houtTransition(exec->propertyNames().prototype, objectPrototype, DontEnum | DontDelete | ReadOnly); in ObjectConstructor()
38 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | … in ObjectConstructor()
DErrorConstructor.cpp36 …thoutTransition(exec->propertyNames().prototype, errorPrototype, DontEnum | DontDelete | ReadOnly); in ErrorConstructor()
37 …thoutTransition(exec->propertyNames().length, jsNumber(exec, 1), DontDelete | ReadOnly | DontEnum); in ErrorConstructor()
DNativeErrorConstructor.cpp39 …putDirect(exec->propertyNames().length, jsNumber(exec, 1), DontDelete | ReadOnly | DontEnum); // E… in NativeErrorConstructor()
40 …putDirect(exec->propertyNames().prototype, nativeErrorPrototype, DontDelete | ReadOnly | DontEnum); in NativeErrorConstructor()
DBooleanConstructor.cpp34 …outTransition(exec->propertyNames().prototype, booleanPrototype, DontEnum | DontDelete | ReadOnly); in BooleanConstructor()
37 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontDelete … in BooleanConstructor()
DArrayConstructor.cpp39 …thoutTransition(exec->propertyNames().prototype, arrayPrototype, DontEnum | DontDelete | ReadOnly); in ArrayConstructor()
42 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | … in ArrayConstructor()
DStringConstructor.cpp53 …putDirectWithoutTransition(exec->propertyNames().prototype, stringPrototype, ReadOnly | DontEnum |… in StringConstructor()
59 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | … in StringConstructor()
DNumberConstructor.cpp60 …houtTransition(exec->propertyNames().prototype, numberPrototype, DontEnum | DontDelete | ReadOnly); in NumberConstructor()
63 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | … in NumberConstructor()
DFunctionConstructor.cpp40 …utTransition(exec->propertyNames().prototype, functionPrototype, DontEnum | DontDelete | ReadOnly); in FunctionConstructor()
43 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontDelete … in FunctionConstructor()
DInternalFunction.cpp43 …Data->propertyNames->name, jsString(globalData, name.ustring()), DontDelete | ReadOnly | DontEnum); in InternalFunction()
DJSObject.h48 ReadOnly = 1 << 1, // property can be only read, not written enumerator
304 slotIsWriteable = !(attributes & ReadOnly); in getOwnPropertySlotForWrite()
395 if (checkReadOnly && currentAttributes & ReadOnly) in putDirect()
430 if (checkReadOnly && currentAttributes & ReadOnly) in putDirect()
DDateConstructor.cpp57 …ectWithoutTransition(exec->propertyNames().prototype, datePrototype, DontEnum|DontDelete|ReadOnly); in DateConstructor()
63 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 7), ReadOnly | DontEnum | … in DateConstructor()
/external/webkit/WebCore/platform/qt/
DSharedBufferQt.cpp39 if (!file.exists() || !file.open(QFile::ReadOnly)) in createWithContentsOfFile()
/external/webkit/WebCore/bindings/js/
DJSImageDataCustom.cpp52 … JSByteArray(exec, cpaStructure, imageData->data()->data(), &cpaClassInfo), DontDelete | ReadOnly); in toJS()
DJSWebKitCSSMatrixConstructor.cpp42 putDirect(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly|DontDelete|DontEnum); in JSWebKitCSSMatrixConstructor()
DJSWorkerConstructor.cpp47 putDirect(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly|DontDelete|DontEnum); in JSWorkerConstructor()
DJSSQLResultSetRowListCustom.cpp75 … object->putDirect(Identifier(exec, m_impl->columnNames()[i]), jsValue, DontDelete | ReadOnly); in item()
DJSAudioConstructor.cpp50 putDirect(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly|DontDelete|DontEnum); in JSAudioConstructor()
DJSOptionConstructor.cpp42 putDirect(exec->propertyNames().length, jsNumber(exec, 4), ReadOnly|DontDelete|DontEnum); in JSOptionConstructor()
/external/webkit/WebCore/platform/graphics/qt/
DImageDecoderQt.cpp100 m_buffer.open(QIODevice::ReadOnly); in ReadContext()
189 if (!buffer.open(QBuffer::ReadOnly)) in create()
/external/e2fsprogs/lib/ext2fs/
Dnt_io.c498 IN BOOLEAN ReadOnly, in _OpenDriveLetter() argument
507 return _OpenNtName(Buffer, ReadOnly, Handle, OpenedReadonly); in _OpenDriveLetter()
817 IN BOOLEAN ReadOnly, in _Ext2OpenDevice() argument
842 Status = _OpenDriveLetter(*Name, ReadOnly, Handle, OpenedReadonly); in _Ext2OpenDevice()
868 Status = _OpenNtName(Name, ReadOnly, Handle, OpenedReadonly); in _Ext2OpenDevice()

12