v8  3.14.5 (node 0.10.48)
V8 is Google's open source JavaScript engine
RegExp Class Reference

#include <v8.h>

Inheritance diagram for RegExp:
Collaboration diagram for RegExp:

Public Types

enum  Flags { kNone = 0 , kGlobal = 1 , kIgnoreCase = 2 , kMultiline = 4 }
 

Public Member Functions

V8EXPORT Local< StringGetSource () const
 
V8EXPORT Flags GetFlags () const
 
- Public Member Functions inherited from Object
V8EXPORT bool Set (Handle< Value > key, Handle< Value > value, PropertyAttribute attribs=None)
 
V8EXPORT bool Set (uint32_t index, Handle< Value > value)
 
V8EXPORT bool ForceSet (Handle< Value > key, Handle< Value > value, PropertyAttribute attribs=None)
 
V8EXPORT Local< ValueGet (Handle< Value > key)
 
V8EXPORT Local< ValueGet (uint32_t index)
 
V8EXPORT PropertyAttribute GetPropertyAttributes (Handle< Value > key)
 
V8EXPORT bool Has (Handle< String > key)
 
V8EXPORT bool Delete (Handle< String > key)
 
V8EXPORT bool ForceDelete (Handle< Value > key)
 
V8EXPORT bool Has (uint32_t index)
 
V8EXPORT bool Delete (uint32_t index)
 
V8EXPORT bool SetAccessor (Handle< String > name, AccessorGetter getter, AccessorSetter setter=0, Handle< Value > data=Handle< Value >(), AccessControl settings=DEFAULT, PropertyAttribute attribute=None)
 
V8EXPORT Local< ArrayGetPropertyNames ()
 
V8EXPORT Local< ArrayGetOwnPropertyNames ()
 
V8EXPORT Local< ValueGetPrototype ()
 
V8EXPORT bool SetPrototype (Handle< Value > prototype)
 
V8EXPORT Local< ObjectFindInstanceInPrototypeChain (Handle< FunctionTemplate > tmpl)
 
V8EXPORT Local< StringObjectProtoToString ()
 
V8EXPORT Local< ValueGetConstructor ()
 
V8EXPORT Local< StringGetConstructorName ()
 
V8EXPORT int InternalFieldCount ()
 
Local< ValueGetInternalField (int index)
 
V8EXPORT void SetInternalField (int index, Handle< Value > value)
 
void * GetPointerFromInternalField (int index)
 
V8EXPORT void SetPointerInInternalField (int index, void *value)
 
V8EXPORT bool HasOwnProperty (Handle< String > key)
 
V8EXPORT bool HasRealNamedProperty (Handle< String > key)
 
V8EXPORT bool HasRealIndexedProperty (uint32_t index)
 
V8EXPORT bool HasRealNamedCallbackProperty (Handle< String > key)
 
V8EXPORT Local< ValueGetRealNamedPropertyInPrototypeChain (Handle< String > key)
 
V8EXPORT Local< ValueGetRealNamedProperty (Handle< String > key)
 
V8EXPORT bool HasNamedLookupInterceptor ()
 
V8EXPORT bool HasIndexedLookupInterceptor ()
 
V8EXPORT void TurnOnAccessCheck ()
 
V8EXPORT int GetIdentityHash ()
 
V8EXPORT bool SetHiddenValue (Handle< String > key, Handle< Value > value)
 
V8EXPORT Local< ValueGetHiddenValue (Handle< String > key)
 
V8EXPORT bool DeleteHiddenValue (Handle< String > key)
 
V8EXPORT bool IsDirty ()
 
V8EXPORT Local< ObjectClone ()
 
V8EXPORT Local< ContextCreationContext ()
 
V8EXPORT void SetIndexedPropertiesToPixelData (uint8_t *data, int length)
 
V8EXPORT bool HasIndexedPropertiesInPixelData ()
 
V8EXPORT uint8_t * GetIndexedPropertiesPixelData ()
 
V8EXPORT int GetIndexedPropertiesPixelDataLength ()
 
