/external/dexmaker/src/test/java/com/google/dexmaker/ |
D | DexMakerTest.java | 79 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/ |
D | JNIUtility.cpp | 355 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/ |
D | RemoteMethodCallMessage.java | 58 public short methodId; field in RemoteMethodCallMessage 77 .append(methodId); in toString()
|
D | ObjectStore.java | 211 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()
|
D | RmiSerializer.java | 180 buffer.putShort(call.methodId); in writeMethodCall() 204 call.methodId = buffer.getShort(); in readMethodCall()
|
/external/javassist/src/main/javassist/tools/rmi/ |
D | AppletServer.java | 150 int methodId = in.readInt(); in processRMI() local 157 rvalue = convertRvalue(eo.methods[methodId].invoke(eo.object, in processRMI()
|
/external/dexmaker/ |
D | bug-8297640.patch | 10 + // private static native Object newInstance(Class<?> instantiationClass, long methodId);
|
/external/webkit/Source/WebCore/bridge/jni/jsc/ |
D | JavaInstanceJSC.cpp | 198 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/ |
D | ProxyBuilder.java | 416 MethodId<?, ?> methodId = generatedType.getMethod(resultType, name, argTypes); in generateCodeForAllMethods() local 417 Code code = dexMaker.declare(methodId, PUBLIC); in generateCodeForAllMethods()
|