Home
last modified time | relevance | path

Searched refs:copied (Results 1 – 12 of 12) sorted by relevance

/art/dex2oat/linker/
Dimage_test.cc144 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/
Dinfo.txt1 Test that we don't store copied methods in BSS.
/art/test/181-default-methods/
Dinfo.txt1 Test for linking interface methods and creating copied methods,
/art/test/815-invokeinterface-default/
Dinfo.txt1 Regression test for the compiler where we used to pass a copied method as hidden
/art/test/661-classloader-allocator/
Dinfo.txt1 Regression test for copied methods which used to not
/art/runtime/mirror/
Dstring.cc179 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/
DOtherClass.smali20 # The copied method would have a different method index.
DClass.smali20 # The copied method would have a different method index.
/art/runtime/interpreter/mterp/
DREADME.txt7 * Lines starting with % are python code. They will be copied as-is to
/art/runtime/
Dart_method.h273 const bool copied = (access_flags & (kAccIntrinsic | kAccCopied)) == kAccCopied;
275 DCHECK(!(IsMiranda(access_flags) || IsDefaultConflicting(access_flags)) || copied)
277 return copied;
Dhidden_api_test.cc221 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/
DRuntime.smali254 # as integers is returned to prove that both vregs were copied.