HomeSort by relevance Sort by last modified time
    Searched refs:shorty_len (Results 1 - 7 of 7) sorted by null

  /art/compiler/driver/
dex_compilation_unit.h 76 const char* GetShorty(uint32_t* shorty_len) const {
78 return dex_file_->GetMethodShorty(method_id, shorty_len);
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 234 uint32_t shorty_len) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
235 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len),
239 + StackArgumentStartFromShorty(is_static, shorty, shorty_len)),
398 uint32_t shorty_len) {
440 const char* shorty, uint32_t shorty_len, ShadowFrame* sf,
442 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {}
507 uint32_t shorty_len = 0; local
508 const char* shorty = method->GetShorty(&shorty_len);
509 BuildQuickShadowFrameVisitor shadow_frame_builder(sp, method->IsStatic(), shorty, shorty_len,
544 const char* shorty, uint32_t shorty_len,
636 uint32_t shorty_len = 0; local
779 uint32_t shorty_len; local
1643 uint32_t shorty_len = 0; local
1786 uint32_t shorty_len; local
1925 uint32_t shorty_len; local
    [all...]
  /art/runtime/
reflection.cc 39 explicit ArgArray(const char* shorty, uint32_t shorty_len)
40 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
41 size_t num_slots = shorty_len + 1; // +1 in case of receiver.
47 for (size_t i = 1; i < shorty_len; ++i) {
433 uint32_t shorty_len = 0; local
434 const char* shorty = method->GetShorty(&shorty_len);
436 ArgArray arg_array(shorty, shorty_len);
453 uint32_t shorty_len = 0; local
454 const char* shorty = method->GetShorty(&shorty_len);
456 ArgArray arg_array(shorty, shorty_len);
473 uint32_t shorty_len = 0; local
494 uint32_t shorty_len = 0; local
576 uint32_t shorty_len = 0; local
    [all...]
debugger.cc 3662 uint32_t shorty_len = 0; local
    [all...]
  /art/compiler/dex/
vreg_analysis.cc 475 int shorty_len = strlen(shorty); local
476 for (int i = 1; i < shorty_len; i++) {
  /art/runtime/interpreter/
interpreter.cc 438 uint32_t shorty_len = 0; local
439 const char* shorty = method->GetShorty(&shorty_len);
441 DCHECK_LT(shorty_pos + 1, shorty_len);
interpreter_common.cc 557 uint32_t shorty_len = 0; local
558 const char* shorty = method->GetShorty(&shorty_len);
579 DCHECK_LT(shorty_pos + 1, shorty_len);
    [all...]

Completed in 2152 milliseconds