v8
3.28.71 (node 0.12.18)
V8 is Google's open source JavaScript engine
|
#include <v8.h>
Public Member Functions | |
V8_INLINE bool | IsUndefined () const |
V8_INLINE bool | IsNull () const |
bool | IsTrue () const |
bool | IsFalse () const |
V8_INLINE bool | IsString () const |
bool | IsSymbol () const |
bool | IsFunction () const |
bool | IsArray () const |
bool | IsObject () const |
bool | IsBoolean () const |
bool | IsNumber () const |
bool | IsExternal () const |
bool | IsInt32 () const |
bool | IsUint32 () const |
bool | IsDate () const |
bool | IsBooleanObject () const |
bool | IsNumberObject () const |
bool | IsStringObject () const |
bool | IsSymbolObject () const |
bool | IsNativeError () const |
bool | IsRegExp () const |
bool | IsPromise () const |
bool | IsArrayBuffer () const |
bool | IsArrayBufferView () const |
bool | IsTypedArray () const |
bool | IsUint8Array () const |
bool | IsUint8ClampedArray () const |
bool | IsInt8Array () const |
bool | IsUint16Array () const |
bool | IsInt16Array () const |
bool | IsUint32Array () const |
bool | IsInt32Array () const |
bool | IsFloat32Array () const |
bool | IsFloat64Array () const |
bool | IsDataView () const |
Local< Boolean > | ToBoolean () const |
Local< Number > | ToNumber () const |
Local< String > | ToString () const |
Local< String > | ToDetailString () const |
Local< Object > | ToObject () const |
Local< Integer > | ToInteger () const |
Local< Uint32 > | ToUint32 () const |
Local< Int32 > | ToInt32 () const |
Local< Uint32 > | ToArrayIndex () const |
bool | BooleanValue () const |
double | NumberValue () const |
int64_t | IntegerValue () const |
uint32_t | Uint32Value () const |
int32_t | Int32Value () const |
bool | Equals (Handle< Value > that) const |
bool | StrictEquals (Handle< Value > that) const |
bool | SameValue (Handle< Value > that) const |
template<class T > | |
Value * | Cast (T *value) |
Static Public Member Functions | |
template<class T > | |
static V8_INLINE Value * | Cast (T *value) |
bool BooleanValue | ( | ) | const |
int32_t Int32Value | ( | ) | const |
int64_t IntegerValue | ( | ) | const |
bool IsArray | ( | ) | const |
Returns true if this value is an array.
bool IsArrayBuffer | ( | ) | const |
Returns true if this value is an ArrayBuffer. This is an experimental feature.
bool IsArrayBufferView | ( | ) | const |
Returns true if this value is an ArrayBufferView. This is an experimental feature.
bool IsBoolean | ( | ) | const |
Returns true if this value is boolean.
bool IsBooleanObject | ( | ) | const |
Returns true if this value is a Boolean object.
bool IsDataView | ( | ) | const |
Returns true if this value is a DataView. This is an experimental feature.
bool IsDate | ( | ) | const |
Returns true if this value is a Date.
bool IsExternal | ( | ) | const |
Returns true if this value is external.
bool IsFalse | ( | ) | const |
Returns true if this value is false.
bool IsFloat32Array | ( | ) | const |
Returns true if this value is a Float32Array. This is an experimental feature.
bool IsFloat64Array | ( | ) | const |
Returns true if this value is a Float64Array. This is an experimental feature.
bool IsFunction | ( | ) | const |
Returns true if this value is a function.
bool IsInt16Array | ( | ) | const |
Returns true if this value is an Int16Array. This is an experimental feature.
bool IsInt32 | ( | ) | const |
Returns true if this value is a 32-bit signed integer.
bool IsInt32Array | ( | ) | const |
Returns true if this value is an Int32Array. This is an experimental feature.
bool IsInt8Array | ( | ) | const |
Returns true if this value is an Int8Array. This is an experimental feature.
bool IsNativeError | ( | ) | const |
Returns true if this value is a NativeError.
bool IsNull | ( | ) | const |
bool IsNumber | ( | ) | const |
Returns true if this value is a number.
bool IsNumberObject | ( | ) | const |
Returns true if this value is a Number object.
bool IsObject | ( | ) | const |
Returns true if this value is an object.
bool IsPromise | ( | ) | const |
Returns true if this value is a Promise. This is an experimental feature.
bool IsRegExp | ( | ) | const |
Returns true if this value is a RegExp.
bool IsString | ( | ) | const |
bool IsStringObject | ( | ) | const |
Returns true if this value is a String object.
bool IsSymbol | ( | ) | const |
Returns true if this value is a symbol. This is an experimental feature.
bool IsSymbolObject | ( | ) | const |
Returns true if this value is a Symbol object. This is an experimental feature.
bool IsTrue | ( | ) | const |
Returns true if this value is true.
bool IsTypedArray | ( | ) | const |
Returns true if this value is one of TypedArrays. This is an experimental feature.
bool IsUint16Array | ( | ) | const |
Returns true if this value is an Uint16Array. This is an experimental feature.
bool IsUint32 | ( | ) | const |
Returns true if this value is a 32-bit unsigned integer.
bool IsUint32Array | ( | ) | const |
Returns true if this value is an Uint32Array. This is an experimental feature.
bool IsUint8Array | ( | ) | const |
Returns true if this value is an Uint8Array. This is an experimental feature.
bool IsUint8ClampedArray | ( | ) | const |
Returns true if this value is an Uint8ClampedArray. This is an experimental feature.
bool IsUndefined | ( | ) | const |
double NumberValue | ( | ) | const |
Attempts to convert a string to an array index. Returns an empty handle if the conversion fails.
uint32_t Uint32Value | ( | ) | const |