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