Home | History | Annotate | Download | only in interpreter

Lines Matching defs: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") {
208 } else if (shorty == "SIZ") {
215 } else if (shorty == "VIZ") {
222 } else if (shorty == "ZLL") {
233 } else if (shorty == "ZILL") {
244 } else if (shorty == "VILII") {
253 } else if (shorty == "VLILII") {
266 << " shorty: " << shorty;
269 if (shorty == "L") {
280 } else if (shorty == "V") {
287 } else if (shorty == "LL") {
301 } else if (shorty == "III") {
310 << " shorty: " << shorty;
439 const char* shorty = method->GetShorty(&shorty_len);
442 switch (shorty[shorty_pos + 1]) {
488 InterpreterJni(self, method, shorty, receiver, args, result);