Home
last modified time | relevance | path

Searched refs:PropertyAttribute (Results 1 - 25 of 27) sorted by relevance

12

/third_party/node/deps/v8/include/
H A 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 attribut
[all...]
H A Dv8-object.h137 * PropertyAttribute.
139 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> GetRealNamedPropertyAttribute
[all...]
/third_party/node/deps/v8/include/v8-include/
H A Dv8-object.h135 * PropertyAttribute.
137 enum PropertyAttribute { enum
278 PropertyAttribute attributes = None);
310 V8_WARN_UNUSED_RESULT Maybe<PropertyAttribute> GetPropertyAttributes(
354 AccessControl settings = DEFAULT, PropertyAttribute attribute = None,
360 PropertyAttribute attributes = None,
371 Local<Value> data = Local<Value>(), PropertyAttribute attributes = None,
386 PropertyAttribute attributes = None,
581 V8_WARN_UNUSED_RESULT Maybe<PropertyAttribute>
598 V8_WARN_UNUSED_RESULT Maybe<PropertyAttribute> GetRealNamedPropertyAttribute
[all...]
H A Dv8-template.h54 PropertyAttribute attributes = None);
56 PropertyAttribute attributes = None);
58 PropertyAttribute attributes = None);
64 PropertyAttribute attribute = None, AccessControl settings = DEFAULT);
91 Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
98 Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
109 Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
118 PropertyAttribute attribute = None);
201 * value is an integer encoding a `v8::PropertyAttribute`. If the property does
813 PropertyAttribute attribut
[all...]
/third_party/node/src/
H A Duv.cc57 using v8::PropertyAttribute;
118 PropertyAttribute attributes = in Initialize()
119 static_cast<PropertyAttribute>(ReadOnly | DontDelete); in Initialize()
H A Dfs_event_wrap.cc42 using v8::PropertyAttribute;
118 static_cast<PropertyAttribute>(ReadOnly | DontDelete | DontEnum)); in Initialize()
H A Dnode_perf.cc31 using v8::PropertyAttribute;
348 PropertyAttribute attr = in Initialize()
349 static_cast<PropertyAttribute>(ReadOnly | DontDelete); in Initialize()
H A 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()
H A 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()
H A Dstream_wrap.cc56 using v8::PropertyAttribute;
155 static_cast<PropertyAttribute>(ReadOnly | DontDelete)); in GetConstructorTemplate()
H A Dasync_wrap.cc47 using v8::PropertyAttribute;
371 PropertyAttribute ReadOnlyDontDelete = in Initialize()
372 static_cast<PropertyAttribute>(ReadOnly | DontDelete); in Initialize()
H A Dudp_wrap.cc48 using v8::PropertyAttribute;
162 enum PropertyAttribute attributes = in Initialize()
163 static_cast<PropertyAttribute>(ReadOnly | DontDelete); in Initialize()
H A 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 | \
H A Dutil.h714 static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontEnum)) \
735 v8::PropertyAttribute constant_attributes = \
736 static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete); \
H A Dstream_base.h414 enum v8::PropertyAttribute attributes,
H A Djs_native_api_v8.cc401 // convert from n-api property attributes to v8::PropertyAttribute
402 inline v8::PropertyAttribute V8PropertyAttributesFromDescriptor( in V8PropertyAttributesFromDescriptor()
404 unsigned int attribute_flags = v8::PropertyAttribute::None; in V8PropertyAttributesFromDescriptor()
410 attribute_flags |= v8::PropertyAttribute::ReadOnly; in V8PropertyAttributesFromDescriptor()
414 attribute_flags |= v8::PropertyAttribute::DontEnum; in V8PropertyAttributesFromDescriptor()
417 attribute_flags |= v8::PropertyAttribute::DontDelete; in V8PropertyAttributesFromDescriptor()
420 return static_cast<v8::PropertyAttribute>(attribute_flags); in V8PropertyAttributesFromDescriptor()
1544 v8::PropertyAttribute attributes = in OH_JSVM_CreateEnv()
2263 v8::PropertyAttribute attributes = in OH_JSVM_DefineClass()
2268 // and preferred PropertyAttribute fo in OH_JSVM_DefineClass()
[all...]
/third_party/node/deps/v8/src/debug/
H A 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()
H A Ddebug-property-iterator.h39 v8::Maybe<v8::PropertyAttribute> attributes() override;
H A Ddebug-interface.h677 virtual Maybe<PropertyAttribute> attributes() = 0;
H A Ddebug-wasm-objects.cc210 PropertyAttribute::DontDelete | PropertyAttribute::ReadOnly)); in IndexedQuery()
/third_party/node/src/crypto/
H A Dcrypto_dh.cc30 using v8::PropertyAttribute;
67 const PropertyAttribute attributes = in Initialize()
68 static_cast<PropertyAttribute>(ReadOnly | DontDelete); in Initialize()
H A Dcrypto_context.cc41 using v8::PropertyAttribute;
325 static_cast<PropertyAttribute>(ReadOnly | DontDelete)); in GetConstructorTemplate()
H A Dcrypto_tls.cc57 using v8::PropertyAttribute;
2114 static_cast<PropertyAttribute>(ReadOnly | DontDelete)); in Initialize()
/third_party/node/deps/v8/src/api/
H A 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 attribut in SetIntrinsicDataProperty()
[all...]
/third_party/node/deps/v8/src/inspector/
H A 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()

Completed in 46 milliseconds

12