Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSession.cpp134 m_options.m_clear.OptionWasSet()) { in DoExecute()
138 if (m_options.m_start_idx.OptionWasSet() && in DoExecute()
139 m_options.m_stop_idx.OptionWasSet() && in DoExecute()
140 m_options.m_count.OptionWasSet()) { in DoExecute()
146 m_options.m_start_idx.OptionWasSet(), in DoExecute()
149 m_options.m_stop_idx.OptionWasSet(), in DoExecute()
151 std::pair<bool, uint64_t> count(m_options.m_count.OptionWasSet(), in DoExecute()
H A DCommandObjectMemory.cpp112 const bool byte_size_option_set = byte_size_value.OptionWasSet(); in FinalizeSettings()
268 return m_num_per_line.OptionWasSet() || m_output_as_binary || in AnyOptionWasSet()
269 m_view_as_type.OptionWasSet() || m_offset.OptionWasSet() || in AnyOptionWasSet()
270 m_language_for_type.OptionWasSet(); in AnyOptionWasSet()
532 if (!m_format_options.GetCountValue().OptionWasSet()) in DoExecute()
606 } else if (m_format_options.GetCountValue().OptionWasSet()) { in DoExecute()
637 if (!m_format_options.GetFormatValue().OptionWasSet()) in DoExecute()
682 if (m_format_options.GetByteSizeValue().OptionWasSet() && in DoExecute()
687 if (!m_format_options.GetCountValue().OptionWasSet()) in DoExecute()
1040 if (m_memory_options.m_string.OptionWasSet()) in DoExecute()
[all …]
H A DCommandObjectCommands.cpp139 if (m_options.m_stop_on_error.OptionWasSet() || in DoExecute()
140 m_options.m_silent_run.OptionWasSet() || in DoExecute()
141 m_options.m_stop_on_continue.OptionWasSet()) { in DoExecute()
142 if (m_options.m_stop_on_continue.OptionWasSet()) in DoExecute()
146 if (m_options.m_stop_on_error.OptionWasSet()) in DoExecute()
462 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingRawCommand()
464 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingRawCommand()
557 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingNormalCommand()
559 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingNormalCommand()
H A DCommandObjectTarget.cpp2462 if (m_uuid_option_group.GetOptionValue().OptionWasSet()) { in DoExecute()
2467 if (m_symbol_file.GetOptionValue().OptionWasSet()) in DoExecute()
2521 if (m_uuid_option_group.GetOptionValue().OptionWasSet()) in DoExecute()
2524 if (m_symbol_file.GetOptionValue().OptionWasSet()) in DoExecute()
2618 if (!m_file_option.GetOptionValue().OptionWasSet() && in DoExecute()
2619 !m_uuid_option_group.GetOptionValue().OptionWasSet()) { in DoExecute()
2629 if (m_file_option.GetOptionValue().OptionWasSet()) { in DoExecute()
2650 if (m_uuid_option_group.GetOptionValue().OptionWasSet()) { in DoExecute()
2671 if (m_slide_option.GetOptionValue().OptionWasSet()) { in DoExecute()
4149 m_uuid_option_group.GetOptionValue().OptionWasSet(); in DoExecute()
[all …]
H A DCommandObjectBreakpoint.cpp1736 if (m_bp_id.m_breakpoint.OptionWasSet()) { in DoExecute()
1752 if (m_bp_id.m_help_string.OptionWasSet()) in DoExecute()
1807 if (!m_name_options.m_name.OptionWasSet()) { in DoExecute()
1892 if (!m_name_options.m_name.OptionWasSet()) { in DoExecute()
H A DCommandObjectType.cpp1061 if (m_options.m_category_regex.OptionWasSet()) { in DoExecute()
1145 if (m_options.m_category_language.OptionWasSet()) { in DoExecute()
H A DCommandObjectPlatform.cpp398 if (m_option_working_dir.GetOptionValue().OptionWasSet()) in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupFormat.h61 return m_format.OptionWasSet() || m_byte_size.OptionWasSet() || in AnyOptionWasSet()
62 m_count.OptionWasSet(); in AnyOptionWasSet()
H A DOptionGroupOutputFile.h37 return m_file.OptionWasSet() || m_append.OptionWasSet(); in AnyOptionWasSet()
H A DOptionValue.h303 bool OptionWasSet() const { return m_value_was_set; } in OptionWasSet() function
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp467 if (!value_sp->OptionWasSet() && platform_cache_line_size != 0) in Process()