Searched refs:Test (Results 1 - 25 of 44) sorted by last modified time

12

/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 DPerformanceTest.java25 import org.junit.Test;
33 @Test
H A DQueryTest.java22 import org.junit.Test;
25 @Test
45 @Test
59 @Test
H A DSortTest.java25 import org.junit.Test;
28 @Test
/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/runtime/arch/arm/
H A Dquick_entrypoints_arm.S495 cmp r4, #68 @ Test if result type char == 'D'.
497 cmp r4, #70 @ Test if result type char == 'F'.
/art/runtime/arch/
H A Dmemcmp16_test.cc32 class MemCmp16Test : public testing::Test {
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S383 beq $a0, $a1, .Losr_fp_result # Test if result type char == 'D'
385 beq $a0, $a1, .Losr_fp_result # Test if result type char == 'F'
/art/runtime/base/
H A Darena_allocator_test.cc23 class ArenaAllocatorTest : public testing::Test {
34 TEST_F(ArenaAllocatorTest, Test) {
H A Dbit_vector_test.cc25 TEST(BitVector, Test) {
216 // Test copying an empty BitVector. Padding should fill `buf` with zeroes.
226 // Test copying when `bv.storage_` and `buf` are of equal lengths.
240 // Test copying when the `bv.storage_` is longer than `buf`. As long as
258 // Test zero padding when `bv.storage_` is shorter than `buf`.
H A Dhash_set_test.cc40 class HashSetTest : public testing::Test {
102 // Test removed.
/art/runtime/base/unix_file/
H A Drandom_access_file_test.h28 class RandomAccessFileTest : public testing::Test {
/art/runtime/
H A Dclass_linker.cc1219 CHECK(live_bitmap_->Test(klass)) << "Image method has unmarked declaring class";
3596 // Test that copied methods correctly can find their holder.
H A Dcommon_runtime_test.h183 using CommonRuntimeTest = CommonRuntimeTestBase<testing::Test>;
/art/runtime/gc/accounting/
H A Dbitmap.h171 ALWAYS_INLINE bool Test(size_t addr) const { function in class:art::gc::accounting::MemoryRangeBitmap
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 Dheap_bitmap.h38 bool Test(const mirror::Object* obj) SHARED_REQUIRES(Locks::heap_bitmap_lock_);
H A Dmod_union_table.cc510 if (card_bitmap_->Test(reinterpret_cast<uintptr_t>(addr))) {
527 return card_bitmap_->Test(addr);
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.cc212 if (visited->Test(obj)) {
H A Dspace_bitmap.h90 bool Test(const mirror::Object* obj) const;
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))) {
/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...]

Completed in 987 milliseconds

12