Home
last modified time | relevance | path

Searched refs:methodId (Results 1 – 9 of 9) sorted by relevance

/external/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java79 MethodId<?, Constructable> methodId = GENERATED.getMethod( in testNewInstance() local
81 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); in testNewInstance()
109 MethodId<?, Void> methodId = GENERATED.getMethod(TypeId.VOID, "call"); in testVoidNoArgMemberMethod() local
110 Code code = dexMaker.declare(methodId, PUBLIC); in testVoidNoArgMemberMethod()
128 MethodId<?, Integer> methodId = GENERATED.getMethod(TypeId.INT, "call", TypeId.INT); in testInvokeStatic() local
129 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); in testInvokeStatic()
146 MethodId<?, Void> methodId = GENERATED.getMethod(TypeId.VOID, "call", TypeId.INT); in testCreateLocalMethodAsNull() local
148 Code code = dexMaker.declare(methodId, PUBLIC); in testCreateLocalMethodAsNull()
173 … MethodId<?, Integer> methodId = GENERATED.getMethod(TypeId.INT, "call", TEST_TYPE, TypeId.INT); in testInvokeVirtual() local
174 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); in testInvokeVirtual()
[all …]
/external/webkit/Source/WebCore/bridge/jni/
DJNIUtility.cpp355 jmethodID methodId = getMethodID(object, name, signature); in callJNIMethod() local
359 callJNIMethodIDA<void>(object, methodId, args); in callJNIMethod()
365 result.l = callJNIMethodIDA<jobject>(object, methodId, args); in callJNIMethod()
368 result.z = callJNIMethodIDA<jboolean>(object, methodId, args); in callJNIMethod()
371 result.b = callJNIMethodIDA<jbyte>(object, methodId, args); in callJNIMethod()
374 result.c = callJNIMethodIDA<jchar>(object, methodId, args); in callJNIMethod()
377 result.s = callJNIMethodIDA<jshort>(object, methodId, args); in callJNIMethod()
380 result.i = callJNIMethodIDA<jint>(object, methodId, args); in callJNIMethod()
383 result.j = callJNIMethodIDA<jlong>(object, methodId, args); in callJNIMethod()
386 result.f = callJNIMethodIDA<jfloat>(object, methodId, args); in callJNIMethod()
[all …]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
DRemoteMethodCallMessage.java58 public short methodId; field in RemoteMethodCallMessage
77 .append(methodId); in toString()
DObjectStore.java211 short methodId = methodIdInt.shortValue(); in invokeRemoteMethod() local
213 call.methodId = methodId; in invokeRemoteMethod()
276 if (call.methodId < 0 || call.methodId >= localObj.methods.length) in onMessage()
280 Method method = localObj.methods[call.methodId]; in onMessage()
DRmiSerializer.java180 buffer.putShort(call.methodId); in writeMethodCall()
204 call.methodId = buffer.getShort(); in readMethodCall()
/external/javassist/src/main/javassist/tools/rmi/
DAppletServer.java150 int methodId = in.readInt(); in processRMI() local
157 rvalue = convertRvalue(eo.methods[methodId].invoke(eo.object, in processRMI()
/external/dexmaker/
Dbug-8297640.patch10 + // private static native Object newInstance(Class<?> instantiationClass, long methodId);
/external/webkit/Source/WebCore/bridge/jni/jsc/
DJavaInstanceJSC.cpp198 jmethodID methodId = getMethodID(obj, jMethod->name().utf8().data(), jMethod->signature()); in invokeMethod() local
199 …bject->nativeHandle(), obj, jMethod->isStatic(), jMethod->returnType(), methodId, jArgs.data(), re… in invokeMethod()
/external/dexmaker/src/main/java/com/google/dexmaker/stock/
DProxyBuilder.java416 MethodId<?, ?> methodId = generatedType.getMethod(resultType, name, argTypes); in generateCodeForAllMethods() local
417 Code code = dexMaker.declare(methodId, PUBLIC); in generateCodeForAllMethods()