Home | History | Annotate | Download | only in runtime

Lines Matching refs:method

84   void ReflectionTestMakeExecutable(mirror::ArtMethod** method,
110 *method = is_static ? c->FindDirectMethod(method_name, method_signature)
112 CHECK(method != nullptr);
133 mirror::ArtMethod* method;
135 ReflectionTestMakeExecutable(&method, &receiver, is_static, "nop", "()V");
136 InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), nullptr);
141 mirror::ArtMethod* method;
143 ReflectionTestMakeExecutable(&method, &receiver, is_static, "identity", "(B)B");
147 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
151 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
155 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
159 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
165 mirror::ArtMethod* method;
167 ReflectionTestMakeExecutable(&method, &receiver, is_static, "identity", "(I)I");
171 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
175 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
179 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
183 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
189 mirror::ArtMethod* method;
191 ReflectionTestMakeExecutable(&method, &receiver, is_static, "identity", "(D)D");
195 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
199 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
203 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
207 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
213 mirror::ArtMethod* method;
215 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(II)I");
220 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
225 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
230 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
235 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
241 mirror::ArtMethod* method;
243 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(III)I");
249 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
255 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
261 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
267 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
273 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
279 mirror::ArtMethod* method;
281 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(IIII)I");
288 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
295 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
302 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
309 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
316 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
322 mirror::ArtMethod* method;
324 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(IIIII)I");
332 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
340 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
348 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
356 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
364 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
370 mirror::ArtMethod* method;
372 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(DD)D");
377 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
382 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
387 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
392 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
397 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
403 mirror::ArtMethod* method;
405 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(DDD)D");
411 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
417 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
423 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
429 mirror::ArtMethod* method;
431 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(DDDD)D");
438 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
445 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
452 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
458 mirror::ArtMethod* method;
460 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(DDDDD)D");
468 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
476 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
484 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
507 mirror::ArtMethod* method = klass->FindDirectMethod("main", "([Ljava/lang/String;)V");
508 ASSERT_TRUE(method != NULL);
517 InvokeWithJValues(soa, nullptr, soa.EncodeMethod(method), args);