Lines Matching refs:slotBase

205 JSValue regExpConstructorDollar1(ExecState* exec, JSValue slotBase, const Identifier&)
207 return asRegExpConstructor(slotBase)->getBackref(exec, 1);
210 JSValue regExpConstructorDollar2(ExecState* exec, JSValue slotBase, const Identifier&)
212 return asRegExpConstructor(slotBase)->getBackref(exec, 2);
215 JSValue regExpConstructorDollar3(ExecState* exec, JSValue slotBase, const Identifier&)
217 return asRegExpConstructor(slotBase)->getBackref(exec, 3);
220 JSValue regExpConstructorDollar4(ExecState* exec, JSValue slotBase, const Identifier&)
222 return asRegExpConstructor(slotBase)->getBackref(exec, 4);
225 JSValue regExpConstructorDollar5(ExecState* exec, JSValue slotBase, const Identifier&)
227 return asRegExpConstructor(slotBase)->getBackref(exec, 5);
230 JSValue regExpConstructorDollar6(ExecState* exec, JSValue slotBase, const Identifier&)
232 return asRegExpConstructor(slotBase)->getBackref(exec, 6);
235 JSValue regExpConstructorDollar7(ExecState* exec, JSValue slotBase, const Identifier&)
237 return asRegExpConstructor(slotBase)->getBackref(exec, 7);
240 JSValue regExpConstructorDollar8(ExecState* exec, JSValue slotBase, const Identifier&)
242 return asRegExpConstructor(slotBase)->getBackref(exec, 8);
245 JSValue regExpConstructorDollar9(ExecState* exec, JSValue slotBase, const Identifier&)
247 return asRegExpConstructor(slotBase)->getBackref(exec, 9);
250 JSValue regExpConstructorInput(ExecState* exec, JSValue slotBase, const Identifier&)
252 return jsString(exec, asRegExpConstructor(slotBase)->input());
255 JSValue regExpConstructorMultiline(ExecState*, JSValue slotBase, const Identifier&)
257 return jsBoolean(asRegExpConstructor(slotBase)->multiline());
260 JSValue regExpConstructorLastMatch(ExecState* exec, JSValue slotBase, const Identifier&)
262 return asRegExpConstructor(slotBase)->getBackref(exec, 0);
265 JSValue regExpConstructorLastParen(ExecState* exec, JSValue slotBase, const Identifier&)
267 return asRegExpConstructor(slotBase)->getLastParen(exec);
270 JSValue regExpConstructorLeftContext(ExecState* exec, JSValue slotBase, const Identifier&)
272 return asRegExpConstructor(slotBase)->getLeftContext(exec);
275 JSValue regExpConstructorRightContext(ExecState* exec, JSValue slotBase, const Identifier&)
277 return asRegExpConstructor(slotBase)->getRightContext(exec);