OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:jMethod
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/bridge/jni/jsc/
JavaInstanceJSC.cpp
173
const JavaMethod*
jMethod
= static_cast<const JavaMethod*>(method);
174
LOG(LiveConnect, "JavaInstance::invokeMethod call %s %s on %p", UString(
jMethod
->name().impl()).utf8().data(),
jMethod
->signature(), m_instance->m_instance);
179
CString javaClassName =
jMethod
->parameterAt(i).utf8();
198
jmethodID methodId = getMethodID(obj,
jMethod
->name().utf8().data(),
jMethod
->signature());
199
handled = dispatchJNICall(exec, rootObject->nativeHandle(), obj,
jMethod
->isStatic(),
jMethod
->returnType(), methodId, jArgs.data(), result, callingURL, exceptionDescription);
210
result = callJNIMethod(m_instance->m_instance,
jMethod
->returnType(),
jMethod
->name().utf8().data(), jMethod->signature(), jArgs.data())
[
all
...]
/external/webkit/Source/WebCore/bridge/jni/v8/
JavaNPObjectV8.cpp
132
JavaMethod*
jMethod
= 0;
136
jMethod
= aMethod;
140
if (!
jMethod
) {
147
jArgs[i] = convertNPVariantToJavaValue(args[i],
jMethod
->parameterAt(i));
149
JavaValue jResult = instance->invokeMethod(
jMethod
, jArgs);
Completed in 44 milliseconds