v8
4.5.103 (node 4.8.7)
V8 is Google's open source JavaScript engine
|
#include <v8.h>
Public Member Functions | |
virtual | ~ExternalOneByteStringResource () |
virtual const char * | data () const =0 |
virtual size_t | length () const =0 |
Public Member Functions inherited from String::ExternalStringResourceBase | |
virtual | ~ExternalStringResourceBase () |
Protected Member Functions | |
ExternalOneByteStringResource () | |
Protected Member Functions inherited from String::ExternalStringResourceBase | |
ExternalStringResourceBase () | |
virtual void | Dispose () |
An ExternalOneByteStringResource is a wrapper around an one-byte string buffer that resides outside V8's heap. Implement an ExternalOneByteStringResource to manage the life cycle of the underlying buffer. Note that the string data must be immutable and that the data must be Latin-1 and not UTF-8, which would require special treatment internally in the engine and do not allow efficient indexing. Use String::New or convert to 16 bit data for non-Latin1.
|
inlinevirtual |
|
inlineprotected |
|
pure virtual |
The string data from the underlying buffer.
Implemented in ExternalOneByteStringResourceImpl.
|
pure virtual |
The number of Latin-1 characters in the string.
Implemented in ExternalOneByteStringResourceImpl.