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

1 2 3

  /external/webkit/Source/WebCore/bridge/jni/v8/
JavaInstanceV8.h 53 virtual JavaValue invokeMethod(const JavaMethod*, JavaValue* args, bool& didRaiseUncaughtException) = 0;
JavaInstanceJobjectV8.h 56 virtual JavaValue invokeMethod(const JavaMethod*, JavaValue* args, bool& didRaiseUncaughtException);
JavaInstanceJobjectV8.cpp 69 JavaValue JavaInstanceJobject::invokeMethod(const JavaMethod* method, JavaValue* args, bool& didRaiseUncaughtException)
JavaNPObjectV8.cpp 151 JavaValue jResult = instance->invokeMethod(jMethod, jArgs, exceptionOccurred);
  /external/webkit/Source/WebCore/inspector/front-end/
TestController.js 45 function invokeMethod()
59 InspectorBackend.runAfterPendingDispatches(invokeMethod);
  /external/webkit/Source/JavaScriptCore/wtf/qt/
MainThreadQt.cpp 67 QMetaObject::invokeMethod(webkit_main_thread_invoker(), "dispatch", Qt::QueuedConnection);
  /external/webkit/Source/WebCore/platform/graphics/wince/
MediaPlayerProxy.h 56 void invokeMethod(const String& methodName);
MediaPlayerProxy.cpp 87 invokeMethod("play");
123 void WebMediaPlayerProxy::invokeMethod(const String& methodName)
139 instance->invokeMethod(exec, methodList , args);
  /dalvik/vm/mterp/portable/
stubdefs.cpp 67 #define GOTO_invokeMethod(_methodCallRange, _methodToCall, _vsrc1, _vdst) goto invokeMethod;
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaInstanceJSC.h 57 virtual JSValue invokeMethod(ExecState* exec, RuntimeMethod* method);
JavaInstanceJSC.cpp 143 JSValue JavaInstance::invokeMethod(ExecState* exec, RuntimeMethod* runtimeMethod)
169 LOG(LiveConnect, "JavaInstance::invokeMethod unable to find an appropiate method");
174 LOG(LiveConnect, "JavaInstance::invokeMethod call %s %s on %p", UString(jMethod->name().impl()).utf8().data(), jMethod->signature(), m_instance->m_instance);
181 LOG(LiveConnect, "JavaInstance::invokeMethod arg[%d] = %s", i, exec->argument(i).toString(exec).ascii().data());
  /external/webkit/Source/WebCore/bridge/qt/
qt_pixmapruntime.h 36 virtual JSValue invokeMethod(ExecState*, RuntimeMethod*);
qt_instance.h 54 virtual JSValue invokeMethod(ExecState*, RuntimeMethod*);
  /external/webkit/Source/WebCore/platform/network/qt/
SocketStreamHandleQt.cpp 103 QMetaObject::invokeMethod(this, "socketSentData", Qt::QueuedConnection);
121 QMetaObject::invokeMethod(this, "socketClosedCallback", Qt::QueuedConnection);
126 QMetaObject::invokeMethod(this, "socketErrorCallback", Qt::QueuedConnection, Q_ARG(int, error));
153 QMetaObject::invokeMethod(this, "socketErrorCallback", Qt::QueuedConnection, Q_ARG(int, error[0].error()));
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ForegroundService.java 67 void invokeMethod(Method method, Object[] args) {
88 invokeMethod(mStartForeground, mStartForegroundArgs);
94 invokeMethod(mSetForeground, mSetForegroundArgs);
106 invokeMethod(mStopForeground, mStopForegroundArgs);
114 invokeMethod(mSetForeground, mSetForegroundArgs);
  /external/webkit/Source/WebCore/bridge/c/
c_instance.h 63 virtual JSValue invokeMethod(ExecState*, RuntimeMethod* method);
c_instance.cpp 138 JSValue CInstance::invokeMethod(ExecState* exec, RuntimeMethod* runtimeMethod)
  /external/webkit/Source/WebCore/bridge/objc/
objc_instance.h 52 virtual JSValue invokeMethod(ExecState*, RuntimeMethod* method);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
HtmlTooltipHelper.java 256 Object o = ReflectionUtils.invokeMethod(browser, "evaluate(java.lang.String)", script);
262 ReflectionUtils.invokeMethod(browser, "evaluate(java.lang.String)", script);
276 String text = (String) ReflectionUtils.invokeMethod(reader, "getString()");
  /external/webkit/Source/WebCore/bridge/jsc/
BridgeJSC.h 97 virtual JSValue invokeMethod(ExecState*, RuntimeMethod* method) = 0;
  /external/webkit/Source/WebCore/bridge/
runtime_method.cpp 116 JSValue result = instance->invokeMethod(exec, method);
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
ProxyInstance.h 67 virtual JSC::JSValue invokeMethod(JSC::ExecState*, JSC::RuntimeMethod*);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ReflectionUtils.java 218 public static Object invokeMethod(Object object, String signature, Object... arguments)
256 return invokeMethod(object, signature, arguments);
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
ChromeClientQt.cpp 355 QMetaObject::invokeMethod(m_webPage, "shouldInterruptJavaScript", Qt::DirectConnection, Q_RETURN_ARG(bool, shouldInterrupt));
425 QMetaObject::invokeMethod(m_webPage, "repaintRequested", Qt::QueuedConnection, Q_ARG(QRect, windowRect));

Completed in 707 milliseconds

1 2 3