Searched refs:set_b (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | Options.h | 213 bool IsASubset(const OptionSet &set_a, const OptionSet &set_b); 215 size_t OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b, 218 void OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b,
|
| /freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | Options.cpp | 83 bool Options::IsASubset(const OptionSet &set_a, const OptionSet &set_b) { in IsASubset() argument 92 pos_b = set_b.find(*pos_a); in IsASubset() 93 if (pos_b == set_b.end()) in IsASubset() 103 size_t Options::OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetDiff() argument 110 pos_b = set_b.find(*pos_a); in OptionsSetDiff() 111 if (pos_b == set_b.end()) { in OptionsSetDiff() 123 void Options::OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetUnion() argument 134 for (pos = set_b.begin(); pos != set_b.end(); ++pos) { in OptionsSetUnion()
|
| /freebsd/contrib/googletest/googletest/test/ |
| H A D | gtest_unittest.cc | 2421 std::set<int> set_b = {0, 4, 8}; in TEST() local 2424 EXPECT_PRED2(compare_sets, set_a, set_b), in TEST()
|