/art/runtime/ |
D | mem_map_test.cc | 155 ASSERT_TRUE(error_msg.empty()); in TEST_F() 164 ASSERT_TRUE(error_msg.empty()); in TEST_F() 192 ASSERT_TRUE(error_msg.empty()); in TEST_F() 211 ASSERT_TRUE(error_msg.empty()); in TEST_F() 231 ASSERT_TRUE(error_msg.empty()); in TEST_F() 242 ASSERT_TRUE(error_msg.empty()); in TEST_F() 253 ASSERT_TRUE(!error_msg.empty()); in TEST_F() 293 ASSERT_TRUE(error_msg.empty()); in TEST_F() 311 ASSERT_FALSE(error_msg.empty()); in TEST_F() 327 ASSERT_FALSE(error_msg.empty()); in TEST_F() [all …]
|
D | zip_archive_test.cc | 37 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()
|
D | prebuilt_tools_test.cc | 44 if (tools_dir.empty()) { in TEST_F() 56 if (tools_dir.empty()) { in TEST_F()
|
D | oat_file_manager.cc | 115 if (!boot_oat_files.empty()) { in GetPrimaryOatFile() 381 if (shared_libraries.empty()) { in AreSharedLibrariesOk() 382 if (queue.empty()) { in AreSharedLibrariesOk() 397 while (!temp.empty() && index < shared_libraries_split.size() - 1) { in AreSharedLibrariesOk() 411 return temp.empty() && index == shared_libraries_split.size(); in AreSharedLibrariesOk() 474 while (!queue.empty()) { in HasCollisions() 509 while (!queue.empty()) { in HasCollisions() 515 while (!queue.empty()) { in HasCollisions() 685 DCHECK(dex_files.empty()); in OpenDexFilesFromOat() 688 if (dex_files.empty()) { in OpenDexFilesFromOat() [all …]
|
D | thread_pool.cc | 180 if (waiting_count_ == GetThreadCount() && tasks_.empty()) { in GetTask() 203 if (started_ && !tasks_.empty()) { in TryGetTaskLocked() 221 while (!shutting_down_ && (waiting_count_ != GetThreadCount() || !tasks_.empty())) { in Wait()
|
/art/profman/ |
D | profman.cc | 167 bool has_profiles = !profile_files_.empty() || !profile_files_fd_.empty(); in ParseArgs() 168 bool has_reference_profile = !reference_profile_file_.empty() || in ParseArgs() 175 if (!profile_files_.empty() && !profile_files_fd_.empty()) { in ParseArgs() 181 if (!reference_profile_file_.empty() && FdIsValid(reference_profile_file_fd_)) { in ParseArgs() 185 if ((!profile_files_.empty() && FdIsValid(reference_profile_file_fd_)) || in ParseArgs() 186 (!dump_only_ && !profile_files_fd_.empty() && !FdIsValid(reference_profile_file_fd_))) { in ParseArgs() 194 if (profile_files_.empty()) { in ProcessProfiles() 208 if (!filename.empty()) { in DumpOneProfile() 262 if (!profile_files_fd_.empty()) { in DumpProfileInfo() 274 if (!profile_files_.empty()) { in DumpProfileInfo() [all …]
|
/art/compiler/debug/dwarf/ |
D | dwarf_test.h | 67 if (!debug_info_data_.empty()) { in Objdump() 70 if (!debug_abbrev_data_.empty()) { in Objdump() 73 if (!debug_str_data_.empty()) { in Objdump() 76 if (!debug_line_data_.empty()) { in Objdump() 79 if (!debug_frame_data_.empty()) { in Objdump()
|
D | debug_abbrev_writer.h | 52 DCHECK(current_abbrev_.empty()); in StartAbbrev() 67 DCHECK(!current_abbrev_.empty()); in EndAbbrev()
|
/art/test/530-checker-loops1/src/ |
D | Main.java | 728 int[] empty = { }; in main() local 732 expectEquals(0, linear(empty)); in main() 734 expectEquals(0, linearDown(empty)); in main() 736 expectEquals(0, linearObscure(empty)); in main() 738 expectEquals(0, linearVeryObscure(empty)); in main() 740 expectEquals(0, hiddenStride(empty)); in main() 742 expectEquals(0, linearWhile(empty)); in main() 744 expectEquals(0, linearThreeWayPhi(empty)); in main() 746 expectEquals(0, linearFourWayPhi(empty)); in main() 748 expectEquals(0, wrapAroundThenLinear(empty)); in main() [all …]
|
/art/compiler/linker/arm/ |
D | relative_patcher_arm_base.cc | 44 DCHECK(!unprocessed_patches_.empty()); in ReserveSpaceEnd() 101 if (!unprocessed_patches_.empty() && in ReserveSpaceInternal() 150 while (!unprocessed_patches_.empty()) { in ReserveSpaceProcessPatches() 153 DCHECK(thunk_locations_.empty() || thunk_locations_.back() <= patch_offset); in ReserveSpaceProcessPatches() 164 if (thunk_locations_.empty() || in ReserveSpaceProcessPatches() 177 if (!thunk_locations_.empty()) { in ReserveSpaceProcessPatches()
|
/art/test/098-ddmc/ |
D | expected.txt | 1 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/runtime/base/ |
D | dchecked_vector.h | 115 using Base::empty; 134 reference front() { DCHECK(!empty()); return Base::front(); } in front() 135 const_reference front() const { DCHECK(!empty()); return Base::front(); } in front() 136 reference back() { DCHECK(!empty()); return Base::back(); } in back() 137 const_reference back() const { DCHECK(!empty()); return Base::back(); } in back() 146 void pop_back() { DCHECK(!empty()); Base::pop_back(); } in pop_back()
|
D | bounded_fifo.h | 41 bool empty() const { in empty() function
|
D | timing_logger.cc | 172 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()
|
/art/compiler/utils/ |
D | test_dex_file_builder.h | 39 CHECK(dex_file_data_.empty()); in AddString() 45 CHECK(dex_file_data_.empty()); in AddType() 52 CHECK(dex_file_data_.empty()); in AddField() 62 CHECK(dex_file_data_.empty()); in AddMethod() 83 CHECK(dex_file_data_.empty()); in Build() 110 header->string_ids_off_ = strings_.empty() ? 0u : string_ids_offset; in Build() 119 header->type_ids_off_ = types_.empty() ? 0u : type_ids_offset; in Build() 135 header->proto_ids_off_ = protos_.empty() ? 0u : proto_ids_offset; in Build() 144 header->field_ids_off_ = fields_.empty() ? 0u : field_ids_offset; in Build() 153 header->method_ids_off_ = methods_.empty() ? 0u : method_ids_offset; in Build()
|
/art/dex2oat/ |
D | dex2oat.cc | 681 boot_image_ = !image_filenames_.empty(); in ProcessOptions() 682 app_image_ = app_image_fd_ != -1 || !app_image_file_name_.empty(); in ProcessOptions() 694 if (oat_filenames_.empty() && oat_fd_ == -1) { in ProcessOptions() 698 if (!oat_filenames_.empty() && oat_fd_ != -1) { in ProcessOptions() 702 if (!parser_options->oat_symbols.empty() && oat_fd_ != -1) { in ProcessOptions() 706 if (!parser_options->oat_symbols.empty() && is_host_) { in ProcessOptions() 710 if (oat_fd_ != -1 && !image_filenames_.empty()) { in ProcessOptions() 714 if (!parser_options->oat_symbols.empty() && in ProcessOptions() 719 if (!image_filenames_.empty() && image_filenames_.size() != oat_filenames_.size()) { in ProcessOptions() 723 if (android_root_.empty()) { in ProcessOptions() [all …]
|
/art/runtime/gc/collector/ |
D | partial_mark_sweep.cc | 29 : MarkSweep(heap, is_concurrent, name_prefix.empty() ? "partial " : name_prefix) { in PartialMarkSweep()
|
D | sticky_mark_sweep.cc | 28 : PartialMarkSweep(heap, is_concurrent, name_prefix.empty() ? "sticky " : name_prefix) { in StickyMarkSweep()
|
/art/compiler/optimizing/ |
D | pretty_printer.h | 75 if (!predecessors.empty()) { in VisitBasicBlock() 84 if (!successors.empty()) { in VisitBasicBlock()
|
/art/compiler/debug/ |
D | elf_debug_writer.cc | 55 if (compilation_units.empty() || source_file != last_source_file) { in WriteDebugInfo() 70 if (!compilation_units.empty()) { in WriteDebugInfo() 80 if (!compilation_units.empty()) { in WriteDebugInfo()
|
/art/compiler/driver/ |
D | dex_compilation_unit.cc | 46 if (symbol_.empty()) { in GetSymbol()
|
/art/test/099-vmdebug/ |
D | expected.txt | 14 Test tracing with empty filename
|
/art/test/048-reflect-v8/ |
D | expected.txt | 21 Annotations by type, defined by class SingleUser with annotation Calendars: <empty> 53 Declared annnotations by type, defined by class SingleUser with annotation Calendars: <empty> 60 Declared annnotations by type, defined by class UserSub with annotation Calendar: <empty> 61 Declared annnotations by type, defined by class UserSub with annotation Calendars: <empty> 63 Declared annnotations by type, defined by class UserSub2 with annotation Calendars: <empty> 70 Annotations by type, defined by method singleUser with annotation Calendars: <empty> 96 Annotations by type, defined by method singleUser with annotation Calendars: <empty>
|
/art/cmdline/ |
D | memory_representation.h | 51 if (str.empty()) { in Name()
|
/art/runtime/verifier/ |
D | method_verifier-inl.h | 74 return !failure_messages_.empty(); in HasFailures()
|