/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/lzma/CPP/7zip/UI/Console/ |
D | ExtractCallbackConsole.h | 59 void Init(CStdOutStream *outStream, CStdOutStream *errorStream, CStdOutStream *percentStream) in Init() argument 62 _se = errorStream; in Init() 166 void Init(CStdOutStream *outStream, CStdOutStream *errorStream, CStdOutStream *percentStream) in Init() argument 168 COpenCallbackConsole::Init(outStream, errorStream, percentStream); in Init()
|
D | OpenCallbackConsole.h | 52 void Init(CStdOutStream *outStream, CStdOutStream *errorStream, CStdOutStream *percentStream) in Init() argument 55 _se = errorStream; in Init()
|
D | UpdateCallbackConsole.h | 66 void Init(CStdOutStream *outStream, CStdOutStream *errorStream, CStdOutStream *percentStream) in Init() argument 71 _se = errorStream; in Init()
|
/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/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/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/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/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/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/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);
|
D | mtl_render_utils.mm | 977 std::stringstream errorStream;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Context.cpp | 9266 std::stringstream errorStream; in handleError() local 9267 errorStream << "Error: " << gl::FmtHex(errorCode) << ", in " << file << ", " << function << ":" in handleError() 9270 std::string formattedMessage = errorStream.str(); in handleError()
|