/external/webkit/Source/JavaScriptCore/runtime/ |
D | PropertyDescriptor.cpp | 41 return !(m_attributes & ReadOnly); in writable() 72 m_attributes = ReadOnly | DontDelete | DontEnum; in setUndefined() 97 m_attributes &= ~ReadOnly; in setDescriptor() 111 m_attributes &= ~ReadOnly; in setAccessorDescriptor() 118 m_attributes &= ~ReadOnly; in setWritable() 120 m_attributes |= ReadOnly; in setWritable() 146 m_attributes &= ~ReadOnly; in setSetter() 153 m_attributes &= ~ReadOnly; in setGetter() 172 if (sharedSeen & WritablePresent && mismatch & ReadOnly) in attributesEqual() 186 if (sharedSeen & WritablePresent && mismatch & ReadOnly) in attributesWithOverride() [all …]
|
D | MathObject.cpp | 94 …n(exec->globalData(), Identifier(exec, "E"), jsNumber(exp(1.0)), DontDelete | DontEnum | ReadOnly); in MathObject() 95 …exec->globalData(), Identifier(exec, "LN2"), jsNumber(log(2.0)), DontDelete | DontEnum | ReadOnly); in MathObject() 96 …ec->globalData(), Identifier(exec, "LN10"), jsNumber(log(10.0)), DontDelete | DontEnum | ReadOnly); in MathObject() 97 …obalData(), Identifier(exec, "LOG2E"), jsNumber(1.0 / log(2.0)), DontDelete | DontEnum | ReadOnly); in MathObject() 98 …(exec, "LOG10E"), jsNumber(0.4342944819032518), DontDelete | DontEnum | ReadOnly); // See ECMA-262… in MathObject() 99 …(exec->globalData(), Identifier(exec, "PI"), jsNumber(piDouble), DontDelete | DontEnum | ReadOnly); in MathObject() 100 …>globalData(), Identifier(exec, "SQRT1_2"), jsNumber(sqrt(0.5)), DontDelete | DontEnum | ReadOnly); in MathObject() 101 …c->globalData(), Identifier(exec, "SQRT2"), jsNumber(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 | JSFunction.cpp | 70 …ames->name, jsString(exec, name.isNull() ? "" : name.ustring()), DontDelete | ReadOnly | DontEnum); in JSFunction() 71 …c->globalData(), exec->propertyNames().length, jsNumber(length), DontDelete | ReadOnly | DontEnum); in JSFunction() 83 …ames->name, jsString(exec, name.isNull() ? "" : name.ustring()), DontDelete | ReadOnly | DontEnum); in JSFunction() 84 …c->globalData(), exec->propertyNames().length, jsNumber(length), DontDelete | ReadOnly | DontEnum); in JSFunction() 94 …ames->name, jsString(exec, name.isNull() ? "" : name.ustring()), DontDelete | ReadOnly | DontEnum); in JSFunction() 243 …descriptor.setDescriptor(exec->interpreter()->retrieveArguments(exec, this), ReadOnly | DontEnum |… in getOwnPropertyDescriptor() 248 …descriptor.setDescriptor(jsNumber(jsExecutable()->parameterCount()), ReadOnly | DontEnum | DontDel… in getOwnPropertyDescriptor() 256 …descriptor.setDescriptor(exec->interpreter()->retrieveCaller(exec, this), ReadOnly | DontEnum | Do… in getOwnPropertyDescriptor()
|
D | ErrorConstructor.cpp | 36 …->globalData(), exec->propertyNames().prototype, errorPrototype, DontEnum | DontDelete | ReadOnly); in ErrorConstructor() 37 …n(exec->globalData(), exec->propertyNames().length, jsNumber(1), DontDelete | ReadOnly | DontEnum); in ErrorConstructor()
|
D | BooleanConstructor.cpp | 34 …globalData(), exec->propertyNames().prototype, booleanPrototype, DontEnum | DontDelete | ReadOnly); in BooleanConstructor() 37 …ansition(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontDelete | Do… in BooleanConstructor()
|
D | ArrayConstructor.cpp | 44 …->globalData(), exec->propertyNames().prototype, arrayPrototype, DontEnum | DontDelete | ReadOnly); in ArrayConstructor() 47 …ansition(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontEnum | Dont… in ArrayConstructor()
|
D | NativeErrorConstructor.cpp | 42 …putDirect(exec->globalData(), exec->propertyNames().length, jsNumber(1), DontDelete | ReadOnly | D… in NativeErrorConstructor() 43 …putDirect(exec->globalData(), exec->propertyNames().prototype, prototype, DontDelete | ReadOnly | … in NativeErrorConstructor()
|
D | StringConstructor.cpp | 55 …n(exec->globalData(), exec->propertyNames().prototype, stringPrototype, ReadOnly | DontEnum | Dont… in StringConstructor() 64 …ansition(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontEnum | Dont… in StringConstructor()
|
D | NumberConstructor.cpp | 63 …>globalData(), exec->propertyNames().prototype, numberPrototype, DontEnum | DontDelete | ReadOnly); in NumberConstructor() 66 …ansition(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontEnum | Dont… in NumberConstructor()
|
D | Error.cpp | 125 …butes(globalData, Identifier(globalData, linePropertyName), jsNumber(line), ReadOnly | DontDelete); in addErrorInfo() 127 …, Identifier(globalData, sourceIdPropertyName), jsNumber((double)sourceID), ReadOnly | DontDelete); in addErrorInfo() 129 …tifier(globalData, sourceURLPropertyName), jsString(globalData, sourceURL), ReadOnly | DontDelete); in addErrorInfo()
|
D | FunctionConstructor.cpp | 43 …lobalData(), exec->propertyNames().prototype, functionPrototype, DontEnum | DontDelete | ReadOnly); in FunctionConstructor() 46 …ansition(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontDelete | Do… in FunctionConstructor()
|
/external/clang/test/CodeGenObjC/ |
D | continuation-class.m | 7 @interface ReadOnly : Object interface 16 @interface ReadOnly () interface in readwrite 21 @implementation ReadOnly implementation 30 ReadOnly *test = [ReadOnly new];
|
/external/clang/test/SemaObjC/ |
D | property-category-1.m | 7 @interface ReadOnly : Object interface 16 @interface ReadOnly () interface in readwrite 21 @implementation ReadOnly implementation 31 ReadOnly *test = [ReadOnly new];
|
D | continuation-class-err.m | 3 @interface ReadOnly interface 13 @interface ReadOnly () interface in readwrite 15 … expected-error {{illegal redeclaration of property in class extension 'ReadOnly' (attribute must …
|
/external/webkit/Source/WebCore/rendering/ |
D | HitTestRequest.h | 30 ReadOnly = 1 << 1, enumerator 45 bool readOnly() const { return m_requestType & ReadOnly; } in readOnly()
|
/external/llvm/include/llvm/MC/ |
D | SectionKind.h | 39 ReadOnly, enumerator 141 return K == ReadOnly || isMergeableCString() || in isReadOnly() 209 static SectionKind getReadOnly() { return get(ReadOnly); } in getReadOnly()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSDOMWindowBase.cpp | 56 GlobalPropertyInfo(Identifier(globalExec(), "document"), jsNull(), DontDelete | ReadOnly), in JSDOMWindowBase() 57 GlobalPropertyInfo(Identifier(globalExec(), "window"), m_shell, DontDelete | ReadOnly) in JSDOMWindowBase() 67 …Data(), Identifier(exec, "document"), toJS(exec, this, m_impl->document()), DontDelete | ReadOnly); in updateDocument()
|
/external/webkit/Source/WebCore/bindings/scripts/test/JS/ |
D | JSTestObj.cpp | 60 …{ "readOnlyIntAttr", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTe… 61 …{ "readOnlyStringAttr", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(j… 62 …{ "readOnlyTestObjAttr", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(… 88 …{ "scriptStringAttr", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsT… 98 …{ "description", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestOb… 100 …{ "hash", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestObjHash),… 101 …{ "constructor", DontEnum | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestObjC… 116 …{ "CONST_VALUE_0", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTest… 117 …{ "CONST_VALUE_1", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTest… 118 …{ "CONST_VALUE_2", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTest… [all …]
|
D | JSTestSerializedScriptValueInterface.cpp | 46 …{ "value", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestSerializ… 47 …{ "constructor", DontEnum | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsTestSeri… 88 …e, JSTestSerializedScriptValueInterfacePrototype::self(exec, globalObject), DontDelete | ReadOnly); in JSTestSerializedScriptValueInterfaceConstructor()
|
/external/webkit/Source/WebKit2/Shared/gtk/ |
D | UpdateChunk.cpp | 69 if (m_sharedMemory->createHandle(handle, SharedMemory::ReadOnly)) { in encode() 101 chunk.m_sharedMemory = SharedMemory::create(handle, SharedMemory::ReadOnly); in decode()
|
/external/webkit/Source/WebKit2/Shared/qt/ |
D | UpdateChunk.cpp | 68 if (m_sharedMemory->createHandle(handle, SharedMemory::ReadOnly)) { in encode() 100 chunk.m_sharedMemory = SharedMemory::create(handle, SharedMemory::ReadOnly); in decode()
|
/external/chromium/chrome/common/ |
D | json_pref_store_unittest.cc | 51 EXPECT_FALSE(pref_store->ReadOnly()); in TEST_F() 63 EXPECT_FALSE(pref_store->ReadOnly()); in TEST_F() 83 ASSERT_FALSE(pref_store->ReadOnly()); in TEST_F()
|
/external/webkit/Source/WebKit/qt/tests/qwebhistory/ |
D | tst_qwebhistory.cpp | 206 QDataStream load(&tmp, QIODevice::ReadOnly); //from here data will be loaded in serialize_1() 235 QDataStream load(&tmp, QIODevice::ReadOnly); //from here data will be loaded in serialize_2() 265 QDataStream load(&tmp, QIODevice::ReadOnly); //from here data will be loaded in serialize_3() 307 QDataStream load(out, QIODevice::ReadOnly); in restoreHistory()
|
/external/llvm/include/llvm/ |
D | Function.h | 225 return doesNotAccessMemory() || hasFnAttr(Attribute::ReadOnly); 228 if (OnlyReadsMemory) addFnAttr(Attribute::ReadOnly); 229 else removeFnAttr(Attribute::ReadOnly | Attribute::ReadNone);
|