Home
last modified time | relevance | path

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

123

/external/webkit/JavaScriptCore/runtime/
DExceptionHelpers.cpp78 …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 …]
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.cpp86 …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()
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()
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()
DArrayConstructor.cpp40 …thoutTransition(exec->propertyNames().prototype, arrayPrototype, DontEnum | DontDelete | ReadOnly); in ArrayConstructor()
43 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | … in ArrayConstructor()
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()
DObjectConstructor.cpp39 …houtTransition(exec->propertyNames().prototype, objectPrototype, DontEnum | DontDelete | ReadOnly); in ObjectConstructor()
42 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | … in ObjectConstructor()
DStringConstructor.cpp54 …putDirectWithoutTransition(exec->propertyNames().prototype, stringPrototype, ReadOnly | DontEnum |… in StringConstructor()
60 …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()
/external/webkit/WebCore/rendering/
DHitTestRequest.h32 ReadOnly = 0x1, enumerator
44 bool readOnly() const { return m_requestType & ReadOnly; } in readOnly()
/external/webkit/WebCore/bindings/js/
DJSDOMWindowBase.cpp55 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()
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()
DJSSQLResultSetRowListCustom.cpp77 … object->putDirect(Identifier(exec, m_impl->columnNames()[i]), jsValue, DontDelete | ReadOnly); in item()
DJSAudioConstructor.cpp48 putDirect(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly|DontDelete|DontEnum); in JSAudioConstructor()
DJSWebKitPointConstructor.cpp43 putDirect(exec->propertyNames().length, jsNumber(exec, 2), ReadOnly|DontDelete|DontEnum); in JSWebKitPointConstructor()
/external/webkit/WebKit/qt/tests/qwebhistory/
Dtst_qwebhistory.cpp195 QDataStream load(&tmp, QIODevice::ReadOnly); //from here data will be loaded in serialize_1()
224 QDataStream load(&tmp, QIODevice::ReadOnly); //from here data will be loaded in serialize_2()
254 QDataStream load(&tmp, QIODevice::ReadOnly); //from here data will be loaded in serialize_3()
/external/webkit/WebCore/platform/qt/
DSharedBufferQt.cpp39 if (!file.exists() || !file.open(QFile::ReadOnly)) in createWithContentsOfFile()
/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()

123