Searched refs:origin (Results 1 – 4 of 4) sorted by relevance
/art/dex2oat/linker/ |
D | image_test.cc | 126 ArtMethod* origin = iface_klass->FindInterfaceMethod("defaultMethod", "()V", pointer_size); in TEST_F() local 127 ASSERT_NE(nullptr, origin); in TEST_F() 128 ASSERT_OBJ_PTR_EQ(origin->GetDeclaringClass(), iface_klass); in TEST_F() 129 const void* code = origin->GetEntryPointFromQuickCompiledCodePtrSize(pointer_size); in TEST_F() 136 ArtMethod* copied = FindCopiedMethod(origin, impl_klass); in TEST_F() 147 origin = iterable_klass->FindClassMethod( in TEST_F() 149 ASSERT_NE(nullptr, origin); in TEST_F() 150 ASSERT_FALSE(origin->IsDirect()); in TEST_F() 151 ASSERT_OBJ_PTR_EQ(origin->GetDeclaringClass(), iterable_klass); in TEST_F() 152 code = origin->GetEntryPointFromQuickCompiledCodePtrSize(pointer_size); in TEST_F() [all …]
|
D | image_test.h | 104 ArtMethod* FindCopiedMethod(ArtMethod* origin, ObjPtr<mirror::Class> klass) in FindCopiedMethod() argument 108 if (strcmp(origin->GetName(), m.GetName()) == 0 && in FindCopiedMethod() 109 origin->GetSignature() == m.GetSignature()) { in FindCopiedMethod()
|
D | oat_writer.cc | 1553 ArtMethod* origin = declaring_class->FindClassMethod( in StartClass() local 1557 CHECK(origin != nullptr); in StartClass() 1558 CHECK(!origin->IsDirect()); in StartClass() 1559 CHECK(origin->GetDeclaringClass() == declaring_class); in StartClass() 1562 origin->GetEntryPointFromQuickCompiledCodePtrSize(pointer_size_); in StartClass() 1564 methods_to_process_.push_back(std::make_pair(&method, origin)); in StartClass() 1640 ArtMethod* origin = p.second; in Postprocess() local 1642 origin->GetEntryPointFromQuickCompiledCodePtrSize(pointer_size_); in Postprocess()
|
/art/ |
D | NOTICE | 154 origin of the Work and reproducing the content of the NOTICE file.
|