• Home
  • Raw
  • Download

Lines Matching refs:reasonStream

415     TInfoSinkBase reasonStream;  in assignError()  local
416 reasonStream << "cannot convert from '" << right << "' to '" << left << "'"; in assignError()
417 error(line, reasonStream.c_str(), op); in assignError()
425 TInfoSinkBase reasonStream; in unaryOpError() local
426 reasonStream << "wrong operand type - no operation '" << op in unaryOpError()
429 error(line, reasonStream.c_str(), op); in unaryOpError()
440 TInfoSinkBase reasonStream; in binaryOpError() local
441 reasonStream << "wrong operand types - no operation '" << op in binaryOpError()
445 error(line, reasonStream.c_str(), op); in binaryOpError()
685 std::stringstream reasonStream = sh::InitializeStream<std::stringstream>(); in checkCanBeLValue() local
686 reasonStream << "l-value required"; in checkCanBeLValue()
694 reasonStream << " (" << message << " \"" << symbol << "\")"; in checkCanBeLValue()
698 reasonStream << " (" << message << ")"; in checkCanBeLValue()
701 std::string reason = reasonStream.str(); in checkCanBeLValue()
976 std::stringstream reasonStream = sh::InitializeStream<std::stringstream>(); in checkIsNotOpaqueType() local
977 reasonStream << reason << " (structure contains a sampler)"; in checkIsNotOpaqueType()
978 std::string reasonStr = reasonStream.str(); in checkIsNotOpaqueType()
2274 TInfoSinkBase reasonStream; in executeInitializer() local
2275 reasonStream << "assigning non-constant to '" << *type << "'"; in executeInitializer()
2276 error(line, reasonStream.c_str(), "="); in executeInitializer()
3605 std::stringstream reasonStream = sh::InitializeStream<std::stringstream>(); in parseGlobalLayoutQualifier() local
3606 reasonStream << "invalid value: Value must be at least 1 and no greater than " in parseGlobalLayoutQualifier()
3608 const std::string &reason = reasonStream.str(); in parseGlobalLayoutQualifier()
4614 std::stringstream reasonStream = sh::InitializeStream<std::stringstream>(); in checkIsBelowStructNestingLimit() local
4619 reasonStream << "Struct nesting"; in checkIsBelowStructNestingLimit()
4623 reasonStream << "Reference of struct type " << field.type()->getStruct()->name(); in checkIsBelowStructNestingLimit()
4625 reasonStream << " exceeds maximum allowed nesting level of " << kWebGLMaxStructNesting; in checkIsBelowStructNestingLimit()
4626 std::string reason = reasonStream.str(); in checkIsBelowStructNestingLimit()
4851 std::stringstream reasonStream = sh::InitializeStream<std::stringstream>(); in checkIndexLessThan() local
4852 reasonStream << reason << " '" << index << "'"; in checkIndexLessThan()
4853 std::string token = reasonStream.str(); in checkIndexLessThan()
5213 std::stringstream reasonStream = sh::InitializeStream<std::stringstream>(); in parseLocalSize() local
5214 reasonStream << "out of range: " << getWorkGroupSizeString(index) << " must be positive"; in parseLocalSize()
5215 std::string reason = reasonStream.str(); in parseLocalSize()
6969 TInfoSinkBase reasonStream; in addTernarySelection() local
6970 reasonStream << "mismatching ternary operator operand types '" << trueExpression->getType() in addTernarySelection()
6972 error(loc, reasonStream.c_str(), "?:"); in addTernarySelection()