Home | History | Annotate | Download | only in interpreter

Lines Matching defs:shorty

35 static void InterpreterJni(Thread* self, ArtMethod* method, const StringPiece& shorty,
42 if (shorty == "L") {
53 } else if (shorty == "V") {
60 } else if (shorty == "Z") {
67 } else if (shorty == "BI") {
74 } else if (shorty == "II") {
81 } else if (shorty == "LL") {
95 } else if (shorty == "IIZ") {
102 } else if (shorty == "ILI") {
113 } else if (shorty == "SIZ") {
121 } else if (shorty == "VIZ") {
128 } else if (shorty == "ZLL") {
141 } else if (shorty == "ZILL") {
154 } else if (shorty == "VILII") {
164 } else if (shorty == "VLILII") {
179 << " shorty: " << shorty;
182 if (shorty == "L") {
193 } else if (shorty == "V") {
200 } else if (shorty == "LL") {
215 } else if (shorty == "III") {
224 << " shorty: " << shorty;
434 const char* shorty = method->GetShorty(&shorty_len);
437 switch (shorty[shorty_pos + 1]) {
481 InterpreterJni(self, method, shorty, receiver, args, result);