Home | History | Annotate | Download | only in js

Lines Matching full:jsvalue

63 JSValue JSXMLHttpRequest::open(ExecState* exec, const ArgList& args)
90 JSValue JSXMLHttpRequest::setRequestHeader(ExecState* exec, const ArgList& args)
101 JSValue JSXMLHttpRequest::send(ExecState* exec, const ArgList& args)
107 JSValue val = args.at(0);
121 JSValue function;
130 JSValue JSXMLHttpRequest::getResponseHeader(ExecState* exec, const ArgList& args)
136 JSValue header = jsStringOrNull(exec, impl()->getResponseHeader(args.at(0).toString(exec), ec));
141 JSValue JSXMLHttpRequest::overrideMimeType(ExecState* exec, const ArgList& args)
150 JSValue JSXMLHttpRequest::addEventListener(ExecState* exec, const ArgList& args)
152 JSValue listener = args.at(1);
160 JSValue JSXMLHttpRequest::removeEventListener(ExecState* exec, const ArgList& args)
162 JSValue listener = args.at(1);
170 JSValue JSXMLHttpRequest::responseText(ExecState* exec) const