Lines Matching refs:str
64 std::ostream& operator<< (std::ostream& str, const HexFloat& v)
66 return str << v.value << " / " << tcu::toHex(tcu::Float32(v.value).bits());
77 std::ostream& operator<< (std::ostream& str, const VarValue& varValue)
86 str << glu::getDataTypeName(basicType) << "(";
91 str << ", ";
95 case glu::TYPE_FLOAT: str << HexFloat(((const float*)varValue.value)[compNdx]); break;
96 case glu::TYPE_INT: str << ((const deInt32*)varValue.value)[compNdx]; break;
97 case glu::TYPE_UINT: str << tcu::toHex(((const deUint32*)varValue.value)[compNdx]); break;
98 case glu::TYPE_BOOL: str << (((const deUint32*)varValue.value)[compNdx] != 0 ? "true" : "false"); break;
106 str << ")";
108 return str;
293 m_testCtx.getLog() << TestLog::Message << "ERROR: comparison failed for value " << valNdx << ":\n " << m_failMsg.str() << TestLog::EndMessage;
307 m_failMsg.str("");