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

References

gen/tools/lldb/source/Target/TargetProperties.inc
   32   {"extra-startup-command", OptionValue::eTypeArray, false, 16, nullptr, {}, "A list containing extra commands understood by the particular process plugin used.  For instance, to turn on debugserver logging set this to 'QSetLogging:bitmask=LOG_DEFAULT;'"},
   91   {"trap-handler-names", OptionValue::eTypeArray, true, 16, nullptr, {}, "A list of trap handler function names, e.g. a common Unix user process one is _sigtramp."},
tools/lldb/include/lldb/Interpreter/OptionValue.h
  133     case 1u << eTypeArray:
  134       return eTypeArray;
tools/lldb/include/lldb/Interpreter/OptionValueArray.h
   27   OptionValue::Type GetType() const override { return eTypeArray; }
tools/lldb/source/Interpreter/OptionValue.cpp
  106   if (GetType() == OptionValue::eTypeArray)
  112   if (GetType() == OptionValue::eTypeArray)
  463   case eTypeArray:
tools/lldb/source/Interpreter/OptionValueArray.cpp
   22     if ((GetType() == eTypeArray) && (m_type_mask != eTypeInvalid))
   43       case eTypeArray:
tools/lldb/source/Interpreter/OptionValueDictionary.cpp
   53       case eTypeArray:
tools/lldb/source/Interpreter/Property.cpp
   43   case OptionValue::eTypeArray: