Home
last modified time | relevance | path

Searched refs:strings_ (Results 1 – 4 of 4) sorted by relevance

/art/runtime/mirror/
Ddex_cache.h63 return OFFSET_OF_OBJECT_MEMBER(DexCache, strings_); in StringsOffset()
164 HeapReference<ObjectArray<String>> strings_; variable
/art/runtime/hprof/
Dhprof.cc557 for (std::pair<std::string, HprofStringId> p : strings_) { in WriteStringTable()
622 auto it = strings_.find(string); in LookupStringId()
623 if (it != strings_.end()) { in LookupStringId()
627 strings_.Put(string, id); in LookupStringId()
703 SafeMap<std::string, HprofStringId> strings_; member in art::hprof::Hprof
/art/compiler/
Dimage_writer.cc464 : strings_(strings), index_(index) { in StringCollector()
469 collector->strings_->SetWithoutChecks<false>(collector->index_++, obj->AsString()); in Callback()
477 Handle<mirror::ObjectArray<mirror::String>> strings_; member in art::StringCollector
485 : strings_(strings) { in StringLengthComparator()
488 return strings_->GetWithoutChecks(a)->GetLength() < strings_->GetWithoutChecks(b)->GetLength(); in operator ()()
492 Handle<mirror::ObjectArray<mirror::String>> strings_; member in art::StringLengthComparator
/art/runtime/
Dclass_linker_test.cc578 …offsets.push_back(CheckOffset(OFFSETOF_MEMBER(mirror::DexCache, strings_), "str… in DexCacheOffsets()