Home | History | Annotate | Download | only in js

Lines Matching full:jsvalue

39 JSValue JSSVGPathSegList::clear(ExecState* exec, const ArgList&)
52 JSValue JSSVGPathSegList::initialize(ExecState* exec, const ArgList& args)
62 JSValue result = toJS(exec, globalObject(), obj, context);
69 JSValue JSSVGPathSegList::getItem(ExecState* exec, const ArgList& args)
84 JSValue result = toJS(exec, globalObject(), obj, context);
89 JSValue JSSVGPathSegList::insertItemBefore(ExecState* exec, const ArgList& args)
104 JSValue result = toJS(exec, globalObject(), WTF::getPtr(list->insertItemBefore(newItem, index, ec)), context);
111 JSValue JSSVGPathSegList::replaceItem(ExecState* exec, const ArgList& args)
126 JSValue result = toJS(exec, globalObject(), WTF::getPtr(list->replaceItem(newItem, index, ec)), context);
133 JSValue JSSVGPathSegList::removeItem(ExecState* exec, const ArgList& args)
149 JSValue result = toJS(exec, globalObject(), obj.get(), context);
156 JSValue JSSVGPathSegList::appendItem(ExecState* exec, const ArgList& args)
164 JSValue result = toJS(exec, globalObject(), WTF::getPtr(list->appendItem(newItem, ec)), context);