Searched refs:GetName (Results 1 - 25 of 73) sorted by relevance

123

/art/test/960-default-smali/src/
H A DGreeter3.java17 public String GetName(); method in interface:Greeter3
19 return "Hello " + GetName();
H A DD.java17 public String GetName() { method in class:D
/art/runtime/base/
H A Dtiming_logger_test.cc35 EXPECT_STREQ(timings[0].GetName(), split1name);
54 EXPECT_STREQ(timings[0].GetName(), split1name);
57 EXPECT_STREQ(timings[2].GetName(), split2name);
60 EXPECT_STREQ(timings[4].GetName(), split3name);
94 EXPECT_STREQ(timings[idx_1].GetName(), name1);
95 EXPECT_STREQ(timings[idx_2].GetName(), name2);
96 EXPECT_STREQ(timings[idx_3].GetName(), name3);
97 EXPECT_STREQ(timings[idx_4].GetName(), name4);
98 EXPECT_STREQ(timings[idx_5].GetName(), name5);
H A Dtiming_logger.cc75 AddPair(timings[i].GetName(), timing_data.GetExclusiveTime(i));
159 if (timings_[i].IsStartTiming() && strcmp(timings_[i].GetName(), name) == 0) {
191 << timings_[open_stack.back()].GetName() << " at index " << open_stack.back();
226 os << " " << timings_[i].GetName() << "\n";
H A Dtiming_logger.h95 const char* GetName() const { function in class:art::TimingLogger::Timing
/art/runtime/gc/collector/
H A Dpartial_mark_sweep.cc30 cumulative_timings_.SetName(GetName());
H A Dsticky_mark_sweep.cc29 cumulative_timings_.SetName(GetName());
H A Dgarbage_collector.cc82 ScopedTrace trace(StringPrintf("%s %s GC", PrettyCause(gc_cause), GetName()));
208 os << GetName() << " total time: " << PrettyDuration(total_ns)
210 << GetName() << " freed: " << freed_objects
212 << GetName() << " throughput: " << freed_objects / seconds << "/s / "
H A Dgarbage_collector.h139 const char* GetName() const { function in class:art::gc::collector::GarbageCollector
/art/runtime/gc/space/
H A Dspace.cc33 os << GetName() << ":" << GetGcRetentionPolicy();
136 std::string temp_name(live_bitmap_->GetName());
137 live_bitmap_->SetName(mark_bitmap_->GetName());
H A Dmalloc_space.cc140 CHECK_MEMORY_CALL(mprotect, (original_end, increment, PROT_READ | PROT_WRITE), GetName());
151 CHECK_MEMORY_CALL(madvise, (new_end, size, MADV_DONTNEED), GetName());
152 CHECK_MEMORY_CALL(mprotect, (new_end, size, PROT_NONE), GetName());
214 VLOG(heap) << "Failed creating zygote space from space " << GetName();
228 << ",name=\"" << GetName() << "\"]";
H A Dimage_space.h87 return GetName();
H A Dzygote_space.cc76 << ",name=\"" << GetName() << "\"]";
/art/test/570-checker-osr/
H A Dosr.cc39 std::string m_name(m->GetName());
99 std::string m_name(m->GetName());
133 std::string m_name(m->GetName());
/art/runtime/gc/accounting/
H A Dremembered_set.h70 const std::string& GetName() const { function in class:art::gc::accounting::RememberedSet
H A Dmod_union_table.h91 const std::string& GetName() const { function in class:art::gc::accounting::ModUnionTable
/art/test/004-ReferenceMap/
H A Dstack_walk_refmap_jni.cc45 std::string m_name(m->GetName());
/art/test/004-StackWalk/
H A Dstack_walk_jni.cc41 StringPiece m_name(m->GetName());
/art/test/466-get-live-vreg/
H A Dget_live_vreg_jni.cc36 std::string m_name(m->GetName());
/art/test/543-env-long-ref/
H A Denv_long_ref.cc39 std::string m_name(m->GetName());
/art/test/595-profile-saving/
H A Dprofile-saving.cc43 std::string m_name(m->GetName());
/art/test/461-get-reference-vreg/
H A Dget_reference_vreg_jni.cc38 std::string m_name(m->GetName());
/art/runtime/
H A Dnative_bridge_art_interface.cc66 methods[count].name = m.GetName();
H A Dclass_linker_test.cc166 EXPECT_TRUE(method->GetName() != nullptr);
183 EXPECT_TRUE(field->GetName() != nullptr);
437 StringPiece field_name(field->GetName());
446 StringPiece field_name(field->GetName());
746 EXPECT_STREQ(JavaLangObject->GetInstanceField(0)->GetName(), "shadow$_klass_");
747 EXPECT_STREQ(JavaLangObject->GetInstanceField(1)->GetName(), "shadow$_monitor_");
749 EXPECT_STREQ(JavaLangObject->GetInstanceField(2)->GetName(), "shadow$_x_rb_ptr_");
750 EXPECT_STREQ(JavaLangObject->GetInstanceField(3)->GetName(), "shadow$_x_xpadding_");
862 EXPECT_STREQ("value", c->GetIFieldsPtr()->At(0).GetName());
864 EXPECT_STREQ("value", c->GetIFieldsPtr()->At(0).GetName());
[all...]
/art/runtime/mirror/
H A Dclass.cc151 String* name = h_this->GetName();
398 if (name == method.GetName() && method.GetSignature() == signature) {
408 if (name == method.GetName() && signature == method.GetSignature()) {
463 if (name == np_method->GetName()) {
478 if (name == np_method->GetName() && np_method->GetSignature() == signature) {
489 if (name == np_method->GetName() && signature == np_method->GetSignature()) {
511 if (name == np_method->GetName()) {
619 DCHECK_STREQ(method.GetName(), "<clinit>");
643 int result = StringPiece(field.GetName()).Compare(name);
659 if (name == field.GetName()
[all...]

Completed in 2508 milliseconds

123