V8EXPORT void SetIndexedPropertiesToExternalArrayData (void *data, ExternalArrayType array_type, int number_of_elements)
 
V8EXPORT bool HasIndexedPropertiesInExternalArrayData ()
 
V8EXPORT void * GetIndexedPropertiesExternalArrayData ()
 
V8EXPORT ExternalArrayType GetIndexedPropertiesExternalArrayDataType ()
 
V8EXPORT int GetIndexedPropertiesExternalArrayDataLength ()
 
V8EXPORT bool IsCallable ()
 
V8EXPORT Local< ValueCallAsFunction (Handle< Object > recv, int argc, Handle< Value > argv[])
 
V8EXPORT Local< ValueCallAsConstructor (int argc, Handle< Value > argv[])
 
- Public Member Functions inherited from Value
bool IsUndefined () const
 
bool IsNull () const
 
V8EXPORT bool IsTrue () const
 
V8EXPORT bool IsFalse () const
 
bool IsString () const
 
V8EXPORT bool IsFunction () const
 
V8EXPORT bool IsArray () const
 
V8EXPORT bool IsObject () const
 
V8EXPORT bool IsBoolean () const
 
V8EXPORT bool IsNumber () const
 
V8EXPORT bool IsExternal () const
 
V8EXPORT bool IsInt32 () const
 
V8EXPORT bool IsUint32 () const
 
V8EXPORT bool IsDate () const
 
V8EXPORT bool IsBooleanObject () const
 
V8EXPORT bool IsNumberObject () const
 
V8EXPORT bool IsStringObject () const
 
V8EXPORT bool IsNativeError () const
 
V8EXPORT bool IsRegExp () const
 
V8EXPORT Local< BooleanToBoolean () const
 
V8EXPORT Local< NumberToNumber () const
 
V8EXPORT Local< StringToString () const
 
V8EXPORT Local< StringToDetailString () const
 
V8EXPORT Local< ObjectToObject () const
 
V8EXPORT Local< IntegerToInteger () const
 
V8EXPORT Local< Uint32ToUint32 () const
 
V8EXPORT Local< Int32ToInt32 () const
 
V8EXPORT Local< Uint32ToArrayIndex () const
 
V8EXPORT bool BooleanValue () const
 
V8EXPORT double NumberValue () const
 
V8EXPORT int64_t IntegerValue () const
 
V8EXPORT uint32_t Uint32Value () const
 
V8EXPORT int32_t Int32Value () const
 
V8EXPORT bool Equals (Handle< Value > that) const
 
V8EXPORT bool StrictEquals (Handle< Value > that) const
 

Static Public Member Functions

static V8EXPORT Local< RegExpNew (Handle< String > pattern, Flags flags)
 
static RegExpCast (v8::Value *obj)
 
- Static Public Member Functions inherited from Object
static V8EXPORT Local< ObjectNew ()
 
static ObjectCast (Value *obj)
 

Detailed Description

An instance of the built-in RegExp constructor (ECMA-262, 15.10).

Definition at line 1903 of file v8.h.

Member Enumeration Documentation

◆ Flags

enum Flags

Regular expression flag bits. They can be or'ed to enable a set of flags.

Enumerator
kNone 
kGlobal 
kIgnoreCase 
kMultiline 

Definition at line 1909 of file v8.h.

Member Function Documentation

◆ Cast()

RegExp * Cast ( v8::Value obj)
inlinestatic

Definition at line 4573 of file v8.h.

◆ GetFlags()

V8EXPORT Flags GetFlags ( ) const

Returns the flags bit field.

◆ GetSource()

V8EXPORT Local<String> GetSource ( ) const

Returns the value of the source property: a string representing the regular expression.

◆ New()

static V8EXPORT Local<RegExp> New ( Handle< String pattern,
Flags  flags 
)
static

Creates a regular expression from the given pattern string and the flags bit field. May throw a JavaScript exception as described in ECMA-262, 15.10.4.1.

For example, RegExp::New(v8::String::New("foo"), static_cast<RegExp::Flags>(kGlobal | kMultiline)) is equivalent to evaluating "/foo/gm".


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