Home
last modified time | relevance | path

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

/llvm-project/clang/test/Analysis/Checkers/WebKit/
H A Duncounted-obj-arg.cpp95 template<typename E> class OptionSet {
99 static constexpr OptionSet fromRaw(StorageType rawValue) { in fromRaw()
100 return OptionSet(static_cast<E>(rawValue), FromRawValue); in fromRaw()
103 constexpr OptionSet() = default;
105 constexpr OptionSet(E e) in OptionSet()
116 constexpr bool containsAny(OptionSet optionSet) const { in containsAny()
120 constexpr bool containsAll(OptionSet optionSet) const { in containsAll()
124 constexpr void add(OptionSet optionSet) { m_storage |= optionSet.m_storage; }
126 constexpr void remove(OptionSet optionSet) in remove()
131 constexpr void set(OptionSet optionSe in set()
94 template<typename E> class OptionSet { global() class
104 constexpr OptionSet(E e) OptionSet() function in OptionSet
156 constexpr OptionSet(E e, InitializationTag) OptionSet() function in OptionSet
[all...]
/llvm-project/lldb/include/lldb/Interpreter/
H A DOptions.h195 typedef std::set<int> OptionSet; typedef
196 typedef std::vector<OptionSet> OptionSetVector;
199 OptionSet m_seen_options;
213 bool IsASubset(const OptionSet &set_a, const OptionSet &set_b);
215 size_t OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b,
216 OptionSet &diffs);
218 void OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b,
219 OptionSet &union_set);
/llvm-project/lldb/source/Interpreter/
H A DOptions.cpp83 bool Options::IsASubset(const OptionSet &set_a, const OptionSet &set_b) { in OptionsSetDiff()
85 OptionSet::const_iterator pos_a;
86 OptionSet::const_iterator pos_b;
103 size_t Options::OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetUnion()
104 OptionSet &diffs) { in OptionsSetUnion()
106 OptionSet::const_iterator pos_a; in VerifyOptions()
107 OptionSet::const_iterator pos_b; in VerifyOptions()
123 void Options::OptionsSetUnion(const OptionSet in VerifyOptions()
[all...]
/llvm-project/lldb/tools/driver/
H A DDriver.h89 using OptionSet = std::set<char>; member
90 OptionSet m_seen_options;
/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp2269 SmallPtrSet<Option *, 32> OptionSet; // Duplicate option detection. in SubNameCompare()
2282 if (!OptionSet.insert(I->second).second) in sortOpts()
2275 SmallPtrSet<Option *, 32> OptionSet; // Duplicate option detection. sortOpts() local
/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp4829 const bool OptionSet = in ConstructJob()
4833 if ((DebuggerTuning != llvm::DebuggerKind::LLDB || OptionSet) && in ConstructJob()
4601 const bool OptionSet = renderDebugOptions() local