HomeSort by relevance Sort by last modified time
    Searched defs:PrettyMethod (Results 1 - 4 of 4) sorted by null

  /art/libdexfile/dex/
method_reference.h 31 std::string PrettyMethod(bool with_signature = true) const {
32 return dex_file->PrettyMethod(index, with_signature);
dex_file.cc 573 std::string DexFile::PrettyMethod(uint32_t method_idx, bool with_signature) const {
  /art/runtime/
art_method.cc 113 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
136 DCHECK(!Runtime::Current()->IsAotCompiler()) << PrettyMethod();
358 "Invoking '%s' quick code=%p static=%d", PrettyMethod().c_str(),
370 << "Don't call compiled code when -Xint " << PrettyMethod();
385 LOG(INFO) << StringPrintf("Returned '%s' quick code=%p", PrettyMethod().c_str(),
389 LOG(INFO) << "Not invoking '" << PrettyMethod() << "' code=null";
401 CHECK(IsNative()) << PrettyMethod();
402 CHECK(native_method != nullptr) << PrettyMethod();
412 CHECK(IsNative()) << PrettyMethod();
531 << method->PrettyMethod();
    [all...]
  /art/compiler/optimizing/
nodes.cc 695 std::string HGraph::PrettyMethod(bool with_signature) const {
696 return dex_file_.PrettyMethod(method_idx_, with_signature);
    [all...]

Completed in 90 milliseconds