Lines Matching defs:shorty_len
119 const char* shorty, uint32_t shorty_len)
121 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len),
122 args_in_regs_(ComputeArgsInRegs(is_static, shorty, shorty_len)),
123 num_params_((is_static ? 0 : 1) + shorty_len - 1), // +1 for this, -1 for return type
192 static size_t ComputeArgsInRegs(bool is_static, const char* shorty, uint32_t shorty_len)
195 for (size_t i = 0; i < shorty_len; i++) {
229 uint32_t shorty_len, ShadowFrame& sf, size_t first_arg_reg) :
230 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {}
320 uint32_t shorty_len, ScopedObjectAccessUnchecked* soa,
322 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), soa_(soa), args_(args) {}
421 uint32_t shorty_len, ScopedObjectAccessUnchecked* soa) :
422 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), soa_(soa) {}
520 uint32_t shorty_len;
522 dex_file->GetMethodShorty(dex_file->GetMethodId(dex_method_idx), &shorty_len);
523 RememberFoGcArgumentVisitor visitor(sp, invoke_type == kStatic, shorty, shorty_len, &soa);