reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Breakpoint/BreakpointOptions.cpp
  248   if (key && options_dict.HasKey(key)) {
  248   if (key && options_dict.HasKey(key)) {
  249     success = options_dict.GetValueForKeyAsBoolean(key, enabled);
  251       error.SetErrorStringWithFormat("%s key is not a boolean.", key);
  257   key = GetKey(OptionNames::OneShotState);
  258   if (key && options_dict.HasKey(key)) {
  258   if (key && options_dict.HasKey(key)) {
  259     success = options_dict.GetValueForKeyAsBoolean(key, one_shot);
  261       error.SetErrorStringWithFormat("%s key is not a boolean.", key);
  267   key = GetKey(OptionNames::AutoContinue);
  268   if (key && options_dict.HasKey(key)) {
  268   if (key && options_dict.HasKey(key)) {
  269     success = options_dict.GetValueForKeyAsBoolean(key, auto_continue);
  271       error.SetErrorStringWithFormat("%s key is not a boolean.", key);
  277   key = GetKey(OptionNames::IgnoreCount);
  278   if (key && options_dict.HasKey(key)) {
  278   if (key && options_dict.HasKey(key)) {
  279     success = options_dict.GetValueForKeyAsInteger(key, ignore_count);
  281       error.SetErrorStringWithFormat("%s key is not an integer.", key);
  287   key = GetKey(OptionNames::ConditionText);
  288   if (key && options_dict.HasKey(key)) {
  288   if (key && options_dict.HasKey(key)) {
  289     success = options_dict.GetValueForKeyAsString(key, condition_ref);
  291       error.SetErrorStringWithFormat("%s key is not an string.", key);