Searched refs:Test (Results 1 - 25 of 44) sorted by relevance

12

/art/test/127-checker-secondarydex/src/
H A DMain.java33 Test t1 = new Test();
34 Test t2 = new Test();
35 Test t3 = null;
48 Test t = new Test();
H A DTest.java17 public class Test extends Super { class in inherits:Super
18 public void test(Test t) {
23 System.out.println("Test");
26 /// CHECK-START: java.lang.Integer Test.toInteger() builder (after)
34 return new String("Test");
/art/tools/ahat/test/
H A DInstanceUtilsTest.java24 import org.junit.Test;
27 @Test
34 @Test
41 @Test
48 @Test
55 @Test
62 @Test
69 @Test
76 @Test
83 @Test
[all...]
H A DNativeAllocationTest.java23 import org.junit.Test;
27 @Test
H A DQueryTest.java22 import org.junit.Test;
25 @Test
45 @Test
59 @Test
H A DPerformanceTest.java25 import org.junit.Test;
33 @Test
H A DSortTest.java25 import org.junit.Test;
28 @Test
/art/runtime/gc/accounting/
H A Dheap_bitmap-inl.h38 inline bool HeapBitmap::Test(const mirror::Object* obj) { function in class:art::gc::accounting::HeapBitmap
41 return bitmap->Test(obj);
45 return lo_bitmap->Test(obj);
H A Dspace_bitmap-inl.h46 DCHECK(Test(obj));
50 DCHECK(Test(obj));
55 inline bool SpaceBitmap<kAlignment>::Test(const mirror::Object* obj) const { function in class:art::gc::accounting::SpaceBitmap
71 if (Test(obj)) {
181 DCHECK_EQ(Test(obj), kSetBit);
H A Dspace_bitmap_test.cc51 EXPECT_EQ(bitmap_->Test(obj), ((reinterpret_cast<uintptr_t>(obj) & 0xF) != 0));
150 if (space_bitmap->Test(reinterpret_cast<mirror::Object*>(heap_begin + k))) {
H A Dheap_bitmap.h38 bool Test(const mirror::Object* obj) SHARED_REQUIRES(Locks::heap_bitmap_lock_);
H A Dbitmap.h171 ALWAYS_INLINE bool Test(size_t addr) const { function in class:art::gc::accounting::MemoryRangeBitmap
H A Dspace_bitmap.h90 bool Test(const mirror::Object* obj) const;
H A Dmod_union_table.cc510 if (card_bitmap_->Test(reinterpret_cast<uintptr_t>(addr))) {
527 return card_bitmap_->Test(addr);
/art/runtime/base/
H A Darena_allocator_test.cc23 class ArenaAllocatorTest : public testing::Test {
34 TEST_F(ArenaAllocatorTest, Test) {
/art/compiler/utils/
H A Ddedupe_set_test.cc54 TEST(DedupeSetTest, Test) {
/art/runtime/gc/collector/
H A Dconcurrent_copying.cc313 DCHECK(collector_->heap_->GetMarkBitmap()->Test(obj))
1233 DCHECK(collector_->heap_->GetMarkBitmap()->Test(obj)) << obj;
1380 DCHECK(collector_->region_space_bitmap_->Test(ref)) << ref;
1415 CHECK(region_space_bitmap_->Test(ref)) << ref;
1462 CHECK(region_space_bitmap_->Test(ref)) << ref;
1502 if (region_space_bitmap_->Test(obj)) {
1515 if (cc_bitmap->Test(obj)) {
1528 if (!is_los && mark_bitmap->Test(obj)) {
1530 } else if (is_los && los_bitmap->Test(obj)) {
1555 CHECK(cc_bitmap->Test(re
[all...]
H A Dmark_compact.cc452 DCHECK(objects_before_forwarding_->Test(obj));
470 return objects_before_forwarding_->Test(object) ? object : nullptr;
472 return mark_bitmap_->Test(object) ? object : nullptr;
499 if (UNLIKELY(objects_with_lockword_->Test(obj))) {
H A Dsemi_space.cc535 DCHECK(!live_bitmap->Test(forward_address));
560 DCHECK(!mark_bitmap->Test(forward_address));
747 DCHECK(!live_bitmap->Test(obj));
764 return mark_bitmap_->Test(obj) ? obj : nullptr;
H A Dmark_sweep.cc492 DCHECK(mark_bitmap_->Test(obj));
1100 if (!heap_->GetLiveBitmap()->Test(obj)) {
1233 if (!mark_bitmap->Test(obj)) {
1270 if (!large_mark_objects->Test(obj)) {
1435 return current_space_bitmap_->Test(object) ? object : nullptr;
1437 return mark_bitmap_->Test(object) ? object : nullptr;
/art/runtime/arch/
H A Dmemcmp16_test.cc32 class MemCmp16Test : public testing::Test {
/art/runtime/
H A Dcommon_runtime_test.h183 using CommonRuntimeTest = CommonRuntimeTestBase<testing::Test>;
H A Dparsed_options_test.cc27 class ParsedOptionsTest : public ::testing::Test {
/art/runtime/base/unix_file/
H A Drandom_access_file_test.h28 class RandomAccessFileTest : public testing::Test {
/art/test/004-JniTest/
H A Djni_test.cc280 // Test direct call.
298 // Test one-level call. Use System.loadLibrary().
338 // Test direct call.
350 // Test one-level call. Use VMStack.getStackClass1().
387 void Test() { function in class:art::JniCallNonvirtualVoidMethodTest
562 JniCallNonvirtualVoidMethodTest(env).Test();
582 const char* test_array = "Test";
587 // Test NewObject
596 // Test AllocObject and Call(Nonvirtual)VoidMethod
621 // Test wit
670 void Test() { function in class:art::JniCallDefaultMethodsTest
[all...]

Completed in 272 milliseconds

12