Home | History | Annotate | Download | only in runtime

Lines Matching full:is_static

86                                     bool is_static, const char* method_name,
89 const char* class_name = is_static ? "StaticLeafMethods" : "NonStaticLeafMethods";
96 if (is_static) {
110 *method = is_static ? c->FindDirectMethod(method_name, method_signature, sizeof(void*))
114 if (is_static) {
131 void InvokeNopMethod(bool is_static) {
135 ReflectionTestMakeExecutable(&method, &receiver, is_static, "nop", "()V");
140 void InvokeIdentityByteMethod(bool is_static) {
144 ReflectionTestMakeExecutable(&method, &receiver, is_static, "identity", "(B)B");
166 void InvokeIdentityIntMethod(bool is_static) {
170 ReflectionTestMakeExecutable(&method, &receiver, is_static, "identity", "(I)I");
191 void InvokeIdentityDoubleMethod(bool is_static) {
195 ReflectionTestMakeExecutable(&method, &receiver, is_static, "identity", "(D)D");
216 void InvokeSumIntIntMethod(bool is_static) {
220 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(II)I");
245 void InvokeSumIntIntIntMethod(bool is_static) {
249 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(III)I");
284 void InvokeSumIntIntIntIntMethod(bool is_static) {
288 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(IIII)I");
328 void InvokeSumIntIntIntIntIntMethod(bool is_static) {
332 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(IIIII)I");
377 void InvokeSumDoubleDoubleMethod(bool is_static) {
381 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(DD)D");
411 void InvokeSumDoubleDoubleDoubleMethod(bool is_static) {
415 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(DDD)D");
438 void InvokeSumDoubleDoubleDoubleDoubleMethod(bool is_static) {
442 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(DDDD)D");
468 void InvokeSumDoubleDoubleDoubleDoubleDoubleMethod(bool is_static) {
472 ReflectionTestMakeExecutable(&method, &receiver, is_static, "sum", "(DDDDD)D");