HomeSort by relevance Sort by last modified time
    Searched defs:ReadOnly (Results 1 - 11 of 11) sorted by null

  /external/webkit/WebCore/bindings/js/
JSSQLResultSetRowListCustom.cpp 77 object->putDirect(Identifier(exec, m_impl->columnNames()[i]), jsValue, DontDelete | ReadOnly);
JSDOMWindowBase.cpp 57 GlobalPropertyInfo(Identifier(globalExec(), "document"), jsNull(), DontDelete | ReadOnly),
58 GlobalPropertyInfo(Identifier(globalExec(), "window"), d()->shell, DontDelete | ReadOnly)
68 symbolTablePutWithAttributes(Identifier(exec, "document"), toJS(exec, this, d()->impl->document()), DontDelete | ReadOnly);
  /external/webkit/WebCore/rendering/
HitTestRequest.h 30 ReadOnly = 0x1,
42 bool readOnly() const { return m_requestType & ReadOnly; }
  /external/webkit/JavaScriptCore/runtime/
SymbolTable.h 59 pack(index, attributes & ReadOnly, attributes & DontEnum);
76 attributes |= ReadOnly;
84 pack(getIndex(), attributes & ReadOnly, attributes & DontEnum);
98 void pack(int index, bool readOnly, bool dontEnum)
101 if (readOnly)
JSString.cpp 218 descriptor.setDescriptor(jsNumber(exec, m_stringLength), DontEnum | DontDelete | ReadOnly);
225 descriptor.setDescriptor(jsSingleCharacterSubstring(exec, value(exec), i), DontDelete | ReadOnly);
MathObject.cpp 91 putDirectWithoutTransition(Identifier(exec, "E"), jsNumber(exec, exp(1.0)), DontDelete | DontEnum | ReadOnly);
92 putDirectWithoutTransition(Identifier(exec, "LN2"), jsNumber(exec, log(2.0)), DontDelete | DontEnum | ReadOnly);
93 putDirectWithoutTransition(Identifier(exec, "LN10"), jsNumber(exec, log(10.0)), DontDelete | DontEnum | ReadOnly);
94 putDirectWithoutTransition(Identifier(exec, "LOG2E"), jsNumber(exec, 1.0 / log(2.0)), DontDelete | DontEnum | ReadOnly);
95 putDirectWithoutTransition(Identifier(exec, "LOG10E"), jsNumber(exec, 1.0 / log(10.0)), DontDelete | DontEnum | ReadOnly);
96 putDirectWithoutTransition(Identifier(exec, "PI"), jsNumber(exec, piDouble), DontDelete | DontEnum | ReadOnly);
97 putDirectWithoutTransition(Identifier(exec, "SQRT1_2"), jsNumber(exec, sqrt(0.5)), DontDelete | DontEnum | ReadOnly);
98 putDirectWithoutTransition(Identifier(exec, "SQRT2"), jsNumber(exec, sqrt(2.0)), DontDelete | DontEnum | ReadOnly);
JSObject.h 60 ReadOnly = 1 << 1, // property can be only read, not written
441 if (checkReadOnly && currentAttributes & ReadOnly)
481 if (checkReadOnly && currentAttributes & ReadOnly)
  /external/v8/test/cctest/
test-accessors.cc 178 v8::ReadOnly);
test-api.cc     [all...]
  /external/webkit/WebCore/bindings/v8/
V8Proxy.cpp 119 functionDescriptor->Set(v8::String::New(constant->name), v8::Integer::New(constant->value), v8::ReadOnly);
120 proto->Set(v8::String::New(constant->name), v8::Integer::New(constant->value), v8::ReadOnly);
  /external/v8/include/
v8.h     [all...]

Completed in 3392 milliseconds