Home
last modified time | relevance | path

Searched refs:with_signature (Results 1 – 7 of 7) sorted by relevance

/art/libdexfile/dex/
Dmethod_reference.h31 std::string PrettyMethod(bool with_signature = true) const {
32 return dex_file->PrettyMethod(index, with_signature);
Ddex_file.cc573 std::string DexFile::PrettyMethod(uint32_t method_idx, bool with_signature) const { in PrettyMethod()
579 const DexFile::ProtoId* proto_id = with_signature ? &GetProtoId(method_id.proto_idx_) : nullptr; in PrettyMethod()
580 if (with_signature) { in PrettyMethod()
587 if (with_signature) { in PrettyMethod()
Ddex_file.h979 std::string PrettyMethod(uint32_t method_idx, bool with_signature = true) const;
/art/runtime/
Dart_method.cc777 std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) { in PrettyMethod() argument
781 return m->PrettyMethod(with_signature); in PrettyMethod()
784 std::string ArtMethod::PrettyMethod(bool with_signature) { in PrettyMethod() argument
794 return m->GetDexFile()->PrettyMethod(m->GetDexMethodIndex(), with_signature); in PrettyMethod()
Dart_method.h698 static std::string PrettyMethod(ArtMethod* m, bool with_signature = true)
700 std::string PrettyMethod(bool with_signature = true)
/art/compiler/optimizing/
Dnodes.cc695 std::string HGraph::PrettyMethod(bool with_signature) const { in PrettyMethod()
696 return dex_file_.PrettyMethod(method_idx_, with_signature); in PrettyMethod()
Dnodes.h564 std::string PrettyMethod(bool with_signature = true) const;