Searched refs:OptionSet (Results 1 – 5 of 5) sorted by relevance
/freebsd/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/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() 69 OptionSet &diffs) { 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() 89 OptionSet &union_set) { in OptionsSetUnion() 90 OptionSet::const_iterator pos; in OptionsSetUnion() [all …]
|
/freebsd/contrib/llvm-project/lldb/tools/driver/ |
H A D | Driver.h | 89 using OptionSet = std::set<char>; member 90 OptionSet m_seen_options;
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | CommandLine.cpp | 2275 SmallPtrSet<Option *, 32> OptionSet; // Duplicate option detection. in sortOpts() local 2288 if (!OptionSet.insert(I->second).second) in sortOpts()
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
H A D | Clang.cpp | 4677 const bool OptionSet = in renderDebugOptions() local 4681 if ((DebuggerTuning != llvm::DebuggerKind::LLDB || OptionSet) && in renderDebugOptions()
|