Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/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.cpp3519 std::stringstream extraInfoStream; in arrayExceedsLimits() local
3520 extraInfoStream << "Array size (" << operand->getArraySize() << ") " in arrayExceedsLimits()
3523 std::string errorStr = extraInfoStream.str(); in arrayExceedsLimits()