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

/external/webkit/Source/WebCore/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.cpp460 , m_function(0)
464 m_function = &unknownTypeSniffingProcedure;
470 m_function = &textOrBinaryTypeSniffingProcedure;
476 m_function = &unknownTypeSniffingProcedure;
486 m_function = &imageTypeSniffingProcedure;
492 m_function = &feedTypeSniffingProcedure;
/external/webkit/Source/WebCore/bindings/v8/
H A DScheduledAction.cpp50 m_function = v8::Persistent<v8::Function>::New(func);
53 V8GCController::registerGlobalHandle(SCHEDULED_ACTION, this, m_function);
72 if (m_function.IsEmpty())
76 V8GCController::unregisterGlobalHandle(this, m_function);
78 m_function.Dispose();
118 if (!m_function.IsEmpty() && m_function->IsFunction()) {
119 proxy->callFunction(v8::Persistent<v8::Function>::Cast(m_function), v8Context->Global(), m_argc, m_argv);
135 if (!m_function.IsEmpty() && m_function
[all...]
H A DScriptFunctionCall.h83 ScriptValue m_function; member in class:WebCore::ScriptCallback
H A DScheduledAction.h68 v8::Persistent<v8::Function> m_function; member in class:WebCore::ScheduledAction
H A DScriptFunctionCall.cpp177 , m_function(function)
190 ASSERT(m_function.v8Value()->IsFunction());
194 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(m_function.v8Value());
/external/webkit/Source/WebCore/platform/
H A DRunLoopTimer.h69 : m_object(o), m_function(f) { }
71 virtual void fired() { (m_object->*m_function)(this); }
75 TimerFiredFunction m_function; member in class:WebCore::RunLoopTimer
H A DTimer.h97 : m_object(o), m_function(f) { }
100 virtual void fired() { (m_object->*m_function)(this); }
103 TimerFiredFunction m_function; member in class:WebCore::Timer
/external/webkit/Source/WebCore/plugins/
H A DPluginMainThreadScheduler.h65 : m_function(function)
72 m_function(m_userData);
76 MainThreadFunction* m_function; member in class:WebCore::PluginMainThreadScheduler::Call
/external/webkit/Source/WebKit2/Platform/
H A DWorkItem.h64 , m_function(function)
76 (m_ptr->*m_function)();
80 FunctionType m_function; member in class:MemberFunctionWorkItem0
92 , m_function(function)
105 (m_ptr->*m_function)(m_t0);
109 FunctionType m_function; member in class:MemberFunctionWorkItem1
122 , m_function(function)
136 (m_ptr->*m_function)(m_t0, m_t1);
140 FunctionType m_function; member in class:MemberFunctionWorkItem2
170 : m_function(functio
179 FunctionType m_function; member in class:FunctionWorkItem0
[all...]
H A DRunLoop.h119 , m_function(f)
124 virtual void fired() { (m_object->*m_function)(); }
127 TimerFiredFunction m_function; member in class:RunLoop::Timer
/external/webkit/Source/WebCore/bindings/js/
H A DScheduledAction.cpp67 : m_function(exec->globalData(), function)
92 ASSERT(m_function);
96 CallType callType = getCallData(m_function.get(), callData);
109 JSMainThreadExecState::call(exec, m_function.get(), callType, callData, thisValue, args);
111 JSC::call(exec, m_function.get(), callType, callData, thisValue, args);
130 if (m_function) {
147 if (m_function) {
H A DScheduledAction.h55 : m_function(*isolatedWorld->globalData())
67 JSC::Strong<JSC::Unknown> m_function; member in class:WebCore::ScheduledAction
H A DScriptFunctionCall.cpp196 , m_function(function)
211 CallType callType = getCallData(m_function.jsValue(), callData);
215 JSValue result = JSC::call(m_exec, m_function.jsValue(), callType, callData, m_function.jsValue(), m_arguments);
H A DScriptFunctionCall.h96 ScriptValue m_function; member in class:WebCore::ScriptCallback
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGJITCompiler.h80 , m_function(function)
87 , m_function(function)
94 FunctionPtr m_function;
H A DDFGJITCompiler.cpp358 linkBuffer.link(m_calls[i].m_call, m_calls[i].m_function);
/external/webkit/Source/JavaScriptCore/runtime/
H A DExecutable.h117 NativeFunction function() { return m_function; }
125 , m_function(function)
136 , m_function(function)
142 NativeFunction m_function; member in class:JSC::NativeExecutable
H A DJSONObject.cpp611 , m_function(exec->globalData(), function)
622 return call(m_exec, m_function.get(), m_callType, m_callData, thisObj, argList);
628 Local<JSObject> m_function; member in class:JSC::Walker
/external/webkit/Source/JavaScriptCore/jit/
H A DJITOpcodes.cpp191 int executableOffsetToFunction = isConstruct ? OBJECT_OFFSETOF(NativeExecutable, m_constructor) : OBJECT_OFFSETOF(NativeExecutable, m_function);
H A DJITOpcodes32_64.cpp197 int executableOffsetToFunction = isConstruct ? OBJECT_OFFSETOF(NativeExecutable, m_constructor) : OBJECT_OFFSETOF(NativeExecutable, m_function);

Completed in 926 milliseconds