Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/
DOptions.h307 typedef std::set<int> OptionSet; typedef
308 typedef std::vector<OptionSet> OptionSetVector;
312 OptionSet m_seen_options;
329 IsASubset (const OptionSet& set_a, const OptionSet& set_b);
332 OptionsSetDiff (const OptionSet &set_a, const OptionSet &set_b, OptionSet &diffs);
335 OptionsSetUnion (const OptionSet &set_a, const OptionSet &set_b, OptionSet &union_set);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Interpreter/
DOptions.cpp69 Options::IsASubset (const OptionSet& set_a, const OptionSet& set_b) in IsASubset()
72 OptionSet::const_iterator pos_a; in IsASubset()
73 OptionSet::const_iterator pos_b; in IsASubset()
90 Options::OptionsSetDiff (const OptionSet& set_a, const OptionSet& set_b, OptionSet& diffs) in OptionsSetDiff()
93 OptionSet::const_iterator pos_a; in OptionsSetDiff()
94 OptionSet::const_iterator pos_b; in OptionsSetDiff()
112 Options::OptionsSetUnion (const OptionSet &set_a, const OptionSet &set_b, OptionSet &union_set) in OptionsSetUnion()
114 OptionSet::const_iterator pos; in OptionsSetUnion()
115 OptionSet::iterator pos_union; in OptionsSetUnion()
150 OptionSet remaining_options; in VerifyOptions()
[all …]
/freebsd-10-stable/contrib/llvm/tools/lldb/tools/driver/
DDriver.h93 typedef std::set<char> OptionSet; typedef
94 OptionSet m_seen_options;
DDriver.cpp292 Driver::OptionData::OptionSet options_seen; in ShowUsage()
293 Driver::OptionData::OptionSet::iterator pos; in ShowUsage()
/freebsd-10-stable/contrib/llvm/lib/Support/
DCommandLine.cpp1386 SmallPtrSet<Option*, 128> OptionSet; // Duplicate option detection. in sortOpts() local
1399 if (!OptionSet.insert(I->second)) in sortOpts()