Home
last modified time | relevance | path

Searched refs:myMethod (Results 1 – 4 of 4) sorted by relevance

/aosp12/art/test/813-fp-args/src/
H A DMain.java22 myMethod(1, 2, 3, 4); in main()
37 public static void myMethod(float a, double b, float c, float d) { in myMethod() method in Main
/aosp12/art/test/046-reflect/
H A Dexpected-stdout.txt1 Method name is myMethod
8 Method name is myMethod
17 Method name is myMethod
27 myMethod: hi there 3.1415925 ✔ !
93 myMethod (I)I
/aosp12/art/test/046-reflect/src/
H A DMain.java378 targ.myMethod(17); in run()
766 public int myMethod(float floatArg) { in myMethod() method in SuperTarget
786 public int myMethod(int intarg) throws NullPointerException, IOException { in myMethod() method in Target
792 public int myMethod(String[] strarg, float f, char c) { in myMethod() method in Target
/aosp12/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_btservice_AdapterService.cpp1018 jmethodID myMethod = env->GetMethodID(myClass, methodName, "()[B"); in callByteArrayGetter() local
1019 return (jbyteArray)env->CallObjectMethod(object, myMethod); in callByteArrayGetter()
1025 jmethodID myMethod = env->GetMethodID(myClass, methodName, "()I"); in callIntGetter() local
1026 return env->CallIntMethod(object, myMethod); in callIntGetter()