/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);
|
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);
|
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);
|
JSEventListener.cpp | 100 CallType callType = getCallData(handleEventFunction, callData); 101 if (callType == CallTypeNone) { 103 callType = jsFunction->getCallData(callData); 106 if (callType != CallTypeNone) { 122 ? JSMainThreadExecState::call(exec, handleEventFunction, callType, callData, jsFunction, args) 123 : JSC::call(exec, handleEventFunction, callType, callData, jsFunction, args); 127 ? JSMainThreadExecState::call(exec, jsFunction, callType, callData, currentTarget, args) 128 : JSC::call(exec, jsFunction, callType, callData, currentTarget, args);
|
ScriptFunctionCall.cpp | 140 CallType callType = getCallData(function, callData); 141 if (callType == CallTypeNone) 144 JSValue result = JSMainThreadExecState::call(m_exec, function, callType, callData, thisObject, m_arguments); 211 CallType callType = getCallData(m_function.jsValue(), callData); 212 if (callType == CallTypeNone) 215 JSValue result = JSC::call(m_exec, m_function.jsValue(), callType, callData, m_function.jsValue(), m_arguments);
|
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);
|
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);
|
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)
|
ScheduledAction.cpp | 96 CallType callType = getCallData(m_function.get(), callData); 97 if (callType == CallTypeNone) 109 JSMainThreadExecState::call(exec, m_function.get(), callType, callData, thisValue, args); 111 JSC::call(exec, m_function.get(), callType, callData, thisValue, args);
|
/external/webkit/Source/JavaScriptCore/runtime/ |
CallData.cpp | 35 JSValue call(ExecState* exec, JSValue functionObject, CallType callType, const CallData& callData, JSValue thisValue, const ArgList& args) 37 ASSERT(callType == CallTypeJS || callType == CallTypeHost); 38 return exec->interpreter()->executeCall(exec, asObject(functionObject), callType, callData, thisValue, args);
|
PropertySlot.cpp | 36 CallType callType = m_data.getterFunc->getCallData(callData); 37 return call(exec, m_data.getterFunc, callType, callData, thisValue(), exec->emptyList());
|
ArrayPrototype.cpp | 72 static inline bool isNumericCompareFunction(ExecState* exec, CallType callType, const CallData& callData) 74 if (callType != CallTypeJS) 256 CallType callType = getCallData(conversionFunction, callData); 257 if (callType != CallTypeNone) 258 str = call(exec, conversionFunction, callType, callData, element, exec->emptyList()).toString(exec); 501 CallType callType = getCallData(function, callData); 504 if (isNumericCompareFunction(exec, callType, callData) [all...] |
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));
|
CallData.h | 42 enum CallType { 60 JSValue call(ExecState*, JSValue functionObject, CallType, const CallData&, JSValue thisValue, const ArgList&);
|
ArrayConstructor.h | 35 virtual CallType getCallData(CallData&);
|
BooleanConstructor.h | 36 virtual CallType getCallData(CallData&);
|
DateConstructor.h | 36 virtual CallType getCallData(CallData&);
|
ErrorConstructor.h | 37 virtual CallType getCallData(CallData&);
|
FunctionConstructor.h | 36 virtual CallType getCallData(CallData&);
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
CallTypeHelper.java | 52 public CharSequence getCallTypeText(int callType) { 53 switch (callType) { 67 throw new IllegalArgumentException("invalid call type: " + callType); 72 public Integer getHighlightedColor(int callType) { 73 switch (callType) { 89 throw new IllegalArgumentException("invalid call type: " + callType);
|
CallTypeIconsView.java | 59 public void add(int callType) { 60 mCallTypes.add(callType); 62 final Drawable drawable = getCallTypeDrawable(callType); 78 private Drawable getCallTypeDrawable(int callType) { 79 switch (callType) { 89 throw new IllegalArgumentException("invalid call type: " + callType); 101 for (Integer callType : mCallTypes) { 102 final Drawable drawable = getCallTypeDrawable(callType);
|
CallDetailHistoryAdapter.java | 143 int callType = details.callTypes[0]; 145 callTypeIconView.add(callType); 146 callTypeTextView.setText(mCallTypeHelper.getCallTypeText(callType)); 153 if (callType == Calls.MISSED_TYPE || callType == Calls.VOICEMAIL_TYPE) {
|
CallLogGroupBuilder.java | 69 final int callType = cursor.getInt(CallLogQuery.CALL_TYPE); 84 shouldGroup = (callType == Calls.INCOMING_TYPE || callType == Calls.OUTGOING_TYPE || 85 callType == Calls.MISSED_TYPE); 102 firstCallType = callType;
|
/packages/apps/PhoneCommon/src/com/android/phone/common/ |
CallLogAsync.java | 65 * @param callType The type of call (e.g INCOMING_TYPE). @see 74 int callType, 98 this.callType = callType; 108 public final int callType; 165 c.callType, c.timestamp, c.durationInSec);
|