Home | History | Annotate | Download | only in include

Lines Matching defs:RegExp

1559    * Returns true if this value is a RegExp.
3270 * An instance of the built-in RegExp constructor (ECMA-262, 15.10).
3272 class V8_EXPORT RegExp : public Object {
3291 * RegExp::New(v8::String::New("foo"),
3292 * static_cast<RegExp::Flags>(kGlobal | kMultiline))
3295 static Local<RegExp> New(Handle<String> pattern, Flags flags);
3308 V8_INLINE static RegExp* Cast(v8::Value* obj);
6622 RegExp* RegExp::Cast(v8::Value* value) {
6626 return static_cast<RegExp*>(value);