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

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptions.h199 typedef std::set<int> OptionSet; typedef in class:lldb_private::Options
200 typedef std::vector<OptionSet> OptionSetVector;
203 OptionSet m_seen_options;
217 bool IsASubset(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
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/tools/driver/
H A DDriver.h89 using OptionSet = std::set<char>;
90 OptionSet m_seen_options;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptions.cpp47 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,
68 OptionSet &diffs) {
70 OptionSet::const_iterator pos_a;
71 OptionSet::const_iterator pos_b;
87 void Options::OptionsSetUnion(const OptionSet
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp2120 SmallPtrSet<Option *, 32> OptionSet; // Duplicate option detection. local
2133 if (!OptionSet.insert(I->second).second)

Completed in 110 milliseconds