Home | History | Annotate | Download | only in runtime

Lines Matching refs:m_args

186             : m_args(0)
192 : m_args(reinterpret_cast<JSValue*>(&exec[exec->hostThisRegister() + 1]))
198 : m_args(args)
203 ASSERT(!m_args[i].isZombie());
208 : m_args(reinterpret_cast<JSValue*>(args))
215 : m_args(reinterpret_cast<JSValue*>(const_cast<Register*>(args.begin())))
223 return m_args[idx];
231 iterator begin() { return m_args; }
232 iterator end() { return m_args + m_argCount; }
234 const_iterator begin() const { return m_args; }
235 const_iterator end() const { return m_args + m_argCount; }
239 JSValue* m_args;