/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowNativePropertyValuesHolder.java | 48 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()
|
/external/robolectric/nativeruntime/src/main/java/org/robolectric/nativeruntime/ |
D | PropertyValuesHolderNatives.java | 21 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()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
D | CombinedEventsTestCase.java | 54 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
|
D | BreakpointOnCatchTest.java | 52 long methodID = getMethodID(classID, BreakpointOnCatchDebuggee.BREAKPOINT_METHOD_NAME); in testBreakpointOnCatch() local
|
D | SingleStepWithLocationTest.java | 80 long methodID = getMethodID(refTypeID, BREAKPOINT_METHOD_NAME); in testSingleStepToLocation() local
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | Location.java | 36 public long methodID; field in Location 52 public Location(byte tag, long classID, long methodID, long index) { in Location()
|
D | Method.java | 25 private final long methodID; field in Method 31 public Method(long methodID, String name, String signature, String genericSignature, in Method()
|
D | VmMirror.java | 143 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 …]
|
/external/webrtc/modules/utility/source/ |
D | jvm_android.cc | 105 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()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/ |
D | PopFrames002Test.java | 112 long methodID = getMethodID(refTypeID, methodToPop); in testPopSeveralFrames() local 328 long methodID = getMethodID(refTypeID, methodToPop); in testPopFramesWithInvokeMethods() local
|
D | PopFramesTest.java | 101 long methodID = getMethodID(refTypeID, methodToPop); in testPopFramesTest001() local
|
D | JDWPStackFrameAccessTest.java | 379 protected Frame.Variable getVariableInfo(long classID, long methodID, String variableName) { in getVariableInfo() 403 protected FrameInfo getFrameInfo(long threadID, long classID, long methodID) { in getFrameInfo()
|
D | JDWPStackFrameTestCase.java | 103 protected Frame.Variable[] jdwpGetVariableTable(long classID, long methodID) { in jdwpGetVariableTable()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/ |
D | SyntheticMethodsTest.java | 107 long methodID = methodsReply.getNextValueAsMethodID(); in runTestSyntheticMethods() local
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
D | Resume002Test.java | 79 long methodID = getMethodID(classID, BREAKPOINT_METHOD_NAME); in installBreakpoint() local
|
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
D | jitprofiling.c | 476 static unsigned int methodID = 0x100000; in iJIT_GetNewMethodID() local
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/ |
D | jitprofiling.c | 474 static unsigned int methodID = 0x100000; in iJIT_GetNewMethodID() local
|
/external/emma/core/java12/com/vladium/emma/report/ |
D | ClassItem.java | 123 final int methodID = method.getID (); in getAggregate() local
|
D | SrcFileItem.java | 151 final int methodID = method.getID (); in getAggregate() local
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/IntelJITEvents/ |
D | jitprofiling.c | 474 static unsigned int methodID = 0x100000; in iJIT_GetNewMethodID() local
|
/external/lzma/CPP/7zip/UI/GUI/ |
D | CompressDialog.cpp | 358 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
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/ |
D | JDWPTestCase.java | 240 protected ReplyPacket getLineTable(long classID, long methodID) { in getLineTable() 259 protected String getMethodName(long classID, long methodID) { in getMethodName()
|
/external/emma/core/java12/com/vladium/emma/report/lcov/ |
D | ReportGenerator.java | 230 final int methodID = method.getID(); in emitFileCoverage() local
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/ |
D | JDWPEventModifierTestCase.java | 61 long methodID = getMethodID(typeID, breakpoint.methodName); in createBreakpointEventBuilder() local
|
/external/angle/util/android/ |
D | AndroidWindow.cpp | 53 jmethodID methodID = jni->GetMethodID(clazz, "setRequestedOrientation", "(I)V"); in SetScreenOrientation() local
|