Home
last modified time | relevance | path

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

12

/third_party/node/deps/v8/include/
Dv8-template.h53 PropertyAttribute attributes = None);
55 PropertyAttribute attributes = None);
57 PropertyAttribute attributes = None);
63 PropertyAttribute attribute = None, AccessControl settings = DEFAULT);
96 PropertyAttribute attribute, Local<AccessorSignature> signature,
104 PropertyAttribute attribute, Local<AccessorSignature> signature,
111 Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
118 Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
129 Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
138 PropertyAttribute attribute = None);
[all …]
Dv8-object.h139 enum PropertyAttribute { enum
274 PropertyAttribute attributes = None);
303 V8_WARN_UNUSED_RESULT Maybe<PropertyAttribute> GetPropertyAttributes(
346 AccessControl settings = DEFAULT, PropertyAttribute attribute = None,
352 PropertyAttribute attribute = None,
363 Local<Value> data = Local<Value>(), PropertyAttribute attributes = None,
378 PropertyAttribute attributes = None,
569 V8_WARN_UNUSED_RESULT Maybe<PropertyAttribute>
586 V8_WARN_UNUSED_RESULT Maybe<PropertyAttribute> GetRealNamedPropertyAttributes(
/third_party/node/src/
Duv.cc57 using v8::PropertyAttribute;
118 PropertyAttribute attributes = in Initialize()
119 static_cast<PropertyAttribute>(ReadOnly | DontDelete); in Initialize()
Dnode_contextify.cc67 using v8::PropertyAttribute;
298 static_cast<v8::PropertyAttribute>(v8::DontEnum)) in New()
493 PropertyAttribute attributes = PropertyAttribute::None; in PropertySetterCallback()
499 static_cast<int>(PropertyAttribute::ReadOnly); in PropertySetterCallback()
506 static_cast<int>(PropertyAttribute::ReadOnly)); in PropertySetterCallback()
585 PropertyAttribute attributes = PropertyAttribute::None; in PropertyDefinerCallback()
592 static_cast<int>(PropertyAttribute::ReadOnly); in PropertyDefinerCallback()
Dfs_event_wrap.cc42 using v8::PropertyAttribute;
118 static_cast<PropertyAttribute>(ReadOnly | DontDelete | DontEnum)); in Initialize()
Dnode_perf.cc31 using v8::PropertyAttribute;
348 PropertyAttribute attr = in Initialize()
349 static_cast<PropertyAttribute>(ReadOnly | DontDelete); in Initialize()
Dstream_base.cc36 using v8::PropertyAttribute;
497 enum PropertyAttribute attributes, in AddMethod()
516 enum PropertyAttribute attributes = in AddMethods()
517 static_cast<PropertyAttribute>(ReadOnly | DontDelete | DontEnum); in AddMethods()
Dstream_wrap.cc56 using v8::PropertyAttribute;
155 static_cast<PropertyAttribute>(ReadOnly | DontDelete)); in GetConstructorTemplate()
Dasync_wrap.cc47 using v8::PropertyAttribute;
371 PropertyAttribute ReadOnlyDontDelete = in Initialize()
372 static_cast<PropertyAttribute>(ReadOnly | DontDelete); in Initialize()
Dnode.h817 v8::PropertyAttribute constant_attributes = \
818 static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete); \
836 v8::PropertyAttribute constant_attributes = \
837 static_cast<v8::PropertyAttribute>(v8::ReadOnly | \
Dudp_wrap.cc48 using v8::PropertyAttribute;
162 enum PropertyAttribute attributes = in Initialize()
163 static_cast<PropertyAttribute>(ReadOnly | DontDelete); in Initialize()
Dutil.h712 static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontEnum)) \
733 v8::PropertyAttribute constant_attributes = \
734 static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete); \
Dstream_base.h414 enum v8::PropertyAttribute attributes,
Djs_native_api_v8.cc368 inline v8::PropertyAttribute V8PropertyAttributesFromDescriptor( in V8PropertyAttributesFromDescriptor()
370 unsigned int attribute_flags = v8::PropertyAttribute::None; in V8PropertyAttributesFromDescriptor()
376 attribute_flags |= v8::PropertyAttribute::ReadOnly; in V8PropertyAttributesFromDescriptor()
380 attribute_flags |= v8::PropertyAttribute::DontEnum; in V8PropertyAttributesFromDescriptor()
383 attribute_flags |= v8::PropertyAttribute::DontDelete; in V8PropertyAttributesFromDescriptor()
386 return static_cast<v8::PropertyAttribute>(attribute_flags); in V8PropertyAttributesFromDescriptor()
1416 v8::PropertyAttribute attributes = in OH_JSVM_CreateEnv()
1969 v8::PropertyAttribute attributes = in OH_JSVM_DefineClass()
4421 v8::PropertyAttribute attributes = v8impl::V8PropertyAttributesFromDescriptor(p); in OH_JSVM_DefineClassWithPropertyHandler()
/third_party/node/deps/v8/src/debug/
Ddebug-property-iterator.cc107 v8::Maybe<v8::PropertyAttribute> DebugPropertyIterator::attributes() { in attributes()
111 if (result.IsNothing()) return Nothing<v8::PropertyAttribute>(); in attributes()
136 return Just(static_cast<v8::PropertyAttribute>(result.FromJust())); in attributes()
Ddebug-property-iterator.h39 v8::Maybe<v8::PropertyAttribute> attributes() override;
Ddebug-wasm-objects.cc210 PropertyAttribute::DontDelete | PropertyAttribute::ReadOnly)); in IndexedQuery()
Ddebug-interface.h677 virtual Maybe<PropertyAttribute> attributes() = 0;
/third_party/node/src/crypto/
Dcrypto_dh.cc30 using v8::PropertyAttribute;
67 const PropertyAttribute attributes = in Initialize()
68 static_cast<PropertyAttribute>(ReadOnly | DontDelete); in Initialize()
Dcrypto_context.cc41 using v8::PropertyAttribute;
325 static_cast<PropertyAttribute>(ReadOnly | DontDelete)); in GetConstructorTemplate()
Dcrypto_tls.cc57 using v8::PropertyAttribute;
2114 static_cast<PropertyAttribute>(ReadOnly | DontDelete)); in Initialize()
/third_party/node/deps/v8/src/api/
Dapi.cc1178 v8::PropertyAttribute attribute) { in Set()
1202 v8::PropertyAttribute attribute) { in SetPrivate()
1210 v8::PropertyAttribute attribute, in SetAccessorProperty()
1614 Data data, AccessControl settings, PropertyAttribute attribute, in TemplateSetAccessor()
1640 PropertyAttribute attribute, in SetNativeDataProperty()
1652 PropertyAttribute attribute, v8::Local<AccessorSignature> signature, in SetNativeDataProperty()
1664 PropertyAttribute attribute, in SetNativeDataProperty()
1676 PropertyAttribute attribute, v8::Local<AccessorSignature> signature, in SetNativeDataProperty()
1687 PropertyAttribute attribute, in SetLazyDataProperty()
1697 PropertyAttribute attribute) { in SetIntrinsicDataProperty()
[all …]
/third_party/node/deps/v8/src/inspector/
Dvalue-mirror.cc1433 v8::PropertyAttribute attributes; in getProperties()
1455 writable = !(attributes & v8::PropertyAttribute::ReadOnly); in getProperties()
1456 enumerable = !(attributes & v8::PropertyAttribute::DontEnum); in getProperties()
1457 configurable = !(attributes & v8::PropertyAttribute::DontDelete); in getProperties()
Dv8-console.cc806 static_cast<v8::PropertyAttribute>(v8::None), v8::DEFAULT); in installMemoryGetter()
/third_party/node/deps/v8/src/d8/
Dd8.cc2989 FunctionTemplate::New(isolate, Fuzzilli), PropertyAttribute::DontEnum); in CreateGlobalTemplate()
3005 PropertyAttribute::ReadOnly); in CreateOSTemplate()
3009 PropertyAttribute::ReadOnly); in CreateOSTemplate()

12