HomeSort by relevance Sort by last modified time
    Searched refs:ReadOnly (Results 26 - 50 of 147) sorted by null

12 3 4 5 6

  /external/webkit/Source/JavaScriptCore/runtime/
NumberConstructor.cpp 49 NaN numberConstructorNaNValue DontEnum|DontDelete|ReadOnly
50 NEGATIVE_INFINITY numberConstructorNegInfinity DontEnum|DontDelete|ReadOnly
51 POSITIVE_INFINITY numberConstructorPosInfinity DontEnum|DontDelete|ReadOnly
52 MAX_VALUE numberConstructorMaxValue DontEnum|DontDelete|ReadOnly
53 MIN_VALUE numberConstructorMinValue DontEnum|DontDelete|ReadOnly
63 putDirectWithoutTransition(exec->globalData(), exec->propertyNames().prototype, numberPrototype, DontEnum | DontDelete | ReadOnly);
66 putDirectWithoutTransition(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontEnum | DontDelete);
StringConstructor.cpp 55 putDirectWithoutTransition(exec->globalData(), exec->propertyNames().prototype, stringPrototype, ReadOnly | DontEnum | DontDelete);
64 putDirectWithoutTransition(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontEnum | DontDelete);
InternalFunction.cpp 48 putDirect(*globalData, globalData->propertyNames->name, jsString(globalData, name.isNull() ? "" : name.ustring()), DontDelete | ReadOnly | DontEnum);
Error.cpp 125 error->putWithAttributes(globalData, Identifier(globalData, linePropertyName), jsNumber(line), ReadOnly | DontDelete);
127 error->putWithAttributes(globalData, Identifier(globalData, sourceIdPropertyName), jsNumber((double)sourceID), ReadOnly | DontDelete);
129 error->putWithAttributes(globalData, Identifier(globalData, sourceURLPropertyName), jsString(globalData, sourceURL), ReadOnly | DontDelete);
JSByteArray.cpp 42 putDirect(exec->globalData(), exec->globalData().propertyNames->length, jsNumber(m_storage->length()), ReadOnly | DontDelete);
  /external/chromium/chrome/browser/prefs/
overlay_persistent_pref_store.h 44 virtual bool ReadOnly() const;
testing_pref_store.h 38 virtual bool ReadOnly() const;
overlay_persistent_pref_store.cc 77 bool OverlayPersistentPrefStore::ReadOnly() const {
  /external/chromium/chrome/common/
json_pref_store.h 55 virtual bool ReadOnly() const;
json_pref_store_unittest.cc 51 EXPECT_FALSE(pref_store->ReadOnly());
63 EXPECT_FALSE(pref_store->ReadOnly());
83 ASSERT_FALSE(pref_store->ReadOnly());
  /external/v8/src/
property-details.h 38 READ_ONLY = v8::ReadOnly,
  /external/webkit/Source/WebCore/bindings/js/
JSAudioConstructor.cpp 47 putDirect(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontDelete | DontEnum);
JSSQLResultSetRowListCustom.cpp 77 object->putDirect(exec->globalData(), Identifier(exec, stringToUString(m_impl->columnNames()[i])), jsValue, DontDelete | ReadOnly);
JSOptionConstructor.cpp 43 putDirect(exec->globalData(), exec->propertyNames().length, jsNumber(4), ReadOnly | DontDelete | DontEnum);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8SQLResultSetRowListCustom.cpp 85 item->Set(v8String(rowList->columnNames()[i]), value, static_cast<v8::PropertyAttribute>(v8::DontDelete|v8::ReadOnly));
V8MessageEventCustom.cpp 87 v8::PropertyAttribute dataAttr = static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::ReadOnly);
  /external/webkit/Source/WebKit/qt/tests/MIMESniffing/
tst_MIMESniffing.cpp 53 QVERIFY2(file.open(QIODevice::ReadOnly), QString("unable to open file %1").arg(file.fileName()).toLatin1());
  /external/webkit/Source/WebKit2/Platform/
SharedMemory.h 48 ReadOnly,
  /external/webkit/Source/WebKit2/Shared/
SandboxExtension.h 49 ReadOnly,
  /external/webkit/Source/WebCore/xml/
XSLTProcessorQt.cpp 159 inputBuffer.open(QIODevice::ReadOnly);
160 styleSheetBuffer.open(QIODevice::ReadOnly);
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestSerializedScriptValueInterface.cpp 85 SerializedScriptValue::deserializeAndSetProperty(wrapper, "value", static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::ReadOnly), impl->value());
  /external/webkit/Source/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 206 QDataStream load(&tmp, QIODevice::ReadOnly); //from here data will be loaded
235 QDataStream load(&tmp, QIODevice::ReadOnly); //from here data will be loaded
265 QDataStream load(&tmp, QIODevice::ReadOnly); //from here data will be loaded
307 QDataStream load(out, QIODevice::ReadOnly);
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestSerializedScriptValueInterface.cpp 46 { "value", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestSerializedScriptValueInterfaceValue), (intptr_t)0 THUNK_GENERATOR(0) },
47 { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestSerializedScriptValueInterfaceConstructor), (intptr_t)0 THUNK_GENERATOR(0) },
88 putDirect(exec->globalData(), exec->propertyNames().prototype, JSTestSerializedScriptValueInterfacePrototype::self(exec, globalObject), DontDelete | ReadOnly);
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 64 else if (FileHandle::ReadOnly == (pMode & FileHandle::ReadOnly))
303 return (m_OpenMode & ReadOnly);
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptconverter_p.h 136 if (flags.testFlag(QScriptValue::ReadOnly))

Completed in 496 milliseconds

12 3 4 5 6