Home
last modified time | relevance | path

Searched refs:OptionWasSet (Results 1 – 14 of 14) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSession.cpp131 m_options.m_clear.OptionWasSet()) { in DoExecute()
135 if (m_options.m_start_idx.OptionWasSet() && in DoExecute()
136 m_options.m_stop_idx.OptionWasSet() && in DoExecute()
137 m_options.m_count.OptionWasSet()) { in DoExecute()
143 m_options.m_start_idx.OptionWasSet(), in DoExecute()
146 m_options.m_stop_idx.OptionWasSet(), in DoExecute()
148 std::pair<bool, uint64_t> count(m_options.m_count.OptionWasSet(), in DoExecute()
H A DCommandObjectMemory.cpp115 const bool byte_size_option_set = byte_size_value.OptionWasSet(); in FinalizeSettings()
271 return m_num_per_line.OptionWasSet() || m_output_as_binary || in AnyOptionWasSet()
272 m_view_as_type.OptionWasSet() || m_offset.OptionWasSet() || in AnyOptionWasSet()
273 m_language_for_type.OptionWasSet(); in AnyOptionWasSet()
531 if (!m_format_options.GetCountValue().OptionWasSet()) in DoExecute()
608 } else if (m_format_options.GetCountValue().OptionWasSet()) { in DoExecute()
639 if (!m_format_options.GetFormatValue().OptionWasSet()) in DoExecute()
684 if (m_format_options.GetByteSizeValue().OptionWasSet() && in DoExecute()
689 if (!m_format_options.GetCountValue().OptionWasSet()) in DoExecute()
1045 if (m_memory_options.m_string.OptionWasSet()) { in DoExecute()
[all …]
H A DCommandObjectCommands.cpp167 if (m_options.m_stop_on_error.OptionWasSet() || in DoExecute()
168 m_options.m_silent_run.OptionWasSet() || in DoExecute()
169 m_options.m_stop_on_continue.OptionWasSet()) { in DoExecute()
170 if (m_options.m_stop_on_continue.OptionWasSet()) in DoExecute()
174 if (m_options.m_stop_on_error.OptionWasSet()) in DoExecute()
502 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingRawCommand()
504 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingRawCommand()
600 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingNormalCommand()
602 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingNormalCommand()
H A DCommandObjectTarget.cpp2810 if (m_uuid_option_group.GetOptionValue().OptionWasSet()) { in DoExecute()
2815 if (m_symbol_file.GetOptionValue().OptionWasSet()) in DoExecute()
2874 if (m_symbol_file.GetOptionValue().OptionWasSet()) in DoExecute()
2965 if (!m_file_option.GetOptionValue().OptionWasSet() && in DoExecute()
2976 if (m_file_option.GetOptionValue().OptionWasSet()) { in DoExecute()
2997 if (m_uuid_option_group.GetOptionValue().OptionWasSet()) { in DoExecute()
4526 assert(m_uuid_option_group.GetOptionValue().OptionWasSet()); in AddSymbolsForUUID()
4544 assert(m_file_option.GetOptionValue().OptionWasSet()); in AddSymbolsForFile()
4682 m_uuid_option_group.GetOptionValue().OptionWasSet(); in DoExecute()
4685 m_current_frame_option.GetOptionValue().OptionWasSet(); in DoExecute()
[all …]
H A DCommandObjectRegister.cpp226 !m_format_options.GetFormatValue().OptionWasSet(); in DoExecute()
H A DCommandObjectBreakpoint.cpp1724 if (m_bp_id.m_breakpoint.OptionWasSet()) { in DoExecute()
1741 if (m_bp_id.m_help_string.OptionWasSet()) in DoExecute()
1796 if (!m_name_options.m_name.OptionWasSet()) { in DoExecute()
1877 if (!m_name_options.m_name.OptionWasSet()) { in DoExecute()
H A DCommandObjectType.cpp1081 if (m_options.m_category_regex.OptionWasSet()) { in DoExecute()
1127 if (m_options.m_category_language.OptionWasSet()) { in DoExecute()
H A DCommandObjectPlatform.cpp396 if (m_option_working_dir.GetOptionValue().OptionWasSet()) in DoExecute()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupFormat.h67 return m_format.OptionWasSet() || m_byte_size.OptionWasSet() || in AnyOptionWasSet()
68 m_count.OptionWasSet(); in AnyOptionWasSet()
H A DOptionGroupOutputFile.h37 return m_file.OptionWasSet() || m_append.OptionWasSet(); in AnyOptionWasSet()
H A DOptionGroupMemoryTag.h33 bool AnyOptionWasSet() const { return m_show_tags.OptionWasSet(); } in AnyOptionWasSet()
H A DOptionValue.h253 bool OptionWasSet() const { return m_value_was_set; } in OptionWasSet() function
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp4615 bool is_default = !option_value->OptionWasSet(); in GetMaximumDepthOfChildrenToDisplay()
H A DProcess.cpp496 if (!value_sp->OptionWasSet() && platform_cache_line_size != 0) in Process()