Lines Matching full:shorty
126 // Supported shorty types per instruction set. nullptr means that all are available.
489 shorty(nullptr),
536 static bool CanCompileShorty(const char* shorty, InstructionSet instruction_set) {
543 uint32_t shorty_size = strlen(shorty);
547 if (strchr(supported_types, shorty[i]) == nullptr) {
570 const char* shorty = dex_file.GetMethodShorty(dex_file.GetMethodId(method_idx));
571 if (!CanCompileShorty(shorty, cu.instruction_set)) {
572 VLOG(compiler) << "Unsupported shorty : " << shorty;
609 << "' with shorty : " << invoke_method_shorty;