/external/webkit/Source/WebCore/platform/network/ |
MIMESniffing.h | 32 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
|
MIMESniffing.cpp | 460 , 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/ |
ScheduledAction.cpp | 50 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->IsFunction()) [all...] |
ScheduledAction.h | 68 v8::Persistent<v8::Function> m_function; member in class:WebCore::ScheduledAction
|
ScriptFunctionCall.h | 83 ScriptValue m_function; member in class:WebCore::ScriptCallback
|
ScriptFunctionCall.cpp | 177 , 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/ |
RunLoopTimer.h | 69 : m_object(o), m_function(f) { } 71 virtual void fired() { (m_object->*m_function)(this); } 75 TimerFiredFunction m_function; member in class:WebCore::RunLoopTimer
|
Timer.h | 97 : 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/ |
PluginMainThreadScheduler.h | 65 : m_function(function) 72 m_function(m_userData); 76 MainThreadFunction* m_function; member in class:WebCore::PluginMainThreadScheduler::Call
|
/external/webkit/Source/WebKit2/Platform/ |
WorkItem.h | 64 , 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(function 179 FunctionType m_function; member in class:FunctionWorkItem0 [all...] |
RunLoop.h | 119 , 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/ |
ScheduledAction.cpp | 67 : 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) {
|
ScheduledAction.h | 55 : m_function(*isolatedWorld->globalData()) 67 JSC::Strong<JSC::Unknown> m_function; member in class:WebCore::ScheduledAction
|
ScriptFunctionCall.h | 96 ScriptValue m_function; member in class:WebCore::ScriptCallback
|
ScriptFunctionCall.cpp | 196 , 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);
|
/external/webkit/Source/JavaScriptCore/dfg/ |
DFGJITCompiler.h | 80 , m_function(function) 87 , m_function(function) 94 FunctionPtr m_function;
|
DFGJITCompiler.cpp | 358 linkBuffer.link(m_calls[i].m_call, m_calls[i].m_function);
|
/external/webkit/Source/JavaScriptCore/runtime/ |
Executable.h | 117 NativeFunction function() { return m_function; } 125 , m_function(function) 136 , m_function(function) 142 NativeFunction m_function; member in class:JSC::NativeExecutable
|
JSONObject.cpp | 611 , 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/ |
JITOpcodes.cpp | 191 int executableOffsetToFunction = isConstruct ? OBJECT_OFFSETOF(NativeExecutable, m_constructor) : OBJECT_OFFSETOF(NativeExecutable, m_function); [all...] |
JITOpcodes32_64.cpp | 197 int executableOffsetToFunction = isConstruct ? OBJECT_OFFSETOF(NativeExecutable, m_constructor) : OBJECT_OFFSETOF(NativeExecutable, m_function); [all...] |