Searched refs:PropertyAttribute (Results 1 – 17 of 17) sorted by relevance
/external/v8/test/mjsunit/ |
D | mirror-regexp.js | 31 var all_attributes = debug.PropertyAttribute.ReadOnly | 32 debug.PropertyAttribute.DontEnum | 33 debug.PropertyAttribute.DontDelete; 39 'lastIndex': debug.PropertyAttribute.DontEnum | debug.PropertyAttribute.DontDelete
|
D | mirror-object.js | 127 if (properties[i].attributes() != debug.PropertyAttribute.None) {
|
/external/webkit/Source/WebCore/bindings/scripts/test/V8/ |
D | V8TestObj.cpp | 1155 …ta */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), … 1157 …ta */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), … 1159 …ta */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), … 1161 …ta */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), … 1163 …ta */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), … 1165 …ta */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), … 1167 …ta */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), … 1169 …ta */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), … 1171 …ta */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), … 1173 …ta */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), … [all …]
|
D | V8TestSerializedScriptValueInterface.cpp | 85 …tValue::deserializeAndSetProperty(wrapper, "value", static_cast<v8::PropertyAttribute>(v8::DontDel… in wrapSlow()
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | SerializedScriptValue.h | 43 v8::PropertyAttribute, SerializedScriptValue*); 45 v8::PropertyAttribute, PassRefPtr<SerializedScriptValue>);
|
D | V8Proxy.h | 82 v8::PropertyAttribute attribute; 115 v8::PropertyAttribute,
|
D | SerializedScriptValue.cpp | 1141 … v8::PropertyAttribute attribute, SerializedScriptValue* value) in deserializeAndSetProperty() 1150 … v8::PropertyAttribute attribute, PassRefPtr<SerializedScriptValue> value) in deserializeAndSetProperty()
|
D | V8DOMWindowShell.cpp | 483 …ceSet(v8::String::New("document"), documentWrapper, static_cast<v8::PropertyAttribute>(v8::ReadOnl… in updateDocumentWrapperCache()
|
D | V8Binding.cpp | 536 static_cast<v8::PropertyAttribute>(v8::DontDelete), in configureTemplate()
|
D | V8Proxy.cpp | 102 v8::PropertyAttribute attributes, in batchConfigureCallbacks()
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8MessageEventCustom.cpp | 87 …v8::PropertyAttribute dataAttr = static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::ReadOnly); in initMessageEventCallback()
|
D | V8SQLResultSetRowListCustom.cpp | 85 …item->Set(v8String(rowList->columnNames()[i]), value, static_cast<v8::PropertyAttribute>(v8::DontD… in itemCallback()
|
/external/v8/src/ |
D | mirror-debugger.js | 186 var PropertyAttribute = {}; variable 187 PropertyAttribute.None = NONE; 188 PropertyAttribute.ReadOnly = READ_ONLY; 189 PropertyAttribute.DontEnum = DONT_ENUM; 190 PropertyAttribute.DontDelete = DONT_DELETE; 1123 return (this.attributes() & PropertyAttribute.ReadOnly) != 0; 1128 return (this.attributes() & PropertyAttribute.DontEnum) == 0; 1133 return (this.attributes() & PropertyAttribute.DontDelete) == 0; 2344 if (propertyMirror.attributes() != PropertyAttribute.None) {
|
D | api.cc | 885 v8::PropertyAttribute attribute) { in Set() 1050 v8::PropertyAttribute attributes) { in MakeAccessorInfo() 1072 v8::PropertyAttribute attributes) { in AddInstancePropertyAccessor() 1268 PropertyAttribute attribute) { in SetAccessor() 2731 v8::PropertyAttribute attribs) { in Set() 2774 v8::PropertyAttribute attribs) { in ForceSet() 2841 PropertyAttribute v8::Object::GetPropertyAttributes(v8::Handle<Value> key) { in GetPropertyAttributes() 2844 return static_cast<PropertyAttribute>(NONE)); in GetPropertyAttributes() 2852 EXCEPTION_BAILOUT_CHECK(isolate, static_cast<PropertyAttribute>(NONE)); in GetPropertyAttributes() 2856 if (result == ABSENT) return static_cast<PropertyAttribute>(NONE); in GetPropertyAttributes() [all …]
|
/external/webkit/Source/WebKit/chromium/src/ |
D | BoundObject.cpp | 66 static_cast<v8::PropertyAttribute>(v8::DontDelete)); in addProtoFunction()
|
/external/v8/include/ |
D | v8.h | 1392 enum PropertyAttribute { enum 1453 PropertyAttribute attribs = None); 1468 PropertyAttribute attribs = None); 1479 V8EXPORT PropertyAttribute GetPropertyAttributes(Handle<Value> key); 1500 PropertyAttribute attribute = None); 1946 PropertyAttribute attributes = None); 2280 PropertyAttribute attributes); 2344 PropertyAttribute attribute = None);
|
/external/v8/test/cctest/ |
D | test-log.cc | 381 static_cast<v8::PropertyAttribute>(v8::DontDelete)); in TEST()
|