Lines Matching defs:value
13 #include "v8-value.h" // NOLINT(build/include_directory)
67 * `enumerable`, `configurable`, and `writable`, they are absent. If `value`,
79 * d.value(); // error, value not set
84 * // var desc = {value: undefined}
97 explicit PropertyDescriptor(Local<Value> value);
100 PropertyDescriptor(Local<Value> value, bool writable);
107 Local<Value> value() const;
161 Local<Value> value,
164 void (*)(Local<Name> property, Local<Value> value,
247 Local<Value> key, Local<Value> value);
250 Local<Value> value);
254 // Defines a configurable, writable, enumerable property with the given value
261 Local<Value> value);
264 Local<Value> value);
273 Local<Context> context, Local<Name> key, Local<Value> value,
370 * data value) to supply its value the first time it is read. After the
390 Local<Value> value);
479 /** Gets the value from an internal field. */
482 /** Sets the value in an internal field. */
483 void SetInternalField(int index, Local<Value> value);
494 void SetInternalFieldForNodeCore(int index, Local<Module> value);
498 void SetInternalFieldForNodeCore(int index, Local<UnboundScript> value);
524 void SetAlignedPointerInInternalField(int index, void* value);
599 * The return value will never be 0. Also, it is not guaranteed to be
699 * value, and if it's null, the newly created object won't have
735 // know where to find the internal fields and can return the value directly.
739 A value = I::ReadRawField<A>(obj, offset);
741 // We read the full pointer value and then decompress it in order to avoid
743 value = I::DecompressTaggedAnyField(obj, static_cast<uint32_t>(value));
747 A* result = HandleScope::CreateHandle(isolate, value);
760 // know where to find the internal fields and can return the value directly.
768 A value = I::ReadExternalPointerField(
770 return reinterpret_cast<void*>(value);
783 Object* Object::Cast(v8::Value* value) {
785 CheckCast(value);
787 return static_cast<Object*>(value);