Searched refs:LookupStrong (Results 1 – 6 of 6) sorted by relevance
/art/runtime/ |
D | intern_table_test.cc | 202 TEST_F(InternTableTest, LookupStrong) { in TEST_F() argument 218 ObjPtr<mirror::String> lookup_foo = intern_table.LookupStrong(soa.Self(), 3, "foo"); in TEST_F() 220 ObjPtr<mirror::String> lookup_bar = intern_table.LookupStrong(soa.Self(), 3, "bar"); in TEST_F() 222 ObjPtr<mirror::String> lookup_foobar = intern_table.LookupStrong(soa.Self(), 6, "foobar"); in TEST_F() 224 ObjPtr<mirror::String> lookup_foox = intern_table.LookupStrong(soa.Self(), 4, "foox"); in TEST_F() 226 ObjPtr<mirror::String> lookup_fooba = intern_table.LookupStrong(soa.Self(), 5, "fooba"); in TEST_F() 228 ObjPtr<mirror::String> lookup_foobaR = intern_table.LookupStrong(soa.Self(), 6, "foobaR"); in TEST_F() 233 ObjPtr<mirror::String> lookup_foobbS = intern_table.LookupStrong(soa.Self(), 6, "foobbS"); in TEST_F()
|
D | intern_table.cc | 97 ObjPtr<mirror::String> InternTable::LookupStrong(Thread* self, ObjPtr<mirror::String> s) { in LookupStrong() function in art::InternTable 102 ObjPtr<mirror::String> InternTable::LookupStrong(Thread* self, in LookupStrong() function in art::InternTable 260 ObjPtr<mirror::String> s = LookupStrong(self, utf16_length, utf8_data); in InternStrong()
|
D | intern_table.h | 142 ObjPtr<mirror::String> LookupStrong(Thread* self, ObjPtr<mirror::String> s) 145 ObjPtr<mirror::String> LookupStrong(Thread* self, uint32_t utf16_length, const char* utf8_data)
|
D | class_linker.cc | 1347 intern_table_.LookupStrong(Thread::Current(), referred_str); in TestObject() 8419 intern_table_->LookupStrong(Thread::Current(), utf16_length, utf8_data); in DoLookupString()
|
/art/dex2oat/linker/ |
D | image_writer.cc | 1834 const ObjPtr<mirror::String> found = image_info.intern_table_->LookupStrong(self, string); in FindInternedString() 1843 ObjPtr<mirror::String> found = runtime->GetInternTable()->LookupStrong(self, string); in FindInternedString() 2354 mirror::String* string = intern_table->LookupStrong(self, utf16_length, utf8_data).Ptr(); in CalculateNewObjectOffsets()
|
/art/runtime/jit/ |
D | jit_code_cache.cc | 695 CHECK(class_linker->GetInternTable()->LookupStrong(Thread::Current(), str) != nullptr); in DCheckRootsAreValid()
|