Lines Matching refs:RegExp
18 * An instance of the built-in RegExp constructor (ECMA-262, 15.10).
20 class V8_EXPORT RegExp : public Object {
50 * RegExp::New(v8::String::New("foo"),
51 * static_cast<RegExp::Flags>(kGlobal | kMultiline))
54 static V8_WARN_UNUSED_RESULT MaybeLocal<RegExp> New(Local<Context> context,
63 static V8_WARN_UNUSED_RESULT MaybeLocal<RegExp> NewWithBacktrackLimit(
68 * Executes the current RegExp instance on the given subject string.
69 * Equivalent to RegExp.prototype.exec as described in
76 * Note: modifies global context state, accessible e.g. through RegExp.input.
92 V8_INLINE static RegExp* Cast(Value* value) {
96 return static_cast<RegExp*>(value);