Home
last modified time | relevance | path

Searched refs:rhs_value (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp57 const uintptr_t rhs_value = in Value() local
59 if ((rhs_value != 0) && in Value()
60 (rhs_value == (uintptr_t)v.m_data_buffer.GetBytes())) { in Value()
75 const uintptr_t rhs_value = in operator =() local
77 if ((rhs_value != 0) && in operator =()
78 (rhs_value == (uintptr_t)rhs.m_data_buffer.GetBytes())) { in operator =()
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest.h1569 RawType lhs_value, RawType rhs_value) { in CmpHelperFloatingPointEQ() argument
1570 const FloatingPoint<RawType> lhs(lhs_value), rhs(rhs_value); in CmpHelperFloatingPointEQ()
1582 << rhs_value; in CmpHelperFloatingPointEQ()
/freebsd/contrib/googletest/googletest/src/
H A Dgtest.cc1596 const std::string& rhs_value, bool ignoring_case) { in EqFailure() argument
1604 if (rhs_value != rhs_expression) { in EqFailure()
1605 msg << "\n Which is: " << rhs_value; in EqFailure()
1612 if (!lhs_value.empty() && !rhs_value.empty()) { in EqFailure()
1614 const std::vector<std::string> rhs_lines = SplitEscapedString(rhs_value); in EqFailure()