HomeSort by relevance Sort by last modified time
    Searched defs:callType (Results 1 - 25 of 31) sorted by null

1 2

  /external/webkit/Source/JavaScriptCore/runtime/
PropertySlot.cpp 36 CallType callType = m_data.getterFunc->getCallData(callData);
37 return call(exec, m_data.getterFunc, callType, callData, thisValue(), exec->emptyList());
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));
JSObject.cpp 146 CallType callType = setterFunc->getCallData(callData);
149 call(exec, setterFunc, callType, callData, this, args);
252 CallType callType = getCallData(function, callData);
253 if (callType == CallTypeNone)
261 JSValue result = call(exec, function, callType, callData, const_cast<JSObject*>(object), 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...]
DatePrototype.cpp     [all...]
JSONObject.cpp 120 CallType m_replacerCallType;
335 CallType callType = object->getCallData(callData);
336 if (callType == CallTypeNone)
341 return call(m_exec, object, callType, callData, value, args);
609 Walker(ExecState* exec, Handle<JSObject> function, CallType callType, CallData callData)
612 , m_callType(callType)
629 CallType m_callType;
829 CallType callType = getCallData(function, callData)
    [all...]
StringPrototype.cpp 306 CallType callType = getCallData(replacement, callData);
307 if (callType == CallTypeNone)
327 if (global && callType == CallTypeJS) {
387 if (callType != CallTypeNone) {
406 replacements.append(call(exec, replacement, callType, callData, exec->globalThisValue(), args).toString(exec));
446 if (patternString.length() == 1 && callType == CallTypeNone && replacementString.find('$', 0) == notFound)
456 if (callType != CallTypeNone) {
462 replacementString = call(exec, replacement, callType, callData, exec->globalThisValue(), args).toString(exec);
    [all...]
  /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);
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);
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);
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);
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);
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);
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)
JSHTMLDocumentCustom.cpp 114 CallType callType = ::getCallData(function, callData);
115 if (callType == CallTypeNone)
117 return JSC::call(exec, function, callType, callData, wrapper, ArgList(exec));
  /packages/apps/Dialer/src/com/android/dialer/calllog/
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;
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) {
  /external/webkit/Source/JavaScriptGlue/
JSValueWrapper.cpp 166 CallType callType = objValue->getCallData(callData);
167 if (callType == CallTypeNone)
169 JSValue resultValue = call(exec, objValue, callType, callData, ksjThisObj, listArgs);
  /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);
  /cts/tests/tests/jni/libjnitest/
macroized_tests.c 56 } callType;
168 callType ct, const char *name, const char *sig) {
185 static char *help_CallBooleanMethod(JNIEnv *env, callType ct, ...) {
288 static char *help_CallByteMethod(JNIEnv *env, callType ct, ...) {
391 static char *help_CallShortMethod(JNIEnv *env, callType ct, ...) {
494 static char *help_CallCharMethod(JNIEnv *env, callType ct, ...) {
597 static char *help_CallIntMethod(JNIEnv *env, callType ct, ...) {
700 static char *help_CallLongMethod(JNIEnv *env, callType ct, ...) {
803 static char *help_CallFloatMethod(JNIEnv *env, callType ct, ...) {
906 static char *help_CallDoubleMethod(JNIEnv *env, callType ct, ...)
    [all...]
  /external/webkit/Source/JavaScriptCore/API/
JSObjectRef.cpp 438 CallType callType = jsObject->getCallData(callData);
439 if (callType == CallTypeNone)
442 JSValueRef result = toRef(exec, call(exec, jsObject, callType, callData, jsThisObject, argList));
  /external/webkit/Source/WebCore/bridge/
NP_jsobject.cpp 186 CallType callType = getCallData(function, callData);
187 if (callType == CallTypeNone)
194 JSValue resultV = JSC::call(exec, function, callType, callData, function, argList);
235 CallType callType = getCallData(function, callData);
236 if (callType == CallTypeNone)
244 JSValue resultV = JSC::call(exec, function, callType, callData, obj->imp, argList);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPJSObject.cpp 285 CallType callType = getCallData(function, callData);
286 if (callType == CallTypeNone)
295 JSValue value = JSC::call(exec, function, callType, callData, m_jsObject.get(), argumentList);

Completed in 498 milliseconds

1 2