Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptions.h219 typedef std::set<int> OptionSet; typedef
220 typedef std::vector<OptionSet> OptionSetVector;
223 OptionSet m_seen_options;
237 bool IsASubset(const OptionSet &set_a, const OptionSet &set_b);
239 size_t OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b,
240 OptionSet &diffs);
242 void OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b,
243 OptionSet &union_set);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptions.cpp50 bool Options::IsASubset(const OptionSet &set_a, const OptionSet &set_b) { in IsASubset()
52 OptionSet::const_iterator pos_a; in IsASubset()
53 OptionSet::const_iterator pos_b; in IsASubset()
70 size_t Options::OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetDiff()
73 OptionSet::const_iterator pos_a; in OptionsSetDiff()
74 OptionSet::const_iterator pos_b; in OptionsSetDiff()
90 void Options::OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetUnion()
92 OptionSet::const_iterator pos; in OptionsSetUnion()
93 OptionSet::iterator pos_union; in OptionsSetUnion()
126 OptionSet remaining_options; in VerifyOptions()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/tools/driver/
H A DDriver.h107 using OptionSet = std::set<char>; member
108 OptionSet m_seen_options;
/freebsd-12.1/contrib/llvm/lib/Support/
H A DCommandLine.cpp1797 SmallPtrSet<Option *, 32> OptionSet; // Duplicate option detection. in sortOpts() local
1810 if (!OptionSet.insert(I->second).second) in sortOpts()