v8  3.14.5(node0.10.28)
V8 is Google's open source JavaScript engine
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
String::ExternalStringResource Class Referenceabstract

#include <v8.h>

Inheritance diagram for String::ExternalStringResource:
Collaboration diagram for String::ExternalStringResource:

Public Member Functions

virtual ~ExternalStringResource ()
 
virtual const uint16_t * data () const =0
 
virtual size_t length () const =0
 
- Public Member Functions inherited from String::ExternalStringResourceBase
virtual ~ExternalStringResourceBase ()
 

Protected Member Functions

 ExternalStringResource ()
 
- Protected Member Functions inherited from String::ExternalStringResourceBase
 ExternalStringResourceBase ()
 
virtual void Dispose ()
 

Detailed Description

An ExternalStringResource is a wrapper around a two-byte string buffer that resides outside V8's heap. Implement an ExternalStringResource to manage the life cycle of the underlying buffer. Note that the string data must be immutable.

Definition at line 1143 of file v8.h.

Constructor & Destructor Documentation

virtual ~ExternalStringResource ( )
inlinevirtual

Override the destructor to manage the life cycle of the underlying buffer.

Definition at line 1150 of file v8.h.

ExternalStringResource ( )
inlineprotected

Definition at line 1163 of file v8.h.

Member Function Documentation

virtual const uint16_t* data ( ) const
pure virtual

The string data from the underlying buffer.

Implemented in UC16VectorResource, TestExternalResource, and Resource.

Referenced by Heap::AllocateExternalStringFromTwoByte(), String::MakeExternal(), and String::NewExternal().

virtual size_t length ( ) const
pure virtual

The length of the string. That is, the number of two-byte characters.

Implemented in UC16VectorResource, TestExternalResource, and Resource.

Referenced by Heap::AllocateExternalStringFromTwoByte(), and String::MakeExternal().


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