/external/webkit/WebCore/bindings/v8/ |
ScheduledAction.cpp | 51 m_function = v8::Persistent<v8::Function>::New(func); 54 V8GCController::registerGlobalHandle(SCHEDULED_ACTION, this, m_function); 73 if (m_function.IsEmpty()) 77 V8GCController::unregisterGlobalHandle(this, m_function); 79 m_function.Dispose(); 119 if (!m_function.IsEmpty() && m_function->IsFunction()) { 120 proxy->callFunction(v8::Persistent<v8::Function>::Cast(m_function), v8Context->Global(), m_argc, m_argv); 136 if (!m_function.IsEmpty() && m_function->IsFunction()) [all...] |
ScheduledAction.h | 68 v8::Persistent<v8::Function> m_function; member in class:WebCore::ScheduledAction
|
/external/webkit/WebCore/bindings/js/ |
ScheduledAction.cpp | 66 : m_function(function) 90 ASSERT(m_function); 94 CallType callType = m_function.get().getCallData(callData); 106 JSC::call(exec, m_function, callType, callData, thisValue, args); 125 if (m_function) { 142 if (m_function) {
|
ScheduledAction.h | 63 JSC::ProtectedJSValue m_function; member in class:WebCore::ScheduledAction
|
/external/webkit/JavaScriptCore/runtime/ |
PrototypeFunction.cpp | 37 , m_function(function) 45 , m_function(function) 53 callData.native.function = m_function;
|
PrototypeFunction.h | 40 const NativeFunction m_function; member in class:JSC::PrototypeFunction
|
JSONObject.cpp | 627 , m_function(function) 638 return call(m_exec, m_function, m_callType, m_callData, thisObj, argList); 644 JSObject* m_function; member in class:JSC::Walker
|
/external/webkit/WebCore/plugins/ |
PluginMainThreadScheduler.h | 64 : m_function(function) 71 m_function(m_userData); 75 MainThreadFunction* m_function; member in class:WebCore::PluginMainThreadScheduler::Call
|
/external/webkit/WebCore/platform/ |
RunLoopTimer.h | 68 : m_object(o), m_function(f) { } 70 virtual void fired() { (m_object->*m_function)(this); } 74 TimerFiredFunction m_function; member in class:WebCore::RunLoopTimer
|
Timer.h | 95 : m_object(o), m_function(f) { } 98 virtual void fired() { (m_object->*m_function)(this); } 101 TimerFiredFunction m_function; member in class:WebCore::Timer
|