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()
536 const char* shorty = in InvokeWithVarArgs() local
539 ArgArray arg_array(shorty, shorty_len); in InvokeWithVarArgs()
541 InvokeWithArgArray(soa, method, &arg_array, &result, shorty); in InvokeWithVarArgs()
577 const char* shorty = in InvokeWithJValues() local
580 ArgArray arg_array(shorty, shorty_len); in InvokeWithJValues()
582 InvokeWithArgArray(soa, method, &arg_array, &result, shorty); in InvokeWithJValues()
620 const char* shorty = in InvokeVirtualOrInterfaceWithJValues() local
623 ArgArray arg_array(shorty, shorty_len); in InvokeVirtualOrInterfaceWithJValues()
625 InvokeWithArgArray(soa, method, &arg_array, &result, shorty); in InvokeVirtualOrInterfaceWithJValues()
664 const char* shorty = in InvokeVirtualOrInterfaceWithVarArgs() local
667 ArgArray arg_array(shorty, shorty_len); in InvokeVirtualOrInterfaceWithVarArgs()
669 InvokeWithArgArray(soa, method, &arg_array, &result, shorty); in InvokeVirtualOrInterfaceWithVarArgs()
760 const char* shorty; in InvokeMethod() local
761 if (!InvokeMethodImpl(soa, m, np_method, receiver, objects, &shorty, &result)) { in InvokeMethod()
764 return soa.AddLocalReference<jobject>(BoxPrimitive(Primitive::GetType(shorty[0]), result)); in InvokeMethod()
806 const char* shorty; in InvokeConstructor() local
807 InvokeMethodImpl(soa, constructor, np_method, receiver, objects, &shorty, &result); in InvokeConstructor()
820 const char* shorty; in BoxPrimitive() local
824 shorty = "LZ"; in BoxPrimitive()
828 shorty = "LB"; in BoxPrimitive()
832 shorty = "LC"; in BoxPrimitive()
836 shorty = "LD"; in BoxPrimitive()
840 shorty = "LF"; in BoxPrimitive()
844 shorty = "LI"; in BoxPrimitive()
848 shorty = "LJ"; in BoxPrimitive()
852 shorty = "LS"; in BoxPrimitive()
856 shorty = nullptr; in BoxPrimitive()
862 ArgArray arg_array(shorty, 2); in BoxPrimitive()
874 shorty); in BoxPrimitive()