Home
last modified time | relevance | path

Searched refs:set_a (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptions.h213 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 DOptions.cpp48 bool Options::IsASubset(const OptionSet &set_a, const OptionSet &set_b) { in IsASubset() argument
56 for (pos_a = set_a.begin(); pos_a != set_a.end() && is_a_subset; ++pos_a) { in IsASubset()
68 size_t Options::OptionsSetDiff(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetDiff() argument
74 for (pos_a = set_a.begin(); pos_a != set_a.end(); ++pos_a) { in OptionsSetDiff()
88 void Options::OptionsSetUnion(const OptionSet &set_a, const OptionSet &set_b, in OptionsSetUnion() argument
95 for (pos = set_a.begin(); pos != set_a.end(); ++pos) in OptionsSetUnion()
/freebsd/contrib/netbsd-tests/bin/sh/
H A Dt_option.sh113 atf_test_case set_a
663 atf_add_test_case set_a
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc2420 std::set<int> set_a = {2, 1, 3, 4, 5}; in TEST() local
2424 EXPECT_PRED2(compare_sets, set_a, set_b), in TEST()