/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 …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()
|
D | SymbolTable.h | 59 pack(index, attributes & ReadOnly, attributes & DontEnum); in SymbolTableEntry() 76 attributes |= ReadOnly; in getAttributes() 84 pack(getIndex(), attributes & ReadOnly, attributes & DontEnum); in setAttributes()
|
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 …thoutTransition(exec->propertyNames().length, jsNumber(exec, 1), DontDelete | ReadOnly | DontEnum); in ErrorConstructor()
|
D | ArrayConstructor.cpp | 40 …thoutTransition(exec->propertyNames().prototype, arrayPrototype, DontEnum | DontDelete | ReadOnly); in ArrayConstructor() 43 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | … 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 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontDelete … in BooleanConstructor()
|
D | ObjectConstructor.cpp | 39 …houtTransition(exec->propertyNames().prototype, objectPrototype, DontEnum | DontDelete | ReadOnly); in ObjectConstructor() 42 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | … in ObjectConstructor()
|
D | StringConstructor.cpp | 54 …putDirectWithoutTransition(exec->propertyNames().prototype, stringPrototype, ReadOnly | DontEnum |… in StringConstructor() 60 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | … in StringConstructor()
|
D | NumberConstructor.cpp | 60 …houtTransition(exec->propertyNames().prototype, numberPrototype, DontEnum | DontDelete | ReadOnly); in NumberConstructor() 63 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | … in NumberConstructor()
|
D | FunctionConstructor.cpp | 40 …utTransition(exec->propertyNames().prototype, functionPrototype, DontEnum | DontDelete | ReadOnly); in FunctionConstructor() 43 …putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontDelete … in FunctionConstructor()
|
D | InternalFunction.cpp | 43 …Data->propertyNames->name, jsString(globalData, name.ustring()), DontDelete | ReadOnly | DontEnum); in InternalFunction()
|
/external/webkit/WebCore/rendering/ |
D | HitTestRequest.h | 32 ReadOnly = 0x1, enumerator 44 bool readOnly() const { return m_requestType & ReadOnly; } in readOnly()
|
/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()
|
/external/webkit/WebKit/qt/tests/qwebhistory/ |
D | tst_qwebhistory.cpp | 195 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/ |
D | SharedBufferQt.cpp | 39 if (!file.exists() || !file.open(QFile::ReadOnly)) in createWithContentsOfFile()
|
/external/webkit/WebCore/platform/graphics/qt/ |
D | ImageDecoderQt.cpp | 100 m_buffer.open(QIODevice::ReadOnly); in ReadContext() 189 if (!buffer.open(QBuffer::ReadOnly)) in create()
|
/external/e2fsprogs/lib/ext2fs/ |
D | nt_io.c | 498 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()
|