Lines Matching refs:shorty
48 std::string_view shorty, in InterpreterJni() argument
57 if (shorty == "L") { in InterpreterJni()
68 } else if (shorty == "V") { in InterpreterJni()
75 } else if (shorty == "Z") { in InterpreterJni()
82 } else if (shorty == "BI") { in InterpreterJni()
89 } else if (shorty == "II") { in InterpreterJni()
96 } else if (shorty == "LL") { in InterpreterJni()
109 } else if (shorty == "IIZ") { in InterpreterJni()
116 } else if (shorty == "ILI") { in InterpreterJni()
126 } else if (shorty == "SIZ") { in InterpreterJni()
134 } else if (shorty == "VIZ") { in InterpreterJni()
141 } else if (shorty == "ZLL") { in InterpreterJni()
152 } else if (shorty == "ZILL") { in InterpreterJni()
163 } else if (shorty == "VILII") { in InterpreterJni()
172 } else if (shorty == "VLILII") { in InterpreterJni()
185 << " shorty: " << shorty; in InterpreterJni()
188 if (shorty == "L") { in InterpreterJni()
199 } else if (shorty == "V") { in InterpreterJni()
206 } else if (shorty == "LL") { in InterpreterJni()
220 } else if (shorty == "III") { in InterpreterJni()
229 << " shorty: " << shorty; in InterpreterJni()
399 const char* shorty = method->GetShorty(&shorty_len); in EnterInterpreterFromInvoke() local
402 switch (shorty[shorty_pos + 1]) { in EnterInterpreterFromInvoke()
440 InterpreterJni(self, method, shorty, receiver, args, result); in EnterInterpreterFromInvoke()