/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/ |
D | ShaderModule.cpp | 38 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/ |
D | CallDAG.cpp | 174 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()
|
D | Compiler.cpp | 1426 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/ |
D | CallDAG.cpp | 174 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()
|
D | Compiler.cpp | 1167 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/ |
D | ContextImpl.cpp | 48 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/ |
D | ContextImpl.cpp | 133 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/ |
D | DisplayVk.cpp | 224 std::stringstream errorStream; in handleError() local 225 errorStream << "Internal Vulkan error: " << VulkanResultString(result) << ", in " << file in handleError() 227 mStoredErrorString = errorStream.str(); in handleError()
|
D | ContextVk.cpp | 2436 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/ |
D | DisplayVk.cpp | 321 std::stringstream errorStream; in getEGLError() local 322 errorStream << "Internal Vulkan error (" << mSavedError.errorCode in getEGLError() 325 std::string errorString = errorStream.str(); in getEGLError()
|
D | CommandProcessor.cpp | 338 std::stringstream errorStream; in handleError() local 339 errorStream << "Internal Vulkan error (" << errorCode << "): " << VulkanResultString(errorCode) in handleError() 344 WARN() << errorStream.str(); in handleError()
|
D | ContextVk.cpp | 5268 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/ |
D | Context9.cpp | 388 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/ |
D | DisplayD3D.cpp | 402 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/ |
D | ShaderModuleD3D12.cpp | 335 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/ |
D | SkSLMain.cpp | 319 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/ |
D | DisplayD3D.cpp | 440 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/ |
D | ContextNULL.cpp | 459 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/ |
D | ContextNULL.cpp | 524 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/ |
D | Context9.cpp | 519 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/ |
D | Context11.cpp | 1026 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/ |
D | analysis.dart | 51 final Stream<String> errorStream = 53 errorStream.listen(printError);
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | Context11.cpp | 704 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/ |
D | ShaderModuleMTL.mm | 59 std::ostringstream errorStream; 60 errorStream << "Tint MSL failure:" << std::endl;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
D | ContextMtl.mm | 1318 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);
|