Home | History | Annotate | Download | only in quick

Lines Matching refs:is_static

118   QuickArgumentVisitor(mirror::ArtMethod** sp, bool is_static,
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)
194 size_t args_in_regs = (is_static ? 0 : 1);
228 bool is_static, const char* shorty,
230 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {}
319 BuildQuickArgumentVisitor(mirror::ArtMethod** sp, bool is_static, const char* shorty,
322 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), soa_(soa), args_(args) {}
420 RememberFoGcArgumentVisitor(mirror::ArtMethod** sp, bool is_static, const char* shorty,
422 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), soa_(soa) {}