Searched refs:m_function (Results 1 - 24 of 24) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DMIMESniffing.h32 const char* sniff(const char* data, size_t size) const { return m_function ? m_function(data, size) : 0; }
38 SniffFunction m_function; member in class:MIMESniffer
H A DMIMESniffing.cpp486 , m_function(0)
490 m_function = &unknownTypeSniffingProcedure;
496 m_function = &textOrBinaryTypeSniffingProcedure;
502 m_function = &unknownTypeSniffingProcedure;
512 m_function = &imageTypeSniffingProcedure;
518 m_function = &feedTypeSniffingProcedure;
/macosx-10.9.5/WebCore-7537.78.1/plugins/
H A DPluginMainThreadScheduler.h65 : m_function(function)
72 m_function(m_userData);
76 MainThreadFunction* m_function; member in class:WebCore::PluginMainThreadScheduler::Call
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DTimer.h110 : m_object(o), m_function(f) { }
113 virtual void fired() { (m_object->*m_function)(this); }
116 TimerFiredFunction m_function; member in class:WebCore::Timer
131 , m_function(f)
161 (m_object->*m_function)(this);
165 TimerFiredFunction m_function; member in class:WebCore::DeferrableOneShotTimer
H A DRunLoop.h123 , m_function(f)
128 virtual void fired() { (m_object->*m_function)(); }
131 TimerFiredFunction m_function; member in class:WebCore::RunLoop::Timer
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DScheduledAction.cpp68 : m_function(exec->vm(), function)
93 ASSERT(m_function);
97 CallType callType = getCallData(m_function.get(), callData);
111 JSMainThreadExecState::call(exec, m_function.get(), callType, callData, thisValue, args);
113 JSC::call(exec, m_function.get(), callType, callData, thisValue, args);
131 if (m_function)
145 if (m_function) {
H A DScheduledAction.h56 : m_function(*isolatedWorld->vm())
68 JSC::Strong<JSC::Unknown> m_function; member in class:WebCore::ScheduledAction
H A DScriptFunctionCall.cpp195 , m_function(function)
204 CallType callType = getCallData(m_function.jsValue(), callData);
208 JSValue result = JSC::call(m_exec, m_function.jsValue(), callType, callData, m_function.jsValue(), m_arguments);
H A DScriptFunctionCall.h93 ScriptValue m_function; member in class:WebCore::ScriptCallback
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGCallArrayAllocatorSlowPathGenerator.h46 , m_function(function)
62 jit->callOperation(m_function, m_resultGPR, m_structure, m_size);
71 P_DFGOperation_EStZ m_function; member in class:JSC::DFG::CallArrayAllocatorSlowPathGenerator
85 , m_function(function)
107 jit->callOperation(m_function, m_resultGPR, scratchGPR, m_sizeGPR);
115 P_DFGOperation_EStZ m_function; member in class:JSC::DFG::CallArrayAllocatorWithVariableSizeSlowPathGenerator
H A DDFGSlowPathGenerator.h105 , m_function(function)
143 FunctionType m_function; member in class:JSC::DFG::CallSlowPathGenerator
166 this->recordCall(jit->callOperation(this->m_function, this->m_result));
190 this->recordCall(jit->callOperation(this->m_function, this->m_result, m_argument1));
218 this->recordCall(jit->callOperation(this->m_function, this->m_result, m_argument1, m_argument2));
250 this->m_function, this->m_result, m_argument1, m_argument2,
286 this->m_function, this->m_result, m_argument1, m_argument2,
325 this->m_function, this->m_result, m_argument1, m_argument2,
H A DDFGJITCompiler.h70 , m_function(function)
75 FunctionPtr m_function; member in struct:JSC::DFG::CallLinkRecord
H A DDFGJITCompiler.cpp153 linkBuffer.link(m_calls[i].m_call, m_calls[i].m_function);
H A DDFGSpeculativeJIT32_64.cpp610 this->m_function, this->m_result, m_arg1Tag, m_arg1Payload, m_arg2Tag,
H A DDFGSpeculativeJIT64.cpp549 this->recordCall(jit->callOperation(this->m_function, this->m_result, m_arg1, m_arg2));
/macosx-10.9.5/WebKit2-7537.78.2/Platform/qt/
H A DWorkQueueQt.cpp43 , m_function(function)
51 , m_function(function)
63 m_function();
80 Function<void()> m_function; member in class:WorkQueue::WorkItemQt
/macosx-10.9.5/WebKit2-7537.78.2/Platform/
H A DWorkQueue.h105 Function<void()>& function() { return m_function; }
112 Function<void()> m_function; member in class:WorkQueue::WorkItemWin
173 void dispatch() { m_function(); }
181 Function<void()> m_function; member in class:WorkQueue::TimerWorkItem
/macosx-10.9.5/WebKit2-7537.78.2/Platform/gtk/
H A DWorkQueueGtk.cpp39 : m_function(function)
49 m_function();
73 Function<void()> m_function; member in class:WorkQueue::EventSource
/macosx-10.9.5/WebKit2-7537.78.2/Platform/efl/
H A DWorkQueueEfl.cpp41 : m_function(function)
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DExecutable.h304 NativeFunction function() { return m_function; }
318 return OBJECT_OFFSETOF(NativeExecutable, m_function);
345 , m_function(function)
350 NativeFunction m_function; member in class:JSC::NativeExecutable
H A DJSONObject.cpp607 , m_function(exec->vm(), function)
619 return call(m_exec, m_function.get(), m_callType, m_callData, thisObj, args);
625 Local<JSObject> m_function; member in class:JSC::Walker
H A DExecutable.cpp687 return CodeBlockHash(static_cast<unsigned>(bitwise_cast<size_t>(m_function)));
/macosx-10.9.5/WebKit2-7537.78.2/Platform/win/
H A DWorkQueueWin.cpp32 : m_function(function)
/macosx-10.9.5/JavaScriptCore-7537.78.1/llint/
H A DLowLevelInterpreter.asm1199 nativeCallTrampoline(NativeExecutable::m_function)

Completed in 496 milliseconds