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