v8  3.25.30(node0.11.13)
V8 is Google's open source JavaScript engine
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Value Class Reference

#include <v8.h>

Inheritance diagram for Value:
Collaboration diagram for Value:

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< BooleanToBoolean () const
 
Local< NumberToNumber () const
 
Local< StringToString () const
 
Local< StringToDetailString () const
 
Local< ObjectToObject () const
 
Local< IntegerToInteger () const
 
Local< Uint32ToUint32 () const
 
Local< Int32ToInt32 () const
 
Local< Uint32ToArrayIndex () 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 >
ValueCast (T *value)
 

Static Public Member Functions

template<class T >
static V8_INLINE ValueCast (T *value)
 

Detailed Description

The superclass of all JavaScript values and objects.

Definition at line 1407 of file v8.h.

Member Function Documentation

bool BooleanValue ( ) const
static V8_INLINE Value* Cast ( T value)
static
Value* Cast ( T value)

Definition at line 6282 of file v8.h.

int64_t IntegerValue ( ) const
bool IsArray ( ) const

Returns true if this value is an array.

Definition at line 2374 of file api.cc.

References Utils::OpenHandle().

Referenced by TEST(), and THREADED_TEST().

bool IsArrayBuffer ( ) const

Returns true if this value is an ArrayBuffer. This is an experimental feature.

Definition at line 2379 of file api.cc.

References Utils::OpenHandle().

bool IsArrayBufferView ( ) const

Returns true if this value is an ArrayBufferView. This is an experimental feature.

Definition at line 2384 of file api.cc.

References Utils::OpenHandle().

bool IsBoolean ( ) const

Returns true if this value is boolean.

Definition at line 2421 of file api.cc.

References Utils::OpenHandle().

Referenced by Object::GetElementWithReceiver(), THREADED_PROFILED_TEST(), and ToBooleanStub::Types::UpdateStatus().

bool IsBooleanObject ( ) const

Returns true if this value is a Boolean object.

Definition at line 2523 of file api.cc.

References Isolate::heap(), and Utils::OpenHandle().

Referenced by THREADED_TEST().

bool IsDataView ( ) const

Returns true if this value is a DataView. This is an experimental feature.

Definition at line 2406 of file api.cc.

References Utils::OpenHandle().

bool IsDate ( ) const

Returns true if this value is a Date.

Definition at line 2455 of file api.cc.

References Isolate::heap(), and Utils::OpenHandle().

bool IsExternal ( ) const

Returns true if this value is external.

Definition at line 2426 of file api.cc.

References Utils::OpenHandle().

bool IsFalse ( ) const

Returns true if this value is false.

Definition at line 2352 of file api.cc.

References Utils::OpenHandle().

Referenced by JSProxy::GetPropertyAttributeWithHandler(), and JSProxy::SetPropertyViaPrototypesWithHandler().

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.

Definition at line 2357 of file api.cc.

References Utils::OpenHandle().

Referenced by JsHttpRequestProcessor::Initialize(), and RunCppCycle().

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.

Definition at line 2431 of file api.cc.

References Utils::OpenHandle().

Referenced by JSObject::GetPropertyAttributeWithInterceptor(), THREADED_PROFILED_TEST(), and THREADED_TEST().

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.

Definition at line 2505 of file api.cc.

References JSObject::cast(), and Utils::OpenHandle().

bool IsNumberObject ( ) const

Returns true if this value is a Number object.

Definition at line 2478 of file api.cc.

References Isolate::heap(), and Utils::OpenHandle().

Referenced by THREADED_TEST().

bool IsObject ( ) const

Returns true if this value is an object.

Definition at line 2411 of file api.cc.

References Utils::OpenHandle().

Referenced by TEST(), THREADED_PROFILED_TEST(), THREADED_TEST(), and Visitor42::VisitPersistentHandle().

bool IsPromise ( ) const
bool IsRegExp ( ) const

Returns true if this value is a RegExp.

Definition at line 2530 of file api.cc.

References Utils::OpenHandle().

bool IsStringObject ( ) const

Returns true if this value is a String object.

Definition at line 2462 of file api.cc.

References Isolate::heap(), and Utils::OpenHandle().

Referenced by THREADED_TEST().

bool IsSymbol ( ) const

Returns true if this value is a symbol. This is an experimental feature.

Definition at line 2369 of file api.cc.

References Utils::OpenHandle().

Referenced by Object::GetElementWithReceiver(), JSProxy::GetPropertyWithHandler(), CompareIC::NewInputState(), Runtime::SetObjectProperty(), THREADED_TEST(), and ToBooleanStub::Types::UpdateStatus().

bool IsSymbolObject ( ) const

Returns true if this value is a Symbol object. This is an experimental feature.

Definition at line 2469 of file api.cc.

References Isolate::heap(), and Utils::OpenHandle().

Referenced by THREADED_TEST().

bool IsTrue ( ) const

Returns true if this value is true.

Definition at line 2347 of file api.cc.

References Utils::OpenHandle().

Referenced by Object::Delete(), JSProxy::SetPropertyViaPrototypesWithHandler(), TEST(), and THREADED_TEST().

bool IsTypedArray ( ) const

Returns true if this value is one of TypedArrays. This is an experimental feature.

Definition at line 2389 of file api.cc.

References Utils::OpenHandle().

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.

Definition at line 2441 of file api.cc.

References Smi::cast(), v8::internal::FastD2UI(), v8::internal::FastUI2D(), v8::internal::kMaxUInt32, Utils::OpenHandle(), and Smi::value().

Referenced by THREADED_PROFILED_TEST().

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.

double NumberValue ( ) const
bool StrictEquals ( Handle< Value that) const
Local< Boolean > ToBoolean ( ) const

Definition at line 2587 of file api.cc.

References ENTER_V8, Isolate::factory(), LOG_API, obj, Utils::OpenHandle(), and Factory::ToBoolean().

Referenced by THREADED_PROFILED_TEST().

Local< String > ToDetailString ( ) const
Local< Int32 > ToInt32 ( ) const
Local< Integer > ToInteger ( ) const
Local< Number > ToNumber ( ) const
Local< Uint32 > ToUint32 ( ) const
uint32_t Uint32Value ( ) const

The documentation for this class was generated from the following files: