Home
last modified time | relevance | path

Searched refs:errorStream (Results 1 – 25 of 28) sorted by relevance

12

/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DShaderModule.cpp38 std::ostringstream errorStream; in ValidateShaderModuleDescriptor() local
39 errorStream << "SPIRV Validation failure:" << std::endl; in ValidateShaderModuleDescriptor()
41 spirvTools.SetMessageConsumer([&errorStream](spv_message_level_t level, const char*, in ValidateShaderModuleDescriptor()
48 errorStream << "error: line " << position.index << ": " << message << std::endl; in ValidateShaderModuleDescriptor()
51 errorStream << "warning: line " << position.index << ": " << message in ValidateShaderModuleDescriptor()
55 errorStream << "info: line " << position.index << ": " << message << std::endl; in ValidateShaderModuleDescriptor()
63 return DAWN_VALIDATION_ERROR(errorStream.str().c_str()); in ValidateShaderModuleDescriptor()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DCallDAG.cpp174 std::stringstream errorStream = sh::InitializeStream<std::stringstream>(); in assignIndicesInternal() local
192 errorStream << "Undefined function '" << function->name in assignIndicesInternal()
214 errorStream << "Recursive function call in the following call chain:"; in assignIndicesInternal()
236 errorStream << " -> "; in assignIndicesInternal()
238 errorStream << function->name << ")"; in assignIndicesInternal()
244 std::string errorStr = errorStream.str(); in assignIndicesInternal()
DCompiler.cpp1426 std::stringstream errorStream = sh::InitializeStream<std::stringstream>(); in checkCallDepth() local
1427 errorStream << "Call stack too deep (larger than " << mResources.MaxCallStackDepth in checkCallDepth()
1436 errorStream in checkCallDepth()
1453 std::string errorStr = errorStream.str(); in checkCallDepth()
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DCallDAG.cpp174 std::stringstream errorStream = sh::InitializeStream<std::stringstream>(); in assignIndicesInternal() local
192 errorStream << "Undefined function '" << function->name in assignIndicesInternal()
214 errorStream << "Recursive function call in the following call chain:"; in assignIndicesInternal()
236 errorStream << " -> "; in assignIndicesInternal()
238 errorStream << function->name << ")"; in assignIndicesInternal()
244 std::string errorStr = errorStream.str(); in assignIndicesInternal()
DCompiler.cpp1167 std::stringstream errorStream = sh::InitializeStream<std::stringstream>(); in checkCallDepth() local
1168 errorStream << "Call stack too deep (larger than " << mResources.MaxCallStackDepth in checkCallDepth()
1177 errorStream in checkCallDepth()
1194 std::string errorStr = errorStream.str(); in checkCallDepth()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
DContextImpl.cpp48 std::stringstream errorStream; in handleError() local
49 errorStream << "Internal error: " << gl::FmtHex(errorCode) << ": " << message; in handleError()
50 mErrors->handleError(errorCode, errorStream.str().c_str(), file, function, line); in handleError()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/
DContextImpl.cpp133 std::stringstream errorStream; in handleError() local
134 errorStream << "Internal error: " << gl::FmtHex(errorCode) << ": " << message; in handleError()
135 mErrors->handleError(errorCode, errorStream.str().c_str(), file, function, line); in handleError()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DDisplayVk.cpp224 std::stringstream errorStream; in handleError() local
225 errorStream << "Internal Vulkan error: " << VulkanResultString(result) << ", in " << file in handleError()
227 mStoredErrorString = errorStream.str(); in handleError()
DContextVk.cpp2436 std::stringstream errorStream; in handleError() local
2437 errorStream << "Internal Vulkan error: " << VulkanResultString(errorCode) << "."; in handleError()
2441 WARN() << errorStream.str(); in handleError()
2445 mErrors->handleError(glErrorCode, errorStream.str().c_str(), file, function, line); in handleError()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DDisplayVk.cpp321 std::stringstream errorStream; in getEGLError() local
322 errorStream << "Internal Vulkan error (" << mSavedError.errorCode in getEGLError()
325 std::string errorString = errorStream.str(); in getEGLError()
DCommandProcessor.cpp338 std::stringstream errorStream; in handleError() local
339 errorStream << "Internal Vulkan error (" << errorCode << "): " << VulkanResultString(errorCode) in handleError()
344 WARN() << errorStream.str(); in handleError()
DContextVk.cpp5268 std::stringstream errorStream; in handleError() local
5269 errorStream << "Internal Vulkan error (" << errorCode << "): " << VulkanResultString(errorCode) in handleError()
5274 WARN() << errorStream.str(); in handleError()
5278 mErrors->handleError(glErrorCode, errorStream.str().c_str(), file, function, line); in handleError()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
DContext9.cpp388 std::stringstream errorStream; in handleResult() local
389 errorStream << "Internal D3D9 error: " << gl::FmtHR(hr) << ": " << message; in handleResult()
391 mErrors->handleError(glErrorCode, errorStream.str().c_str(), file, function, line); in handleResult()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DDisplayD3D.cpp402 std::stringstream errorStream; in handleResult() local
403 errorStream << "Internal D3D11 error: " << gl::FmtHR(hr) << ", in " << file << ", " << function in handleResult()
406 mStoredErrorString = errorStream.str(); in handleResult()
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DShaderModuleD3D12.cpp335 std::ostringstream errorStream; in CreateCacheKey() local
336 errorStream << "Tint WGSL failure:" << std::endl; in CreateCacheKey()
337 errorStream << "Generator: " << result.error << std::endl; in CreateCacheKey()
338 return DAWN_INTERNAL_ERROR(errorStream.str().c_str()); in CreateCacheKey()
607 std::ostringstream errorStream; in TranslateToHLSL() local
608 errorStream << "Tint HLSL failure:" << std::endl; in TranslateToHLSL()
/third_party/skia/src/sksl/
DSkSLMain.cpp319 SkSL::FileOutputStream errorStream(outputPath); in processCommand() local
320 errorStream.writeText("### Compilation failed:\n\n"); in processCommand()
321 errorStream.writeText(errorText); in processCommand()
322 errorStream.close(); in processCommand()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DDisplayD3D.cpp440 std::stringstream errorStream; in handleResult() local
441 errorStream << "Internal D3D11 error: " << gl::FmtHR(hr) << ", in " << file << ", " << function in handleResult()
444 mStoredErrorString = errorStream.str(); in handleResult()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/null/
DContextNULL.cpp459 std::stringstream errorStream; in handleError() local
460 errorStream << "Internal NULL back-end error: " << message << "."; in handleError()
461 mErrors->handleError(errorCode, errorStream.str().c_str(), file, function, line); in handleError()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/null/
DContextNULL.cpp524 std::stringstream errorStream; in handleError() local
525 errorStream << "Internal NULL back-end error: " << message << "."; in handleError()
526 mErrors->handleError(errorCode, errorStream.str().c_str(), file, function, line); in handleError()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
DContext9.cpp519 std::stringstream errorStream; in handleResult() local
520 errorStream << "Internal D3D9 error: " << gl::FmtHR(hr) << ": " << message; in handleResult()
522 mErrors->handleError(glErrorCode, errorStream.str().c_str(), file, function, line); in handleResult()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DContext11.cpp1026 std::stringstream errorStream; in handleResult() local
1027 errorStream << "Internal D3D11 error: " << gl::FmtHR(hr); in handleResult()
1032 errorStream << " (removal reason: " << gl::FmtHR(removalReason) << ")"; in handleResult()
1036 errorStream << ": " << message; in handleResult()
1038 mErrors->handleError(glErrorCode, errorStream.str().c_str(), file, function, line); in handleResult()
/third_party/flutter/flutter/packages/flutter_tools/lib/src/dart/
Danalysis.dart51 final Stream<String> errorStream =
53 errorStream.listen(printError);
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DContext11.cpp704 std::stringstream errorStream; in handleResult() local
705 errorStream << "Internal D3D11 error: " << gl::FmtHR(hr) << ": " << message; in handleResult()
707 mErrors->handleError(glErrorCode, errorStream.str().c_str(), file, function, line); in handleResult()
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/
DShaderModuleMTL.mm59 std::ostringstream errorStream;
60 errorStream << "Tint MSL failure:" << std::endl;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
DContextMtl.mm1318 std::stringstream errorStream;
1319 errorStream << "Metal backend encountered an error. Code=" << glErrorCode << ".";
1321 mErrors->handleError(glErrorCode, errorStream.str().c_str(), file, function, line);
1334 std::stringstream errorStream;
1335 errorStream << "Metal backend encountered an error: \n"
1338 mErrors->handleError(GL_INVALID_OPERATION, errorStream.str().c_str(), file, function, line);

12