Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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);
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DOptions.cpp47 bool Options::IsASubset(const OptionSet &set_a, const OptionSet &set_b) { in IsASubset()
49 OptionSet::const_iterator pos_a; in IsASubset()
50 OptionSet::const_iterator pos_b; in IsASubset()
67 size_t Options::OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetDiff()
70 OptionSet::const_iterator pos_a; in OptionsSetDiff()
71 OptionSet::const_iterator pos_b; in OptionsSetDiff()
87 void Options::OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetUnion()
89 OptionSet::const_iterator pos; in OptionsSetUnion()
90 OptionSet::iterator pos_union; in OptionsSetUnion()
123 OptionSet remaining_options; in VerifyOptions()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/tools/driver/
H A DDriver.h89 using OptionSet = std::set<char>; member
90 OptionSet m_seen_options;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp2129 SmallPtrSet<Option *, 32> OptionSet; // Duplicate option detection. in sortOpts() local
2142 if (!OptionSet.insert(I->second).second) in sortOpts()