Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/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()
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 …]
/openbsd-src/gnu/llvm/lldb/tools/driver/
H A DDriver.h90 using OptionSet = std::set<char>; member
91 OptionSet m_seen_options;
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DCommandLine.cpp2277 SmallPtrSet<Option *, 32> OptionSet; // Duplicate option detection. in sortOpts() local
2290 if (!OptionSet.insert(I->second).second) in sortOpts()