/third_party/grpc/src/csharp/Grpc.IntegrationTesting/ |
D | CustomErrorDetailsTest.cs | 80 var debugInfo = GetDebugInfo(call.GetTrailers()); in ErrorDetailsFromCallObject() 81 Assert.AreEqual(debugInfo.Detail, ExceptionDetail); in ErrorDetailsFromCallObject() 82 Assert.IsNotEmpty(debugInfo.StackEntries); in ErrorDetailsFromCallObject() 97 var debugInfo = GetDebugInfo(e.Trailers); in ErrorDetailsFromRpcException() 98 Assert.AreEqual(debugInfo.Detail, ExceptionDetail); in ErrorDetailsFromRpcException() 99 Assert.IsNotEmpty(debugInfo.StackEntries); in ErrorDetailsFromRpcException() 120 var debugInfo = new DebugInfo(); in UnaryCall() 121 debugInfo.Detail = e.Message; in UnaryCall() 122 …debugInfo.StackEntries.AddRange(e.StackTrace.Split(new[] { Environment.NewLine }, StringSplitOptio… in UnaryCall() 123 context.ResponseTrailers.Add(DebugInfoTrailerName, debugInfo.ToByteArray()); in UnaryCall()
|
/third_party/skia/src/sksl/codegen/ |
D | SkSLVMCodeGenerator.h | 52 SkVMDebugInfo* debugInfo, 84 SkVMDebugInfo* debugInfo, 106 SkVMDebugInfo* debugInfo);
|
D | SkSLVMCodeGenerator.cpp | 119 SkVMDebugInfo* debugInfo, 351 SkVMDebugInfo* debugInfo, in SkVMGenerator() argument 357 , fDebugInfo(debugInfo) in SkVMGenerator() 1811 SkVMDebugInfo* debugInfo, in ProgramToSkVM() argument 1856 SkVMGenerator generator(program, builder, debugInfo, std::move(sampleShader), in ProgramToSkVM() 1869 SkVMDebugInfo* debugInfo, in ProgramToSkVM() argument 1912 SkVMGenerator generator(program, b, debugInfo, sampleShader, sampleColorFilter, sampleBlender); in ProgramToSkVM() 2000 SkVMDebugInfo* debugInfo) { in testingOnly_ProgramToSkVMShader() argument 2053 skvm::Color result = SkSL::ProgramToSkVM(program, *main, builder, debugInfo, in testingOnly_ProgramToSkVMShader()
|
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/ |
D | VulkanTester.cpp | 305 vk::DebugUtilsMessengerCreateInfoEXT debugInfo; in initialize() local 306 debugInfo.messageSeverity = in initialize() 311 debugInfo.messageType = vk::DebugUtilsMessageTypeFlagBitsEXT::eGeneral | in initialize() 326 debugInfo.pfnUserCallback = debugInfoCallback; in initialize() 327 debugReport = instance.createDebugUtilsMessengerEXT(debugInfo); in initialize()
|
/third_party/skia/src/sksl/ |
D | SkSLMain.cpp | 96 std::unique_ptr<SkSL::SkVMDebugInfo>* debugInfo) { in detect_shader_settings() argument 221 *debugInfo = std::make_unique<SkSL::SkVMDebugInfo>(); in detect_shader_settings() 301 std::unique_ptr<SkSL::SkVMDebugInfo> debugInfo; in processCommand() local 303 if (!detect_shader_settings(text, &settings, &caps, &debugInfo)) { in processCommand() 386 debugInfo.get())) { in processCommand() 391 if (debugInfo) { in processCommand() 392 debugInfo->dump(redirect.get()); in processCommand()
|
/third_party/glslang/Test/ |
D | runtests | 169 -G -H spv.debugInfo.frag --rsb frag 3 > $TARGETDIR/spv.debugInfo.frag.out 170 diff -b $BASEDIR/spv.debugInfo.frag.out $TARGETDIR/spv.debugInfo.frag.out || HASERROR=1 172 -G -H spv.debugInfo.frag --rsb frag 3 > $TARGETDIR/spv.debugInfo.1.1.frag.out 173 diff -b $BASEDIR/spv.debugInfo.1.1.frag.out $TARGETDIR/spv.debugInfo.1.1.frag.out || HASERROR=1
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | Shader.cpp | 248 const std::string &debugInfo = mImplementation->getDebugInfo(); in getTranslatedSourceWithDebugInfoLength() local 249 if (debugInfo.empty()) in getTranslatedSourceWithDebugInfoLength() 254 return (static_cast<int>(debugInfo.length()) + 1); in getTranslatedSourceWithDebugInfoLength() 298 const std::string &debugInfo = mImplementation->getDebugInfo(); in getTranslatedSourceWithDebugInfo() local 299 GetSourceImpl(debugInfo, bufSize, length, buffer); in getTranslatedSourceWithDebugInfo()
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | projectReferences.ts | 547 debugInfo: string; property 549 …PositionMapper({ session, dependencyMap, documentPositionMapper, equal, debugInfo }: VerifyDocumen… 550 …tEqual(session.getProjectService().filenameToScriptInfo.get(dtsMapPath), dependencyMap, debugInfo); 553 … assert.strictEqual(dependencyMap.documentPositionMapper, documentPositionMapper, debugInfo); 556 … assert.notStrictEqual(dependencyMap.documentPositionMapper, documentPositionMapper, debugInfo); 622 const debugInfo = `${actionKey}:: ${fnAction.reqName}:: ${fn}`; constant 623 … const dtsInfo = verifyScriptInfoPresence(session, dtsPath, expectsDts, debugInfo); 624 … const dtsMapInfo = verifyScriptInfoPresence(session, dtsMapPath, expectsMap, debugInfo); 631 debugInfo 638 … assert.equal(dtsInfo.sourceMapFilePath, dtsMapPath, debugInfo); [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Shader.cpp | 254 const std::string &debugInfo = mImplementation->getDebugInfo(); in getTranslatedSourceWithDebugInfoLength() local 255 if (debugInfo.empty()) in getTranslatedSourceWithDebugInfoLength() 260 return (static_cast<int>(debugInfo.length()) + 1); in getTranslatedSourceWithDebugInfoLength() 310 const std::string &debugInfo = mImplementation->getDebugInfo(); in getTranslatedSourceWithDebugInfo() local 311 GetSourceImpl(debugInfo, bufSize, length, buffer); in getTranslatedSourceWithDebugInfo()
|
/third_party/glslang/Test/baseResults/ |
D | spv.debugInfo.1.1.frag.out | 1 spv.debugInfo.frag 13 1: String "spv.debugInfo.frag"
|
D | spv.debugInfo.frag.out | 1 spv.debugInfo.frag 11 1: String "spv.debugInfo.frag"
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | LLVMReactor.hpp | 119 std::unique_ptr<rr::DebugInfo> debugInfo; member in rr::JITBuilder
|
D | LLVMReactor.cpp | 601 if(jit->debugInfo != nullptr) in acquireRoutine() 603 jit->debugInfo->Finalize(); in acquireRoutine() 698 …jit->debugInfo = std::make_unique<DebugInfo>(jit->builder.get(), jit->context.get(), jit->module.g… in createFunction() 4098 if(jit->debugInfo != nullptr) in EmitDebugLocation() 4100 jit->debugInfo->EmitLocation(); in EmitDebugLocation() 4108 if(jit->debugInfo != nullptr) in EmitDebugVariable() 4110 jit->debugInfo->EmitVariable(value); in EmitDebugVariable() 4118 if(jit->debugInfo != nullptr) in FlushDebug() 4120 jit->debugInfo->Flush(); in FlushDebug() 4259 …jit->debugInfo = std::make_unique<rr::DebugInfo>(jit->builder.get(), jit->context.get(), jit->modu… in promoteFunctionToCoroutine() [all …]
|
D | LLVMJIT.cpp | 840 if(debugInfo != nullptr) in optimize()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | Renderer9.cpp | 2686 std::string debugInfo; in compileToExecutable() local 2688 nullptr, &binary, &debugInfo); in compileToExecutable() 2707 if (!debugInfo.empty()) in compileToExecutable() 2709 (*outExectuable)->appendDebugInfo(debugInfo); in compileToExecutable()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | Renderer9.cpp | 2727 std::string debugInfo; in compileToExecutable() local 2729 nullptr, &binary, &debugInfo); in compileToExecutable() 2748 if (!debugInfo.empty()) in compileToExecutable() 2750 (*outExectuable)->appendDebugInfo(debugInfo); in compileToExecutable()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | Renderer11.cpp | 2807 std::string debugInfo; in compileToExecutable() local 2809 &binary, &debugInfo)); in compileToExecutable() 2830 if (!debugInfo.empty()) in compileToExecutable() 2832 (*outExectuable)->appendDebugInfo(debugInfo); in compileToExecutable()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | Renderer11.cpp | 3126 std::string debugInfo; in compileToExecutable() local 3128 &binary, &debugInfo)); in compileToExecutable() 3149 if (!debugInfo.empty()) in compileToExecutable() 3151 (*outExectuable)->appendDebugInfo(debugInfo); in compileToExecutable()
|