Home | History | Annotate | Download | only in interpreter

Lines Matching full:shorty

132 static void InterpreterJni(Thread* self, ArtMethod* method, const StringPiece& shorty,
139 if (shorty == "L") {
150 } else if (shorty == "V") {
157 } else if (shorty == "Z") {
164 } else if (shorty == "BI") {
171 } else if (shorty == "II") {
178 } else if (shorty == "LL") {
191 } else if (shorty == "IIZ") {
198 } else if (shorty == "ILI") {
207 } else if (shorty == "SIZ") {
214 } else if (shorty == "VIZ") {
221 } else if (shorty == "ZLL") {
232 } else if (shorty == "ZILL") {
243 } else if (shorty == "VILII") {
252 } else if (shorty == "VLILII") {
265 << " shorty: " << shorty;
268 if (shorty == "L") {
279 } else if (shorty == "V") {
286 } else if (shorty == "LL") {
300 } else if (shorty == "III") {
309 << " shorty: " << shorty;
438 const char* shorty = method->GetShorty(&shorty_len);
441 switch (shorty[shorty_pos + 1]) {
487 InterpreterJni(self, method, shorty, receiver, args, result);