Lines Matching defs:value

11 #include "v8-value.h"         // NOLINT(build/include_directory)
32 * A primitive boolean value (ECMA-262, 4.3.14). Either the true
33 * or false value.
45 V8_INLINE static Local<Boolean> New(Isolate* isolate, bool value);
85 * The return value will never be 0. Also, it is not guaranteed to be
122 * A JavaScript string value (ECMA-262, 4.3.17).
231 * If a string is cacheable, the value returned by
253 * For a non-cacheable string, the value returned by
293 * then data() must return the same value for all invocations.
348 * then data() must return the same value for all invocations.
413 * length of the input array minus 1 (for the final '\0') and not the value
424 /** Allocates a new string from UTF-8 data. Only returns an empty value when
430 /** Allocates a new string from Latin-1 data. Only returns an empty value
436 /** Allocates a new string from UTF-16 data. Only returns an empty value when
648 * A JavaScript number value (ECMA-262, 4.3.20)
653 static Local<Number> New(Isolate* isolate, double value);
667 * A JavaScript value representing a signed integer.
671 static Local<Integer> New(Isolate* isolate, int32_t value);
672 static Local<Integer> NewFromUnsigned(Isolate* isolate, uint32_t value);
687 * A JavaScript value representing a 32-bit signed integer.
705 * A JavaScript value representing a 32-bit unsigned integer.
723 * A JavaScript BigInt value (https://tc39.github.io/proposal-bigint)
727 static Local<BigInt> New(Isolate* isolate, int64_t value);
728 static Local<BigInt> NewFromUnsigned(Isolate* isolate, uint64_t value);
740 * Returns the value of this BigInt as an unsigned 64-bit integer.
741 * If `lossless` is provided, it will reflect whether the return value was
748 * Returns the value of this BigInt as a signed 64-bit integer.
766 * be needed to store this BigInt (i.e. the return value of `WordCount()`).
798 A value = I::ReadExternalPointerField<internal::kExternalStringResourceTag>(
800 result = reinterpret_cast<String::ExternalStringResource*>(value);
821 A value = I::ReadExternalPointerField<internal::kExternalStringResourceTag>(
823 resource = reinterpret_cast<ExternalStringResourceBase*>(value);
867 Local<Boolean> Boolean::New(Isolate* isolate, bool value) {
868 return value ? True(isolate) : False(isolate);