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

References

tools/lldb/include/lldb/Interpreter/Options.h
  200   typedef std::vector<OptionSet> OptionSetVector;
  203   OptionSet m_seen_options;
  217   bool IsASubset(const OptionSet &set_a, const OptionSet &set_b);
  217   bool IsASubset(const OptionSet &set_a, const OptionSet &set_b);
  219   size_t OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b,
  219   size_t OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b,
  220                         OptionSet &diffs);
  222   void OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b,
  222   void OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b,
  223                        OptionSet &union_set);
tools/lldb/source/Interpreter/Options.cpp
   47 bool Options::IsASubset(const OptionSet &set_a, const OptionSet &set_b) {
   47 bool Options::IsASubset(const OptionSet &set_a, const OptionSet &set_b) {
   49   OptionSet::const_iterator pos_a;
   50   OptionSet::const_iterator pos_b;
   67 size_t Options::OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b,
   67 size_t Options::OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b,
   68                                OptionSet &diffs) {
   70   OptionSet::const_iterator pos_a;
   71   OptionSet::const_iterator pos_b;
   87 void Options::OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b,
   87 void Options::OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b,
   88                               OptionSet &union_set) {
   89   OptionSet::const_iterator pos;
   90   OptionSet::iterator pos_union;
  123         OptionSet remaining_options;
  634       OptionSet union_set;