Home
last modified time | relevance | path

Searched refs:PropertyAttribute (Results 1 – 17 of 17) sorted by relevance

/external/v8/test/mjsunit/
Dmirror-regexp.js31 var all_attributes = debug.PropertyAttribute.ReadOnly |
32 debug.PropertyAttribute.DontEnum |
33 debug.PropertyAttribute.DontDelete;
39 'lastIndex': debug.PropertyAttribute.DontEnum | debug.PropertyAttribute.DontDelete
Dmirror-object.js127 if (properties[i].attributes() != debug.PropertyAttribute.None) {
/external/webkit/Source/WebCore/bindings/scripts/test/V8/
DV8TestObj.cpp1155 …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 …]
DV8TestSerializedScriptValueInterface.cpp85 …tValue::deserializeAndSetProperty(wrapper, "value", static_cast<v8::PropertyAttribute>(v8::DontDel… in wrapSlow()
/external/webkit/Source/WebCore/bindings/v8/
DSerializedScriptValue.h43 v8::PropertyAttribute, SerializedScriptValue*);
45 v8::PropertyAttribute, PassRefPtr<SerializedScriptValue>);
DV8Proxy.h82 v8::PropertyAttribute attribute;
115 v8::PropertyAttribute,
DSerializedScriptValue.cpp1141 … v8::PropertyAttribute attribute, SerializedScriptValue* value) in deserializeAndSetProperty()
1150 … v8::PropertyAttribute attribute, PassRefPtr<SerializedScriptValue> value) in deserializeAndSetProperty()
DV8DOMWindowShell.cpp483 …ceSet(v8::String::New("document"), documentWrapper, static_cast<v8::PropertyAttribute>(v8::ReadOnl… in updateDocumentWrapperCache()
DV8Binding.cpp536 static_cast<v8::PropertyAttribute>(v8::DontDelete), in configureTemplate()
DV8Proxy.cpp102 v8::PropertyAttribute attributes, in batchConfigureCallbacks()
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8MessageEventCustom.cpp87 …v8::PropertyAttribute dataAttr = static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::ReadOnly); in initMessageEventCallback()
DV8SQLResultSetRowListCustom.cpp85 …item->Set(v8String(rowList->columnNames()[i]), value, static_cast<v8::PropertyAttribute>(v8::DontD… in itemCallback()
/external/v8/src/
Dmirror-debugger.js186 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) {
Dapi.cc885 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/
DBoundObject.cpp66 static_cast<v8::PropertyAttribute>(v8::DontDelete)); in addProtoFunction()
/external/v8/include/
Dv8.h1392 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/
Dtest-log.cc381 static_cast<v8::PropertyAttribute>(v8::DontDelete)); in TEST()