Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDOptions.h313 typedef std::set<int> OptionSet; typedef
314 typedef std::vector<OptionSet> OptionSetVector;
318 OptionSet m_seen_options;
335 IsASubset (const OptionSet& set_a, const OptionSet& set_b);
338 OptionsSetDiff (const OptionSet &set_a, const OptionSet &set_b, OptionSet &diffs);
341 OptionsSetUnion (const OptionSet &set_a, const OptionSet &set_b, OptionSet &union_set);
/NextBSD/contrib/llvm/tools/lldb/source/Interpreter/
HDOptions.cpp67 Options::IsASubset (const OptionSet& set_a, const OptionSet& set_b) in IsASubset()
70 OptionSet::const_iterator pos_a; in IsASubset()
71 OptionSet::const_iterator pos_b; in IsASubset()
88 Options::OptionsSetDiff (const OptionSet& set_a, const OptionSet& set_b, OptionSet& diffs) in OptionsSetDiff()
91 OptionSet::const_iterator pos_a; in OptionsSetDiff()
92 OptionSet::const_iterator pos_b; in OptionsSetDiff()
110 Options::OptionsSetUnion (const OptionSet &set_a, const OptionSet &set_b, OptionSet &union_set) in OptionsSetUnion()
112 OptionSet::const_iterator pos; in OptionsSetUnion()
113 OptionSet::iterator pos_union; in OptionsSetUnion()
148 OptionSet remaining_options; in VerifyOptions()
[all …]
/NextBSD/contrib/llvm/tools/lldb/tools/driver/
HDDriver.h112 typedef std::set<char> OptionSet; typedef
113 OptionSet m_seen_options;
HDDriver.cpp308 Driver::OptionData::OptionSet options_seen; in ShowUsage()
309 Driver::OptionData::OptionSet::iterator pos; in ShowUsage()
/NextBSD/contrib/llvm/lib/Support/
HDCommandLine.cpp1456 SmallPtrSet<Option *, 128> OptionSet; // Duplicate option detection. in sortOpts() local
1469 if (!OptionSet.insert(I->second).second) in sortOpts()