Searched refs:copied (Results 1 – 12 of 12) sorted by relevance
/art/dex2oat/linker/ |
D | image_test.cc | 144 ArtMethod* copied = FindCopiedMethod(origin, impl_klass); in TEST_F() local 145 ASSERT_NE(nullptr, copied); in TEST_F() 147 ASSERT_EQ(code, copied->GetEntryPointFromQuickCompiledCodePtrSize(pointer_size)); in TEST_F() 167 copied = FindCopiedMethod(origin, iterablebase_klass); in TEST_F() 168 ASSERT_NE(nullptr, copied); in TEST_F() 169 code = copied->GetEntryPointFromQuickCompiledCodePtrSize(pointer_size); in TEST_F()
|
/art/test/810-checker-invoke-super-default/ |
D | info.txt | 1 Test that we don't store copied methods in BSS.
|
/art/test/181-default-methods/ |
D | info.txt | 1 Test for linking interface methods and creating copied methods,
|
/art/test/815-invokeinterface-default/ |
D | info.txt | 1 Regression test for the compiler where we used to pass a copied method as hidden
|
/art/test/661-classloader-allocator/ |
D | info.txt | 1 Regression test for copied methods which used to not
|
/art/runtime/mirror/ |
D | string.cc | 179 int32_t copied = length_this; in RepeatCharacters() local 181 for (; copied < limit - copied; copied <<= 1) { in RepeatCharacters() 182 memcpy(new_value + copied, new_value, copied * sizeof(T)); in RepeatCharacters() 184 memcpy(new_value + copied, new_value, (limit - copied) * sizeof(T)); in RepeatCharacters()
|
/art/test/810-checker-invoke-super-default/smali/ |
D | OtherClass.smali | 20 # The copied method would have a different method index.
|
D | Class.smali | 20 # The copied method would have a different method index.
|
/art/runtime/interpreter/mterp/ |
D | README.txt | 7 * Lines starting with % are python code. They will be copied as-is to
|
/art/runtime/ |
D | art_method.h | 273 const bool copied = (access_flags & (kAccIntrinsic | kAccCopied)) == kAccCopied; 275 DCHECK(!(IsMiranda(access_flags) || IsDefaultConflicting(access_flags)) || copied) 277 return copied;
|
D | hidden_api_test.cc | 221 bool copied = Copy(GetTestDexFileName("Main").c_str(), &file, &error_msg); in TestLocation() local 223 if (!copied && flush_close_result == 0) { in TestLocation() 228 ASSERT_TRUE(copied) << error_msg; in TestLocation()
|
/art/test/510-checker-try-catch/smali/ |
D | Runtime.smali | 254 # as integers is returned to prove that both vregs were copied.
|