Searched refs:GetShorty (Results 1 - 25 of 28) sorted by relevance

12

/art/runtime/
H A Dnative_bridge_art_interface.cc36 return m->GetShorty();
70 methods[count].signature = m.GetShorty();
82 methods[count].signature = m.GetShorty();
H A Dreflection.cc456 const char* shorty = method->GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty(&shorty_len);
486 const char* shorty = method->GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty(&shorty_len);
517 const char* shorty = method->GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty(&shorty_len);
548 const char* shorty = method->GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty(&shorty_len);
633 const char* shorty = np_method->GetShorty(&shorty_len);
H A Dart_method.h480 const char* GetShorty() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
482 return GetShorty(&unused_length);
485 const char* GetShorty(uint32_t* out_length) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
H A Dart_method.cc378 CHECK_STREQ(GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty(), shorty);
458 const char* shorty = method->GetShorty(&shorty_len);
H A Dart_method-inl.h338 inline const char* ArtMethod::GetShorty(uint32_t* out_length) { function in class:art::ArtMethod
H A Ddex_file.h745 const char* GetShorty(uint32_t proto_idx) const { function in class:art::DexFile
H A Dinstrumentation.cc991 char return_shorty = method->GetShorty(&length)[0];
H A Djava_vm_ext.cc228 const char* shorty = m->GetShorty();
H A Ddebugger.cc1529 uint16_t vreg_count = ArtMethod::NumArgRegisters(m->GetShorty());
1704 std::string shorty(m->GetShorty());
1730 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
3923 const char* shorty = m->GetShorty(&shorty_len);
4056 JDWP::JdwpTag result_tag = BasicTagFromDescriptor(m->GetShorty());
H A Dclass_linker.cc2409 if (strcmp("V", dex_file.GetShorty(method_id.proto_idx_)) == 0) {
3525 CHECK_STREQ(np->GetShorty(), prototype->GetShorty());
/art/runtime/entrypoints/interpreter/
H A Dinterpreter_entrypoints.cc53 result, method->GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty());
/art/compiler/driver/
H A Ddex_compilation_unit.h72 const char* GetShorty() const { function in class:art::DexCompilationUnit
77 const char* GetShorty(uint32_t* shorty_len) const { function in class:art::DexCompilationUnit
/art/compiler/jni/quick/mips/
H A Dcalling_convention_mips.cc50 return ReturnRegisterForShorty(GetShorty());
54 return ReturnRegisterForShorty(GetShorty());
/art/compiler/jni/quick/mips64/
H A Dcalling_convention_mips64.cc54 return ReturnRegisterForShorty(GetShorty());
58 return ReturnRegisterForShorty(GetShorty());
/art/compiler/jni/quick/x86/
H A Dcalling_convention_x86.cc57 return ReturnRegisterForShorty(GetShorty(), false);
61 return ReturnRegisterForShorty(GetShorty(), true);
/art/compiler/jni/quick/arm/
H A Dcalling_convention_arm.cc57 switch (GetShorty()[0]) {
67 switch (GetShorty()[0]) {
83 switch (GetShorty()[0]) {
/art/compiler/jni/quick/arm64/
H A Dcalling_convention_arm64.cc69 return ReturnRegisterForShorty(GetShorty());
73 return ReturnRegisterForShorty(GetShorty());
/art/compiler/jni/quick/x86_64/
H A Dcalling_convention_x86_64.cc55 return ReturnRegisterForShorty(GetShorty(), false);
59 return ReturnRegisterForShorty(GetShorty(), true);
/art/compiler/dex/quick/
H A Dmir_to_lir.cc58 i += m2l_->in_to_reg_storage_mapping_.GetShorty(i).IsWide() ? 2u : 1u) {
212 ShortyArg arg = in_to_reg_storage_mapping_.GetShorty(in_position);
224 ShortyArg arg = in_to_reg_storage_mapping_.GetShorty(in_position);
253 size = in_to_reg_storage_mapping_.GetShorty(data.src_arg).IsFP() ? kSingle : k32;
256 size = in_to_reg_storage_mapping_.GetShorty(data.src_arg).IsFP() ? kDouble : k64;
325 size = in_to_reg_storage_mapping_.GetShorty(data.src_arg).IsFP() ? kSingle : k32;
328 size = in_to_reg_storage_mapping_.GetShorty(data.src_arg).IsFP() ? kDouble : k64;
1454 Mir2Lir::ShortyArg Mir2Lir::InToRegStorageMapping::GetShorty(size_t in_position) { function in class:art::Mir2Lir::InToRegStorageMapping
H A Dmir_to_lir.h1907 ShortyArg GetShorty(size_t in_position);
/art/compiler/jni/quick/
H A Dcalling_convention.h182 const char* GetShorty() const { function in class:art::CallingConvention
/art/compiler/optimizing/
H A Dbuilder.h54 return_type_(Primitive::GetType(dex_compilation_unit_->GetShorty()[0])),
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc620 const char* shorty = non_proxy_method->GetShorty(&shorty_len);
752 const char* shorty = non_proxy_method->GetShorty(&shorty_len);
1815 const char* shorty = called->GetShorty(&shorty_len);
1897 char return_shorty_char = called->GetShorty()[0];
/art/runtime/interpreter/
H A Dinterpreter.cc325 num_regs = num_ins = ArtMethod::NumArgRegisters(method->GetShorty());
344 const char* shorty = method->GetShorty(&shorty_len);
H A Dinterpreter_common.cc528 const char* shorty = new_shadow_frame->GetMethod()->GetShorty(&shorty_len);

Completed in 349 milliseconds

12