Lines Matching refs:shorty
46 ArgArray(const char* shorty, uint32_t shorty_len) in ArgArray() argument
47 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) { in ArgArray()
55 char c = shorty[i]; in ArgArray()
452 const char* shorty) in InvokeWithArgArray() argument
458 method->Invoke(soa.Self(), args, arg_array->GetNumBytes(), result, shorty); in InvokeWithArgArray()
482 const char** shorty, in InvokeMethodImpl() argument
486 *shorty = np_method->GetShorty(&shorty_len); in InvokeMethodImpl()
487 ArgArray arg_array(*shorty, shorty_len); in InvokeMethodImpl()
493 InvokeWithArgArray(soa, m, &arg_array, result, *shorty); in InvokeMethodImpl()
546 const char* shorty = in InvokeWithVarArgs() local
549 ArgArray arg_array(shorty, shorty_len); in InvokeWithVarArgs()
551 InvokeWithArgArray(soa, method, &arg_array, &result, shorty); in InvokeWithVarArgs()
588 const char* shorty = in InvokeWithJValues() local
591 ArgArray arg_array(shorty, shorty_len); in InvokeWithJValues()
593 InvokeWithArgArray(soa, method, &arg_array, &result, shorty); in InvokeWithJValues()
631 const char* shorty = in InvokeVirtualOrInterfaceWithJValues() local
634 ArgArray arg_array(shorty, shorty_len); in InvokeVirtualOrInterfaceWithJValues()
636 InvokeWithArgArray(soa, method, &arg_array, &result, shorty); in InvokeVirtualOrInterfaceWithJValues()
675 const char* shorty = in InvokeVirtualOrInterfaceWithVarArgs() local
678 ArgArray arg_array(shorty, shorty_len); in InvokeVirtualOrInterfaceWithVarArgs()
680 InvokeWithArgArray(soa, method, &arg_array, &result, shorty); in InvokeVirtualOrInterfaceWithVarArgs()
772 const char* shorty; in InvokeMethod() local
773 if (!InvokeMethodImpl(soa, m, np_method, receiver, objects, &shorty, &result)) { in InvokeMethod()
776 return soa.AddLocalReference<jobject>(BoxPrimitive(Primitive::GetType(shorty[0]), result)); in InvokeMethod()
831 const char* shorty; in InvokeConstructor() local
832 InvokeMethodImpl(soa, constructor, np_method, receiver, objects, &shorty, &result); in InvokeConstructor()
845 const char* shorty; in BoxPrimitive() local
849 shorty = "LZ"; in BoxPrimitive()
853 shorty = "LB"; in BoxPrimitive()
857 shorty = "LC"; in BoxPrimitive()
861 shorty = "LD"; in BoxPrimitive()
865 shorty = "LF"; in BoxPrimitive()
869 shorty = "LI"; in BoxPrimitive()
873 shorty = "LJ"; in BoxPrimitive()
877 shorty = "LS"; in BoxPrimitive()
881 shorty = nullptr; in BoxPrimitive()
887 ArgArray arg_array(shorty, 2); in BoxPrimitive()
896 m->Invoke(soa.Self(), arg_array.GetArray(), arg_array.GetNumBytes(), &result, shorty); in BoxPrimitive()