Home
last modified time | relevance | path

Searched refs:errorStream (Results 1 - 16 of 16) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A 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()
H A 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/
H A DExtractCallbackConsole.h59 void Init(CStdOutStream *outStream, CStdOutStream *errorStream, CStdOutStream *percentStream) in Init() argument
62 _se = errorStream; in Init()
159 void Init(CStdOutStream *outStream, CStdOutStream *errorStream, CStdOutStream *percentStream) in Init() argument
161 COpenCallbackConsole::Init(outStream, errorStream, percentStream); in Init()
H A DOpenCallbackConsole.h52 void Init(CStdOutStream *outStream, CStdOutStream *errorStream, CStdOutStream *percentStream) in Init() argument
55 _se = errorStream; in Init()
H A DUpdateCallbackConsole.h67 void Init(CStdOutStream *outStream, CStdOutStream *errorStream, CStdOutStream *percentStream) in Init() argument
72 _se = errorStream; in Init()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A 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/
H A 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()
H A DCommandProcessor.cpp338 std::stringstream errorStream; in handleError() local
339 errorStream << "Internal Vulkan error (" << errorCode << "): " << VulkanResultString(errorCode) in handleError()
344 WARN() << errorStream.str(); in handleError()
H A DContextVk.cpp5268 std::stringstream errorStream;
5269 errorStream << "Internal Vulkan error (" << errorCode << "): " << VulkanResultString(errorCode)
5274 WARN() << errorStream.str();
5278 mErrors->handleError(glErrorCode, errorStream.str().c_str(), file, function, line);
/third_party/skia/src/sksl/
H A DSkSLMain.cpp319 SkSL::FileOutputStream errorStream(outputPath); in processCommand()
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/dawn/src/dawn_native/d3d12/
H A 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/
H A 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/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A 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/null/
H A 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/d3d11/
H A 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/angle2/src/libANGLE/
H A 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()

Completed in 39 milliseconds