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

  /external/webkit/Source/WebCore/bindings/js/
JSErrorHandler.cpp 66 JSObject* jsFunction = this->jsFunction(scriptExecutionContext);
67 if (!jsFunction)
77 CallType callType = jsFunction->getCallData(callData);
96 JSValue returnValue = JSC::call(exec, jsFunction, callType, callData, thisValue, args);
JSEventListener.cpp 73 JSObject* jsFunction = this->jsFunction(scriptExecutionContext);
74 if (!jsFunction)
97 JSValue handleEventFunction = jsFunction->get(exec, Identifier(exec, "handleEvent"));
103 callType = jsFunction->getCallData(callData);
122 ? JSMainThreadExecState::call(exec, handleEventFunction, callType, callData, jsFunction, args)
123 : JSC::call(exec, handleEventFunction, callType, callData, jsFunction, args);
127 ? JSMainThreadExecState::call(exec, jsFunction, callType, callData, currentTarget, args)
128 : JSC::call(exec, jsFunction, callType, callData, currentTarget, args);
ScriptEventListener.cpp 102 JSC::JSObject* jsFunction = jsListener->jsFunction(document);
103 if (!jsFunction)
105 return ustringToString(jsFunction->toString(scriptStateFromNode(jsListener->isolatedWorld(), document)));
JSLazyEventListener.cpp 27 #include <runtime/JSFunction.h>
100 JSObject* jsFunction = constructFunction(exec, exec->lexicalGlobalObject(), args, Identifier(exec, stringToUString(m_functionName)), stringToUString(m_sourceURL), m_lineNumber); // FIXME: is globalExec ok?
106 JSFunction* listenerAsFunction = static_cast<JSFunction*>(jsFunction);
125 return jsFunction;
JSEventListener.h 52 JSC::JSObject* jsFunction(ScriptExecutionContext*) const;
75 inline JSC::JSObject* JSEventListener::jsFunction(ScriptExecutionContext* scriptExecutionContext) const
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalData.cpp 43 #include "JSFunction.h"
83 if (!cell->inherits(&JSFunction::s_info))
85 JSFunction* function = asFunction(cell);
121 // Enough storage to fit a JSArray, JSByteArray, JSString, or JSFunction.
140 COMPILE_ASSERT(sizeof(JSFunction) <= sizeof(storage), sizeof_JSFunction_must_be_less_than_storage);
141 JSCell* jsFunction = new (storage) JSFunction(JSCell::VPtrStealingHack);
143 JSGlobalData::jsFunctionVPtr = jsFunction->vptr();

Completed in 469 milliseconds