HomeSort by relevance Sort by last modified time
    Searched refs:CallType (Results 26 - 50 of 92) sorted by null

12 3 4

  /external/webkit/Source/JavaScriptGlue/
UserObjectImp.h 44 virtual CallType getCallData(CallData&);
JSObject.cpp 82 CallType JSUserObject::getCallData(CallData& callData)
  /external/webkit/Source/WebCore/bindings/js/
JSCallbackData.cpp 54 CallType callType = getCallData(function, callData);
55 if (callType == CallTypeNone) {
56 callType = callback()->getCallData(callData);
57 if (callType == CallTypeNone)
70 ? JSMainThreadExecState::call(exec, function, callType, callData, callback(), args)
71 : JSC::call(exec, function, callType, callData, callback(), args);
JSMainThreadExecState.h 45 static JSC::JSValue call(JSC::ExecState* exec, JSC::JSValue functionObject, JSC::CallType callType, const JSC::CallData& callData, JSC::JSValue thisValue, const JSC::ArgList& args)
48 return JSC::call(exec, functionObject, callType, callData, thisValue, args);
JSNodeFilterCondition.cpp 58 CallType callType = getCallData(function, callData);
59 if (callType == CallTypeNone) {
61 callType = getCallData(function, callData);
62 if (callType == CallTypeNone) {
75 JSValue result = JSC::call(exec, function, callType, callData, m_filter.get(), args);
JSPluginElementFunctions.cpp 166 CallType callType = getCallData(scriptObject, callData);
167 ASSERT(callType == CallTypeHost);
170 JSValue result = call(exec, scriptObject, callType, callData, exec->hostThisValue(), argumentList);
174 CallType runtimeObjectGetCallData(JSHTMLElement* element, CallData& callData)
JSCustomXPathNSResolver.cpp 76 CallType callType = getCallData(function, callData);
77 if (callType == CallTypeNone) {
78 callType = m_customResolver->getCallData(callData);
79 if (callType == CallTypeNone) {
93 JSValue retval = JSC::call(exec, function, callType, callData, m_customResolver, args);
JSErrorHandler.cpp 77 CallType callType = jsFunction->getCallData(callData);
79 if (callType != CallTypeNone) {
96 JSValue returnValue = JSC::call(exec, jsFunction, callType, callData, thisValue, args);
JSInjectedScriptManager.cpp 62 CallType callType = getCallData(functionValue, callData);
63 if (callType == CallTypeNone)
70 JSValue result = JSC::call(scriptState, functionValue, callType, callData, globalThisValue, args);
JSNodeListCustom.cpp 87 CallType JSNodeList::getCallData(CallData& callData)
  /external/webkit/Source/WebCore/bridge/
runtime_object.h 46 virtual CallType getCallData(CallData&);
runtime_method.cpp 121 CallType RuntimeMethod::getCallData(CallData& callData)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPMethod.cpp 75 CallType JSNPMethod::getCallData(CallData& callData)
JSNPObject.h 63 virtual JSC::CallType getCallData(JSC::CallData&);
  /external/webkit/Source/JavaScriptCore/runtime/
ArrayConstructor.cpp 89 CallType ArrayConstructor::getCallData(CallData& callData)
BooleanConstructor.cpp 66 CallType BooleanConstructor::getCallData(CallData& callData)
NativeErrorConstructor.cpp 77 CallType NativeErrorConstructor::getCallData(CallData& callData)
FunctionPrototype.cpp 61 CallType FunctionPrototype::getCallData(CallData& callData)
110 CallType callType = getCallData(thisValue, callData);
111 if (callType == CallTypeNone)
132 return JSValue::encode(call(exec, thisValue, callType, callData, exec->argument(0), applyArgs));
139 CallType callType = getCallData(thisValue, callData);
140 if (callType == CallTypeNone)
146 return JSValue::encode(call(exec, thisValue, callType, callData, exec->argument(0), callArgs));
JSCell.h 101 virtual CallType getCallData(CallData&);
223 inline CallType getCallData(JSValue value, CallData& callData)
225 CallType result = value.isCell() ? value.asCell()->getCallData(callData) : CallTypeNone;
FunctionConstructor.cpp 68 CallType FunctionConstructor::getCallData(CallData& callData)
JSFunction.h 84 virtual CallType getCallData(CallData&);
NumberConstructor.cpp 125 CallType NumberConstructor::getCallData(CallData& callData)
RegExpConstructor.h 92 virtual CallType getCallData(CallData&);
StringConstructor.cpp 90 CallType StringConstructor::getCallData(CallData& callData)
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.h 116 virtual CallType getCallData(CallData&);

Completed in 705 milliseconds

12 3 4