Searched refs:OptionSet (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | Options.h | 195 typedef std::set<int> OptionSet; typedef 196 typedef std::vector<OptionSet> OptionSetVector; 199 OptionSet m_seen_options; 213 bool IsASubset(const OptionSet &set_a, const OptionSet &set_b); 215 size_t OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b, 216 OptionSet &diffs); 218 void OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b, 219 OptionSet &union_set);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | Options.cpp | 48 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 …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/tools/driver/ |
| H A D | Driver.h | 90 using OptionSet = std::set<char>; member 91 OptionSet m_seen_options;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | CommandLine.cpp | 2277 SmallPtrSet<Option *, 32> OptionSet; // Duplicate option detection. in sortOpts() local 2290 if (!OptionSet.insert(I->second).second) in sortOpts()
|