Lines Matching refs:shorty_
40 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) { in ArgArray()
111 switch (shorty_[i]) { in BuildArgArrayFromVarArgs()
133 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromVarArgs()
147 switch (shorty_[i]) { in BuildArgArrayFromJValues()
173 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromJValues()
188 switch (shorty_[i]) { in BuildArgArrayFromFrame()
207 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromFrame()
232 if (((shorty_[i] == 'L') && (arg != nullptr)) || ((arg == nullptr && shorty_[i] != 'L'))) { in BuildArgArrayFromObjectArray()
274 switch (shorty_[i]) { in BuildArgArrayFromObjectArray()
331 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromObjectArray()
343 const char* const shorty_; member in art::ArgArray