Home
last modified time | relevance | path

Searched defs:methodID (Results 1 – 25 of 47) sorted by relevance

12

/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowNativePropertyValuesHolder.java48 protected static void nCallIntMethod(Object target, long methodID, int arg) { in nCallIntMethod()
53 protected static void nCallFloatMethod(Object target, long methodID, float arg) { in nCallFloatMethod()
58 protected static void nCallTwoIntMethod(Object target, long methodID, int arg1, int arg2) { in nCallTwoIntMethod()
64 Object target, long methodID, int arg1, int arg2, int arg3, int arg4) { in nCallFourIntMethod()
69 protected static void nCallMultipleIntMethod(Object target, long methodID, int[] args) { in nCallMultipleIntMethod()
74 protected static void nCallTwoFloatMethod(Object target, long methodID, float arg1, float arg2) { in nCallTwoFloatMethod()
80 Object target, long methodID, float arg1, float arg2, float arg3, float arg4) { in nCallFourFloatMethod()
85 protected static void nCallMultipleFloatMethod(Object target, long methodID, float[] args) { in nCallMultipleFloatMethod()
/aosp_15_r20/external/robolectric/nativeruntime/src/main/java/org/robolectric/nativeruntime/
H A DPropertyValuesHolderNatives.java21 public static native void nCallIntMethod(Object target, long methodID, int arg); in nCallIntMethod()
23 public static native void nCallFloatMethod(Object target, long methodID, float arg); in nCallFloatMethod()
25 public static native void nCallTwoIntMethod(Object target, long methodID, int arg1, int arg2); in nCallTwoIntMethod()
28 Object target, long methodID, int arg1, int arg2, int arg3, int arg4); in nCallFourIntMethod()
30 public static native void nCallMultipleIntMethod(Object target, long methodID, int[] args); in nCallMultipleIntMethod()
33 Object target, long methodID, float arg1, float arg2); in nCallTwoFloatMethod()
36 Object target, long methodID, float arg1, float arg2, float arg3, float arg4); in nCallFourFloatMethod()
38 public static native void nCallMultipleFloatMethod(Object target, long methodID, float[] args); in nCallMultipleFloatMethod()
/aosp_15_r20/frameworks/base/core/jni/
H A Dandroid_animation_PropertyValuesHolder.cpp77 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jint arg) in android_animation_PropertyValuesHolder_callIntMethod()
83 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jfloat arg) in android_animation_PropertyValuesHolder_callFloatMethod()
89 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, float arg1, float arg2) in android_animation_PropertyValuesHolder_callTwoFloatMethod()
95 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, float arg1, float arg2, in android_animation_PropertyValuesHolder_callFourFloatMethod()
102 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jfloatArray arg) in android_animation_PropertyValuesHolder_callMultipleFloatMethod()
116 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, int arg1, int arg2) in android_animation_PropertyValuesHolder_callTwoIntMethod()
122 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, int arg1, int arg2, in android_animation_PropertyValuesHolder_callFourIntMethod()
129 JNIEnv* env, jclass pvhObject, jobject target, jlong methodID, jintArray arg) in android_animation_PropertyValuesHolder_callMultipleIntMethod()
/aosp_15_r20/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DCombinedEventsTestCase.java54 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName); in printMethodLineTable() local
93 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName); in getMethodStartCodeIndex() local
117 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName); in getMethodEndCodeIndex() local
141 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName); in getMethodEntryLocation() local
170 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName); in getMethodEndLocation() local
H A DBreakpointOnCatchTest.java52 long methodID = getMethodID(classID, BreakpointOnCatchDebuggee.BREAKPOINT_METHOD_NAME); in testBreakpointOnCatch() local
H A DSingleStepWithLocationTest.java80 long methodID = getMethodID(refTypeID, BREAKPOINT_METHOD_NAME); in testSingleStepToLocation() local
/aosp_15_r20/external/webrtc/modules/utility/source/
H A Djvm_android.cc105 jboolean GlobalRef::CallBooleanMethod(jmethodID methodID, ...) { in CallBooleanMethod()
114 jint GlobalRef::CallIntMethod(jmethodID methodID, ...) { in CallIntMethod()
123 void GlobalRef::CallVoidMethod(jmethodID methodID, ...) { in CallVoidMethod()
166 jobject JavaClass::CallStaticObjectMethod(jmethodID methodID, ...) { in CallStaticObjectMethod()
174 jint JavaClass::CallStaticIntMethod(jmethodID methodID, ...) { in CallStaticIntMethod()
/aosp_15_r20/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DVmMirror.java143 long methodID = getMethodID(typeID, breakpoint.methodName); in setCountableBreakpoint() local
176 long methodID = getMethodID(classID, methodName); in setBreakpointAtMethodBegin() local
897 public String getMethodName(long classID, long methodID) { in getMethodName()
1250 long methodID = reply.getNextValueAsMethodID(); in getMethods() local
1894 public final List<Variable> getVariableTable(long classID, long methodID) { in getVariableTable()
2024 public final ReplyPacket getLineTable(long refType, long methodID) { in getLineTable()
2220 public final String getMethodSignature(long classID, long methodID) { in getMethodSignature()
2298 public final int getLineNumber(long classID, long methodID, long codeIndex) { in getLineNumber()
2336 public final long getLineCodeIndex(long classID, long methodID, in getLineCodeIndex()
2553 long methodID = getMethodID(classID, methodName); in invokeInstanceMethod() local
[all …]
H A DLocation.java36 public long methodID; field in Location
52 public Location(byte tag, long classID, long methodID, long index) { in Location()
H A DMethod.java25 private final long methodID; field in Method
31 public Method(long methodID, String name, String signature, String genericSignature, in Method()
/aosp_15_r20/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java1718 native static private void nCallIntMethod(Object target, long methodID, int arg); in nCallIntMethod()
1719 native static private void nCallFloatMethod(Object target, long methodID, float arg); in nCallFloatMethod()
1720 native static private void nCallTwoIntMethod(Object target, long methodID, int arg1, int arg2); in nCallTwoIntMethod()
1721 native static private void nCallFourIntMethod(Object target, long methodID, int arg1, int arg2, in nCallFourIntMethod()
1723 native static private void nCallMultipleIntMethod(Object target, long methodID, int[] args); in nCallMultipleIntMethod()
1724 native static private void nCallTwoFloatMethod(Object target, long methodID, float arg1, in nCallTwoFloatMethod()
1726 native static private void nCallFourFloatMethod(Object target, long methodID, float arg1, in nCallFourFloatMethod()
1728 native static private void nCallMultipleFloatMethod(Object target, long methodID, float[] args); in nCallMultipleFloatMethod()
/aosp_15_r20/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
DEAPMethod.java43 public EAPMethod(int methodID, Map<Integer, Set<AuthParam>> authParams) { in EAPMethod()
63 int methodID = payload.get() & 0xFF; in parse() local
/aosp_15_r20/external/lzma/CPP/7zip/UI/GUI/
H A DCompressDialog.cpp358 static bool IsMethodSupportedBySfx(int methodID) in IsMethodSupportedBySfx()
630 const int methodID = GetMethodID(); in CheckSFXControlsEnable() local
1658 int methodID; in SetMethod2() local
1886 const int methodID = GetMethodID(); in SetDictionary2() local
2238 const int methodID = GetMethodID(); in SetOrder2() local
2601 const int methodID = GetMethodID(); in SetNumThreads2() local
3516 const int methodID = cd->GetMethodID(); in SetPrec() local
3603 const int methodID = cd->GetMethodID(); in SetTimeMAC() local
/aosp_15_r20/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
H A DPopFrames002Test.java112 long methodID = getMethodID(refTypeID, methodToPop); in testPopSeveralFrames() local
328 long methodID = getMethodID(refTypeID, methodToPop); in testPopFramesWithInvokeMethods() local
H A DJDWPStackFrameAccessTest.java379 protected Frame.Variable getVariableInfo(long classID, long methodID, String variableName) { in getVariableInfo()
403 protected FrameInfo getFrameInfo(long threadID, long classID, long methodID) { in getFrameInfo()
H A DPopFramesTest.java101 long methodID = getMethodID(refTypeID, methodToPop); in testPopFramesTest001() local
/aosp_15_r20/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
H A DJDWPTestCase.java240 protected ReplyPacket getLineTable(long classID, long methodID) { in getLineTable()
259 protected String getMethodName(long classID, long methodID) { in getMethodName()
/aosp_15_r20/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
H A DSyntheticMethodsTest.java107 long methodID = methodsReply.getNextValueAsMethodID(); in runTestSyntheticMethods() local
/aosp_15_r20/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
H A DResume002Test.java79 long methodID = getMethodID(classID, BREAKPOINT_METHOD_NAME); in installBreakpoint() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c474 static unsigned int methodID = 0x100000; in iJIT_GetNewMethodID() local
/aosp_15_r20/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c476 static unsigned int methodID = 0x100000; in iJIT_GetNewMethodID() local
/aosp_15_r20/cts/hostsidetests/jvmti/base/jni/
H A Dtagging.cpp108 jmethodID methodID = env->GetMethodID(integer_class.get(), "<init>", "(I)V"); in Java_android_jvmti_cts_JvmtiTaggingTest_getTaggedObjects() local
/aosp_15_r20/external/emma/core/java12/com/vladium/emma/report/
H A DClassItem.java123 final int methodID = method.getID (); in getAggregate() local
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c474 static unsigned int methodID = 0x100000; in iJIT_GetNewMethodID() local
/aosp_15_r20/art/test/903-hello-tagging/
H A Dtagging.cc90 jmethodID methodID = env->GetMethodID(integer_class.get(), "<init>", "(I)V"); in Java_art_Test903_getTaggedObjects() local

12