Home
last modified time | relevance | path

Searched refs:extraInfoStream (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DParseHelper.cpp245 std::stringstream extraInfoStream; in assignError() local
246 extraInfoStream << "cannot convert from '" << right << "' to '" << left << "'"; in assignError()
247 std::string extraInfo = extraInfoStream.str(); in assignError()
256 std::stringstream extraInfoStream; in unaryOpError() local
257 extraInfoStream << "no operation '" << op << "' exists that takes an operand of type " << operand in unaryOpError()
259 std::string extraInfo = extraInfoStream.str(); in unaryOpError()
268 std::stringstream extraInfoStream; in binaryOpError() local
269extraInfoStream << "no operation '" << op << "' exists that takes a left-hand operand of type '" <… in binaryOpError()
271 std::string extraInfo = extraInfoStream.str(); in binaryOpError()
401 std::stringstream extraInfoStream; in lValueErrorCheck() local
[all …]
DOutputASM.cpp3521 std::stringstream extraInfoStream; in arrayExceedsLimits() local
3522 extraInfoStream << "Array size (" << operand->getArraySize() << ") " in arrayExceedsLimits()
3525 std::string errorStr = extraInfoStream.str(); in arrayExceedsLimits()