HomeSort by relevance Sort by last modified time
    Searched refs:jsFunction (Results 1 - 5 of 5) sorted by null

  /external/webkit/WebCore/bindings/js/
JSEventListener.cpp 67 JSObject* jsFunction = this->jsFunction(scriptExecutionContext);
68 if (!jsFunction)
91 JSValue handleEventFunction = jsFunction->get(exec, Identifier(exec, "handleEvent"));
97 callType = jsFunction->getCallData(callData);
114 ? JSC::call(exec, handleEventFunction, callType, callData, jsFunction, args)
115 : JSC::call(exec, jsFunction, callType, callData, toJS(exec, globalObject, event->currentTarget()), args);
142 JSObject* jsFunction = this->jsFunction(context);
143 if (!jsFunction)
    [all...]
ScriptEventListener.cpp 118 JSC::JSObject* jsFunction = jsListener->jsFunction(context);
119 if (!jsFunction)
121 return jsFunction->toString(scriptState);
JSLazyEventListener.cpp 26 #include <runtime/JSFunction.h>
106 JSObject* jsFunction = constructFunction(exec, args, Identifier(exec, m_functionName), m_sourceURL, m_lineNumber); // FIXME: is globalExec ok?
112 JSFunction* listenerAsFunction = static_cast<JSFunction*>(jsFunction);
133 return jsFunction;
JSEventListener.h 52 JSC::JSObject* jsFunction(ScriptExecutionContext*) const;
77 inline JSC::JSObject* JSEventListener::jsFunction(ScriptExecutionContext* scriptExecutionContext) const
  /external/webkit/JavaScriptCore/runtime/
JSGlobalData.cpp 43 #include "JSFunction.h"
99 COMPILE_ASSERT(sizeof(JSFunction) <= sizeof(CollectorCell), sizeof_JSFunction_must_be_less_than_CollectorCell);
100 JSCell* jsFunction = new (storage) JSFunction(JSFunction::createStructure(jsNull()));
101 JSGlobalData::jsFunctionVPtr = jsFunction->vptr();
102 jsFunction->~JSCell();

Completed in 185 milliseconds