Home
last modified time | relevance | path

Searched refs:OptionSet (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DOptions.h194 typedef std::set<int> OptionSet; typedef
195 typedef std::vector<OptionSet> OptionSetVector;
198 OptionSet m_seen_options;
212 bool IsASubset(const OptionSet &set_a, const OptionSet &set_b);
214 size_t OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b,
215 OptionSet &diffs);
217 void OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b,
218 OptionSet &union_set);
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptions.cpp48 bool Options::IsASubset(const OptionSet &set_a, const OptionSet &set_b) { in IsASubset()
50 OptionSet::const_iterator pos_a; in IsASubset()
51 OptionSet::const_iterator pos_b; in IsASubset()
68 size_t Options::OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetDiff()
71 OptionSet::const_iterator pos_a; in OptionsSetDiff()
72 OptionSet::const_iterator pos_b; in OptionsSetDiff()
88 void Options::OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetUnion()
90 OptionSet::const_iterator pos; in OptionsSetUnion()
91 OptionSet::iterator pos_union; in OptionsSetUnion()
124 OptionSet remaining_options; in VerifyOptions()
[all …]
/llvm-project-15.0.7/lldb/tools/driver/
H A DDriver.h90 using OptionSet = std::set<char>; member
91 OptionSet m_seen_options;
/llvm-project-15.0.7/llvm/lib/Support/
H A DCommandLine.cpp2202 SmallPtrSet<Option *, 32> OptionSet; // Duplicate option detection. in sortOpts() local
2215 if (!OptionSet.insert(I->second).second) in sortOpts()