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

1 2

  /external/webkit/JavaScriptCore/runtime/
CallData.cpp 33 JSValue call(ExecState* exec, JSValue functionObject, CallType callType, const CallData& callData, JSValue thisValue, const ArgList& args)
35 if (callType == CallTypeHost)
37 ASSERT(callType == CallTypeJS);
PropertySlot.cpp 36 CallType callType = slot.m_data.getterFunc->getCallData(callData);
37 if (callType == CallTypeHost)
39 ASSERT(callType == CallTypeJS);
FunctionPrototype.cpp 62 CallType FunctionPrototype::getCallData(CallData& callData)
109 CallType callType = thisValue.getCallData(callData);
110 if (callType == CallTypeNone)
131 return call(exec, thisValue, callType, callData, args.at(0), applyArgs);
137 CallType callType = thisValue.getCallData(callData);
138 if (callType == CallTypeNone)
143 return call(exec, thisValue, callType, callData, args.at(0), callArgs);
ArrayPrototype.cpp 71 static inline bool isNumericCompareFunction(ExecState* exec, CallType callType, const CallData& callData)
73 if (callType != CallTypeJS)
238 CallType callType = conversionFunction.getCallData(callData);
239 if (callType != CallTypeNone)
240 str = call(exec, conversionFunction, callType, callData, element, exec->emptyList()).toString(exec);
450 CallType callType = function.getCallData(callData);
453 if (isNumericCompareFunction(exec, callType, callData)
    [all...]
JSONObject.cpp 110 CallType m_replacerCallType;
347 CallType callType = object->getCallData(callData);
348 if (callType == CallTypeNone)
353 return call(m_exec, object, callType, callData, value, args);
625 Walker(ExecState* exec, JSObject* function, CallType callType, CallData callData)
628 , m_callType(callType)
645 CallType m_callType;
854 CallType callType = function.getCallData(callData)
    [all...]
JSObject.cpp 146 CallType callType = setterFunc->getCallData(callData);
149 call(exec, setterFunc, callType, callData, this, args);
236 CallType callType = function.getCallData(callData);
237 if (callType == CallTypeNone)
245 JSValue result = call(exec, function, callType, callData, const_cast<JSObject*>(object), exec->emptyList());
JSArray.cpp 655 void JSArray::sortNumeric(ExecState* exec, JSValue compareFunction, CallType callType, const CallData& callData)
676 return sort(exec, compareFunction, callType, callData);
764 CallType m_compareCallType;
824 void JSArray::sort(ExecState* exec, JSValue compareFunction, CallType callType, const CallData& callData)
844 tree.abstractor().m_compareCallType = callType;
849 if (callType == CallTypeJS)
    [all...]
  /external/webkit/WebCore/bindings/js/
JSCallbackData.cpp 53 CallType callType = function.getCallData(callData);
54 if (callType == CallTypeNone) {
55 callType = callback()->getCallData(callData);
56 if (callType == CallTypeNone)
62 JSValue result = JSC::call(exec, function, callType, callData, callback(), args);
JSNodeFilterCondition.cpp 49 CallType callType = m_filter.getCallData(callData);
50 if (callType == CallTypeNone)
69 JSValue result = JSC::call(exec, m_filter, callType, callData, m_filter, args);
JSCustomXPathNSResolver.cpp 76 CallType callType = function.getCallData(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);
JSEventListener.cpp 94 CallType callType = handleEventFunction.getCallData(callData);
95 if (callType == CallTypeNone) {
97 callType = jsFunction->getCallData(callData);
100 if (callType != CallTypeNone) {
114 ? JSC::call(exec, handleEventFunction, callType, callData, jsFunction, args)
115 : JSC::call(exec, jsFunction, callType, callData, toJS(exec, globalObject, event->currentTarget()), args);
150 CallType callType = jsFunction->getCallData(callData);
152 if (callType == CallTypeNone
    [all...]
ScheduledAction.cpp 94 CallType callType = m_function.get().getCallData(callData);
95 if (callType == CallTypeNone)
106 JSC::call(exec, m_function, callType, callData, thisValue, args);
JSHTMLDocumentCustom.cpp 113 CallType callType = function.getCallData(callData);
114 if (callType == CallTypeNone)
116 return JSC::call(exec, function, callType, callData, wrapper, args);
ScriptFunctionCall.cpp 145 CallType callType = function.getCallData(callData);
146 if (callType == CallTypeNone)
149 JSValue result = JSC::call(m_exec, function, callType, callData, thisObject, m_arguments);
JSInjectedScriptHostCustom.cpp 89 CallType callType = functionValue.getCallData(callData);
90 if (callType == CallTypeNone)
97 JSValue result = JSC::call(scriptState, functionValue, callType, callData, globalThisValue, args);
  /packages/apps/Phone/src/com/android/phone/
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;
164 c.callType, c.timestamp, c.durationInSec);
  /frameworks/base/core/java/android/provider/
CallLog.java 143 * @param callType enumerated values for "incoming", "outgoing", or "missed"
150 int presentation, int callType, long start, int duration) {
170 values.put(TYPE, Integer.valueOf(callType));
  /external/webkit/JavaScriptGlue/
JSValueWrapper.cpp 166 CallType callType = objValue->getCallData(callData);
167 if (callType == CallTypeNone)
169 JSValue resultValue = call(exec, objValue, callType, callData, ksjThisObj, listArgs);
  /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/WebCore/bridge/
NP_jsobject.cpp 120 CallType callType = function.getCallData(callData);
121 if (callType == CallTypeNone)
128 JSValue resultV = JSC::call(exec, function, callType, callData, function, argList);
169 CallType callType = function.getCallData(callData);
170 if (callType == CallTypeNone)
178 JSValue resultV = JSC::call(exec, function, callType, callData, obj->imp, argList);
  /packages/apps/Contacts/src/com/android/contacts/
CallDetailActivity.java 152 int callType = callCursor.getInt(CALL_TYPE_COLUMN_INDEX);
161 if (callType == Calls.MISSED_TYPE) {
170 switch (callType) {
  /external/webkit/JavaScriptCore/API/
JSObjectRef.cpp 389 CallType callType = jsObject->getCallData(callData);
390 if (callType == CallTypeNone)
393 JSValueRef result = toRef(exec, call(exec, jsObject, callType, callData, jsThisObject, argList));
  /external/webkit/WebCore/bindings/objc/
WebScriptObject.mm 291 CallType callType = function.getCallData(callData);
292 if (callType == CallTypeNone)
302 JSValue result = JSC::call(exec, function, callType, callData, [self _imp], argList);
  /external/webkit/WebCore/bridge/jni/
jni_jsobject.mm 299 CallType callType = function.getCallData(callData);
300 if (callType == CallTypeNone)
307 JSValue result = JSC::call(exec, function, callType, callData, _imp, argList);
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm 793 CallType callType = function.getCallData(callData);
794 if (callType == CallTypeNone)
802 JSValue value = call(exec, function, callType, callData, object, argList);
826 CallType callType = object->getCallData(callData);
827 if (callType == CallTypeNone)
835 JSValue value = call(exec, object, callType, callData, object, argList);
    [all...]

Completed in 866 milliseconds

1 2