Lines Matching defs:this_arg
159 Object this_arg;
160 public InvokeReflect(Method m, Object this_arg) {
162 this.this_arg = this_arg;
167 System.out.println("\t\tReflective invoking: " + m + " args: [this: " + this_arg + "]");
168 m.invoke(this_arg);
174 Object this_arg;
175 public InvokeNative(Method m, Object this_arg) {
177 this.this_arg = this_arg;
182 System.out.println("\t\tNative invoking: " + m + " args: [this: " + this_arg + "]");
183 invokeNative(m, m.getDeclaringClass(), this_arg);
191 Object this_arg;
192 public InvokeNativeBool(Method m, Object this_arg) {
194 this.this_arg = this_arg;
199 System.out.println("\t\tNative invoking: " + m + " args: [this: " + this_arg + "]");
200 invokeNativeBool(m, m.getDeclaringClass(), this_arg);
208 Object this_arg;
209 public InvokeNativeObject(Method m, Object this_arg) {
211 this.this_arg = this_arg;
216 System.out.println("\t\tNative invoking: " + m + " args: [this: " + this_arg + "]");
217 invokeNativeObject(m, m.getDeclaringClass(), this_arg);
225 Object this_arg;
226 public InvokeNativeLong(Method m, Object this_arg) {
228 this.this_arg = this_arg;
233 System.out.println("\t\tNative invoking: " + m + " args: [this: " + this_arg + "]");
234 invokeNativeLong(m, m.getDeclaringClass(), this_arg);