Lines Matching defs:bool
98 bool operator==(const NotCopyable& rhs) const {
102 bool operator>=(const NotCopyable& rhs) const {
444 bool RecurseInto(size_t irhs) {
502 std::vector<bool> seen_element(graph.LhsSize());
503 std::vector<bool> seen_matcher(graph.RhsSize());
605 EXPECT_TRUE(IsReadableTypeName("void (*)(int, bool)"));
621 EXPECT_FALSE(IsReadableTypeName("void (&)(int, bool, char, float)"));
680 operator bool() const { return has_value_; }
685 bool has_value_;
726 friend bool holds_alternative(const SampleVariantIntString& value) {
741 bool has_int_;
853 const std::tuple<int, bool> t(5, true);
859 const std::tuple<int, bool> t(5, true);
927 const Matcher<std::tuple<int, bool, char>> m = Args<2, 0>(Lt());
935 const Matcher<const std::tuple<int, bool, char, int>&> m =
952 const Matcher<std::tuple<bool, int, int>> m = Args<1, 2>(Eq());
964 bool MatchAndExplain(std::tuple<char, int> value,