Home
last modified time | relevance | path

Searched refs:empty (Results 1 – 25 of 81) sorted by relevance

1234

/art/runtime/
Dmem_map_test.cc136 ASSERT_TRUE(error_msg.empty()); in TEST_F()
144 ASSERT_TRUE(error_msg.empty()); in TEST_F()
158 ASSERT_TRUE(error_msg.empty()); in TEST_F()
174 ASSERT_TRUE(error_msg.empty()); in TEST_F()
184 ASSERT_TRUE(error_msg.empty()); in TEST_F()
194 ASSERT_TRUE(!error_msg.empty()); in TEST_F()
218 ASSERT_TRUE(error_msg.empty()); in TEST_F()
234 ASSERT_FALSE(error_msg.empty()); in TEST_F()
248 ASSERT_FALSE(error_msg.empty()); in TEST_F()
261 ASSERT_FALSE(error_msg.empty()); in TEST_F()
[all …]
Dzip_archive_test.cc37 ASSERT_TRUE(error_msg.empty()); in TEST_F()
40 ASSERT_TRUE(error_msg.empty()); in TEST_F()
48 ASSERT_TRUE(error_msg.empty()); in TEST_F()
Dreference_table.cc152 if (entries.empty()) { in Dump()
208 while (!sorted_entries.empty() && sorted_entries.back().IsNull()) { in Dump()
211 while (!sorted_entries.empty() && in Dump()
215 if (sorted_entries.empty()) { in Dump()
Dinstrumentation.cc491 have_method_entry_listeners_ = !method_entry_listeners_.empty(); in RemoveListener()
497 have_method_exit_listeners_ = !method_exit_listeners_.empty(); in RemoveListener()
503 have_method_unwind_listeners_ = !method_unwind_listeners_.empty(); in RemoveListener()
511 have_dex_pc_listeners_ = !modified->empty(); in RemoveListener()
525 have_field_read_listeners_ = !modified->empty(); in RemoveListener()
539 have_field_write_listeners_ = !modified->empty(); in RemoveListener()
553 have_exception_caught_listeners_ = !modified->empty(); in RemoveListener()
606 bool empty; in ConfigureStubs() local
609 empty = IsDeoptimizedMethodsEmpty(); // Avoid lock violation. in ConfigureStubs()
611 if (empty) { in ConfigureStubs()
[all …]
Doat_file.cc42 CHECK(!location.empty()); in CheckLocation()
59 CHECK(!oat_contents.empty()) << location; in OpenMemory()
73 CHECK(!filename.empty()) << location; in Open()
138 CHECK(!error_msg->empty()); in OpenElfFile()
148 CHECK(!location_.empty()); in OatFile()
202 DCHECK(!error_msg->empty()); in ElfFileOpen()
207 DCHECK(!error_msg->empty()); in ElfFileOpen()
Dthread_pool.cc147 if (waiting_count_ == GetThreadCount() && tasks_.empty()) { in GetTask()
170 if (started_ && !tasks_.empty()) { in TryGetTaskLocked()
188 while (!shutting_down_ && (waiting_count_ != GetThreadCount() || !tasks_.empty())) { in Wait()
Dsafe_map.h65 bool empty() const { return map_.empty(); } in empty() function
/art/dex2oat/
Ddex2oat.cc300 if (StartsWith(dot, "#") || dot.empty()) { in ReadImageClasses()
375 if (!boot_image_option.empty()) { in CreateOatFile()
425 if (!image_file_location.empty()) { in CreateOatFile()
1112 if (oat_filename.empty() && oat_fd == -1) { in dex2oat()
1116 if (!oat_filename.empty() && oat_fd != -1) { in dex2oat()
1120 if (!oat_symbols.empty() && oat_fd != -1) { in dex2oat()
1124 if (!oat_symbols.empty() && is_host) { in dex2oat()
1128 if (oat_fd != -1 && !image_filename.empty()) { in dex2oat()
1132 if (android_root.empty()) { in dex2oat()
1140 bool image = (!image_filename.empty()); in dex2oat()
[all …]
/art/test/098-ddmc/
Dexpected.txt1 Confirm empty
2 empty=Allocations[message header len: 15 entry header len: 9 stack frame len: 8 number of entries: …
12 Disable and confirm back to empty
/art/patchoat/
Dpatchoat.cc117 CHECK(!image_location.empty()) << "image file must have a filename."; in Patch()
206 CHECK(!image_location.empty()) << "image file must have a filename."; in Patch()
1072 cnt += (!patched_image_filename.empty()) ? 1 : 0; in patchoat()
1073 cnt += (!patched_image_location.empty()) ? 1 : 0; in patchoat()
1087 if ((!input_image_location.empty()) != have_output_image) { in patchoat()
1103 if (!input_oat_location.empty()) { in patchoat()
1114 if (!patched_image_location.empty()) { in patchoat()
1148 } else if (!patched_image_filename.empty()) { in patchoat()
1176 CHECK(!input_image_location.empty()); in patchoat()
1179 if (output_image_filename.empty()) { in patchoat()
[all …]
/art/compiler/optimizing/
Dparallel_move_test.cc31 if (!message_.str().empty()) { in EmitMove()
43 if (!message_.str().empty()) { in EmitSwap()
/art/runtime/gc/collector/
Dpartial_mark_sweep.cc29 : MarkSweep(heap, is_concurrent, name_prefix.empty() ? "partial " : name_prefix) { in PartialMarkSweep()
Dconcurrent_copying.h31 name_prefix + (name_prefix.empty() ? "" : " ") +
Dsticky_mark_sweep.cc29 name_prefix.empty() ? "sticky " : name_prefix) { in StickyMarkSweep()
/art/test/099-vmdebug/
Dexpected.txt14 Test tracing with empty filename
/art/runtime/base/
Dtiming_logger.cc172 CHECK(!open_stack.empty()) << "No starting split for ending split at index " << i; in CalculateTimingData()
181 if (!open_stack.empty()) { in CalculateTimingData()
190 CHECK(open_stack.empty()) << "Missing ending for timing " in CalculateTimingData()
Dbounded_fifo.h38 bool empty() const { in empty() function
Dhash_set_test.cc34 return item.empty(); in IsEmpty()
181 ASSERT_TRUE(std_set.empty()); in TEST_F()
207 return pair.first.empty(); in IsEmpty()
/art/test/098-ddmc/src/
DMain.java32 Allocations empty = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking() local
33 System.out.println("empty=" + empty); in testRecentAllocationTracking()
/art/test/003-omnibus-opcodes/src/
DArray.java85 static void checkRange32(int[] ints, int[] empty, int negVal1, int negVal2) { in checkRange32() argument
130 i = empty[1]; in checkRange32()
/art/runtime/verifier/
Dmethod_verifier-inl.h66 return !failure_messages_.empty(); in HasFailures()
Dreg_type.cc71 CHECK(!descriptor.empty()); in PrimitiveType()
962 CHECK(descriptor_.empty()) << *this; in CheckInvariants()
966 CHECK(!descriptor_.empty()) << *this; in CheckInvariants()
980 CHECK(!descriptor_.empty()) << *this; in CheckInvariants()
985 CHECK(!descriptor_.empty()) << *this; in CheckInvariants()
991 CHECK(descriptor_.empty()) << *this; in CheckInvariants()
998 CHECK(!descriptor_.empty()) << *this; in CheckInvariants()
1004 CHECK(descriptor_.empty()) << *this; in CheckInvariants()
/art/compiler/driver/
Ddex_compilation_unit.cc59 if (symbol_.empty()) { in GetSymbol()
/art/compiler/sea_ir/types/
Dtype_inference_visitor.h64 if (!crt_type_.empty()) { in GetType()
/art/runtime/base/unix_file/
Dfd_file_test.cc47 EXPECT_TRUE(file.GetPath().empty()); in TEST_F()

1234