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.cc571 bool with_signature, in AppendPrettyMethod() argument
578 const ProtoId* proto_id = with_signature ? &GetProtoId(method_id.proto_idx_) : nullptr; in AppendPrettyMethod()
579 if (with_signature) { in AppendPrettyMethod()
586 if (with_signature) { in AppendPrettyMethod()
Ddex_file.h806 void AppendPrettyMethod(uint32_t method_idx, bool with_signature, std::string* result) const;
812 ALWAYS_INLINE std::string PrettyMethod(uint32_t method_idx, bool with_signature = true) const {
814 AppendPrettyMethod(method_idx, with_signature, &result);
/art/runtime/
Dart_method.cc828 std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) { in PrettyMethod() argument
832 return m->PrettyMethod(with_signature); in PrettyMethod()
835 std::string ArtMethod::PrettyMethod(bool with_signature) { in PrettyMethod() argument
845 std::string res(m->GetDexFile()->PrettyMethod(m->GetDexMethodIndex(), with_signature)); in PrettyMethod()
846 if (with_signature && m->IsObsolete()) { in PrettyMethod()
Dart_method.h1015 static std::string PrettyMethod(ArtMethod* m, bool with_signature = true)
1017 std::string PrettyMethod(bool with_signature = true)
/art/compiler/optimizing/
Dnodes.cc912 std::string HGraph::PrettyMethod(bool with_signature) const { in PrettyMethod()
913 return dex_file_.PrettyMethod(method_idx_, with_signature); in PrettyMethod()
Dnodes.h670 std::string PrettyMethod(bool with_signature = true) const;