Searched refs:current (Results 1 – 6 of 6) sorted by relevance
232 TimingLogger::ScopedSplit* current = timing_logger_->current_split_; in ~ScopedSplit() local233 while ((current != NULL) && (current != this)) { in ~ScopedSplit()234 delete current; in ~ScopedSplit()235 current = timing_logger_->current_split_; in ~ScopedSplit()238 CHECK(current != NULL) << "Missing scoped split (" << this->label_ in ~ScopedSplit()
216 const mirror::Object* current = sorted_entries[idx]; in Dump() local218 if (current == prev) { in Dump()221 … } else if (current->GetClass() == prev->GetClass() && GetElementCount(current) == element_count) { in Dump()
153 byte* current = Begin() + RoundUp(sizeof(ImageHeader), kObjectAlignment); in VerifyImageAllocations() local154 while (current < End()) { in VerifyImageAllocations()155 DCHECK_ALIGNED(current, kObjectAlignment); in VerifyImageAllocations()156 const mirror::Object* obj = reinterpret_cast<const mirror::Object*>(current); in VerifyImageAllocations()159 current += RoundUp(obj->SizeOf(), kObjectAlignment); in VerifyImageAllocations()
3 cause a control flow change to deviate from the current method.
201 const Class* current = this; in IsSubClass() local203 if (current == klass) { in IsSubClass()206 current = current->GetSuperClass(); in IsSubClass()207 } while (current != NULL); in IsSubClass()
995 move $a0, rSELF # pass Thread::current