Searched refs:set_b (Results 1 – 3 of 3) sorted by relevance
| /src/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,
|
| /src/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | Options.cpp | 48 bool Options::IsASubset(const OptionSet &set_a, const OptionSet &set_b) { in IsASubset() argument 57 pos_b = set_b.find(*pos_a); in IsASubset() 58 if (pos_b == set_b.end()) in IsASubset() 68 size_t Options::OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetDiff() argument 75 pos_b = set_b.find(*pos_a); in OptionsSetDiff() 76 if (pos_b == set_b.end()) { in OptionsSetDiff() 88 void Options::OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetUnion() argument 99 for (pos = set_b.begin(); pos != set_b.end(); ++pos) { in OptionsSetUnion()
|
| /src/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()
|