Home
last modified time | relevance | path

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

/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/lzma/CPP/7zip/UI/Console/
DExtractCallbackConsole.h59 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()
DOpenCallbackConsole.h52 void Init(CStdOutStream *outStream, CStdOutStream *errorStream, CStdOutStream *percentStream) in Init() argument
55 _se = errorStream; in Init()
DUpdateCallbackConsole.h66 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/
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/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/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/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/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/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/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);
Dmtl_render_utils.mm977 std::stringstream errorStream;
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DContext.cpp9266 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()