Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CALC.CPP:
- ---------
- #include "Calc.h"
- int Calc::sum(int a, int b){
- return a+b;
- }
- int Calc::mul(int a, int b){
- return a*b;
- }
- CALCTEST.CPP:
- -------------
- #include "stdafx.h"
- #include "Calc.h"
- #include <iostream>
- using namespace std;
- using namespace System;
- using namespace System::Text;
- using namespace System::Collections::Generic;
- using namespace Microsoft::VisualStudio::TestTools::UnitTesting;
- namespace CalcTest
- {
- [TestClass]
- public ref class CalcTest
- {
- private:
- TestContext^ testContextInstance;
- public:
- #pragma region Additional test attributes
- #pragma endregion
- [TestMethod]
- void TestMethod1()
- {
- Calc c;
- int r1 = c.sum(1,2);
- int r2 = c.sum(2,3);
- if( r1==3 && r2==4 ) {
- std::cout<<"Correct!";
- }
- Assert::AreEqual<int>(4, c.sum(1, 2));
- }
- [TestMethod]
- void TestMethod2()
- {
- Calc c;
- Assert::AreEqual<int>(3, c.sum(1, 2));
- }
- [TestMethod]
- void TestMethod3()
- {
- Calc c;
- Assert::AreEqual<int>(2, c.mul(1, 2));
- }
- };
- }
- BATCH SCRIPT:
- -------------
- SET projdir=C:\Users\abudhaks\Documents\Visual Studio 2010\Projects\CalcProject
- SET chrome=C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
- REM Triggering OpenCover
- "C:\Users\abudhaks\AppData\Local\Apps\OpenCover\OpenCover.Console.exe"^
- -register:user^
- -target:"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\MSTest.exe"^
- -targetargs:"/noresults /noisolation /testcontainer:\"%projdir%\Debug\CalcTest.dll\""^
- -mergebyhash^
- -showunvisited^
- -output:"%projdir%\CoverageReport.xml"
- REM Creating a report directory
- MKDIR "%projdir%\report"
- REM Triggering ReportGenerator
- "C:\Users\abudhaks\Downloads\ReportGenerator_1.9.1.0\bin\ReportGenerator.exe"^
- -reports:"%projdir%\CoverageReport.xml"^
- -targetdir:"%projdir%\report"^
- -reporttypes:Html,HtmlSummary^
- -sourcedirs:"%projdir%\CalcProject"
- REM Opening the report
- "%chrome%" "%projdir%\report\index.htm"
- pause
- .XML:
- ------------
- <?xml version="1.0" encoding="utf-8"?>
- <CoverageSession xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <Summary numSequencePoints="583" visitedSequencePoints="232" numBranchPoints="419" visitedBranchPoints="107" sequenceCoverage="39.79" branchCoverage="25.54" maxCyclomaticComplexity="13" minCyclomaticComplexity="1" />
- <Modules>
- <Module skippedDueTo="Filter" hash="E9-A8-6A-CC-31-FF-25-91-E6-86-F2-D5-72-EE-77-7D-AB-36-F0-0B">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll</FullName>
- <ModuleName>mscorlib</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="69-FA-36-8C-34-2E-86-DF-D0-A9-F9-D5-D6-F7-AE-FC-7C-96-72-40">
- <FullName>C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\MSTest.exe</FullName>
- <ModuleName>MSTest</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="92-C8-F7-DF-90-C8-4E-CE-BF-D1-8E-91-A5-BF-15-7A-B3-27-FF-AB">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Common\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Common.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.Common</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="8F-46-4B-BE-28-40-30-A2-E6-52-58-36-C3-F3-E3-75-03-AF-F4-FC">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll</FullName>
- <ModuleName>System</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="0F-07-95-F4-06-60-B0-91-D8-2F-F7-51-A7-F3-27-5B-67-A8-E7-2A">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.ExecutionCommon\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.ExecutionCommon</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="DF-41-96-FA-37-22-C0-47-06-73-92-94-39-3E-F8-9C-71-77-58-80">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Resource\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Resource.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.Resource</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="8F-6E-E8-4F-40-6A-75-31-1B-08-C2-22-D5-EA-FE-23-3B-7B-82-15">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll</FullName>
- <ModuleName>System.Configuration</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="2E-28-A3-E7-4F-05-75-91-3B-B4-A6-B7-58-E7-27-B0-EF-F7-52-11">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll</FullName>
- <ModuleName>System.Xml</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="BF-25-2F-2D-9C-93-63-C7-10-D2-E5-E7-8A-58-EB-22-5B-0C-F5-0F">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.CommandLine\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.CommandLine.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.CommandLine</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="A0-06-B7-B5-0A-91-98-28-EB-06-FC-0C-AB-4E-8B-FC-87-73-A2-47">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.TMI\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.TMI.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.TMI</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="83-92-A6-61-AB-24-2D-60-6E-B3-F0-4C-6A-F3-38-AF-4E-6E-B8-30">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll</FullName>
- <ModuleName>System.Data</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="5F-95-A9-21-AF-EF-CF-27-26-37-79-95-73-81-7A-A3-5F-E6-5D-E7">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll</FullName>
- <ModuleName>System.Numerics</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="ED-71-AA-D1-28-9F-3A-03-35-2F-8B-6F-2D-56-17-E0-2A-D3-EF-A3">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll</FullName>
- <ModuleName>System.Web</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="F0-AC-29-46-F9-CE-FF-96-AE-EE-4F-C0-DE-9E-59-D3-7E-1B-ED-08">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll</FullName>
- <ModuleName>System.Core</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="70-0C-80-41-7B-A9-6E-D6-6D-57-D4-7E-90-9D-53-BE-EF-10-D1-31">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="AF-05-8D-43-E3-DA-AB-39-5E-1C-C1-7D-03-30-C2-CD-51-4C-F7-2E">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="1A-8E-7F-63-79-81-73-62-C8-B6-77-39-F8-97-1B-CB-6B-2B-67-76">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.UnitTestFramework\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.UnitTestFramework</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="BD-91-25-5D-5B-40-91-44-C6-CC-30-E7-84-09-1F-EC-32-46-EF-F1">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver</ModuleName>
- <Classes />
- </Module>
- <Module hash="50-49-89-A1-5D-DC-BD-8A-2B-E8-46-94-46-78-B6-3B-35-4E-5B-44">
- <Summary numSequencePoints="583" visitedSequencePoints="232" numBranchPoints="419" visitedBranchPoints="107" sequenceCoverage="39.79" branchCoverage="25.54" maxCyclomaticComplexity="13" minCyclomaticComplexity="1" />
- <FullName>C:\Users\abudhaks\Documents\Visual Studio 2010\Projects\CalcProject\Debug\CalcTest.dll</FullName>
- <ModuleName>CalcTest</ModuleName>
- <Files>
- <File uid="1" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\xstddef" />
- <File uid="2" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\exception" />
- <File uid="3" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\iosfwd" />
- <File uid="4" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\xutility" />
- <File uid="5" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\xmemory" />
- <File uid="6" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\xlocale" />
- <File uid="7" fullPath="c:\program files (x86)\microsoft visual studio 10.0\vc\include\ostream" />
- <File uid="8" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\src\internal.h" />
- <File uid="9" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\src\minternal.h" />
- <File uid="10" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\src\mstartup.cpp" />
- <File uid="11" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\src\msclr\gcroot.h" />
- <File uid="12" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\prebuild\eh\managdeh.cpp" />
- <File uid="13" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\prebuild\eh\ehvecdtr.cpp" />
- <File uid="14" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\src\msilexit.cpp" />
- <File uid="15" fullPath="f:\dd\vctools\crt_bld\self_x86\crt\src\puremsilcode.cpp" />
- <File uid="16" fullPath="c:\users\abudhaks\documents\visual studio 2010\projects\calcproject\calctest\calctest.cpp" />
- </Files>
- <Classes>
- <Class>
- <Summary numSequencePoints="512" visitedSequencePoints="193" numBranchPoints="376" visitedBranchPoints="93" sequenceCoverage="37.70" branchCoverage="24.73" maxCyclomaticComplexity="13" minCyclomaticComplexity="0" />
- <FullName><Module></FullName>
- <Methods>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663297</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::std._Bool_function(std._Bool_struct modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <FileRef uid="1" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="1" ordinal="0" offset="0" sl="118" sc="0" el="118" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="1" ordinal="0" offset="0" sl="118" sc="0" el="118" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663298</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.bad_alloc.{dtor}(std.bad_alloc* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="2" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="2" ordinal="0" offset="0" sl="354" sc="0" el="354" ec="0" />
- <SequencePoint vc="0" uspid="3" ordinal="1" offset="7" sl="355" sc="0" el="355" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="2" ordinal="0" offset="0" sl="354" sc="0" el="354" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="4" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="6" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
- <MetadataToken>100663299</MetadataToken>
- <Name>System.Void* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.bad_alloc.__vecDelDtor(std.bad_alloc* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.UInt32)</Name>
- <SequencePoints />
- <BranchPoints>
- <BranchPoint vc="0" uspid="5" ordinal="0" offset="3" path="0" />
- <BranchPoint vc="0" uspid="6" ordinal="1" offset="3" path="1" />
- <BranchPoint vc="0" uspid="7" ordinal="2" offset="26" path="0" />
- <BranchPoint vc="0" uspid="8" ordinal="3" offset="26" path="1" />
- <BranchPoint vc="0" uspid="9" ordinal="4" offset="51" path="0" />
- <BranchPoint vc="0" uspid="10" ordinal="5" offset="51" path="1" />
- </BranchPoints>
- <MethodPoint vc="0" uspid="4" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663300</MetadataToken>
- <Name>std._Exception_ptr* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std._Exception_ptr.{ctor}(std._Exception_ptr* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std._Exception_ptr modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <FileRef uid="2" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="11" ordinal="0" offset="0" sl="429" sc="0" el="429" ec="0" />
- <SequencePoint vc="0" uspid="12" ordinal="1" offset="7" sl="430" sc="0" el="430" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="11" ordinal="0" offset="0" sl="429" sc="0" el="429" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663301</MetadataToken>
- <Name>System.UInt32 modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::std.char_traits<char>.length(System.SByte modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte) modopt(System.Runtime.CompilerServices.IsConst)*)</Name>
- <FileRef uid="3" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="13" ordinal="0" offset="0" sl="491" sc="0" el="491" ec="0" />
- <SequencePoint vc="0" uspid="14" ordinal="1" offset="7" sl="492" sc="0" el="492" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="13" ordinal="0" offset="0" sl="491" sc="0" el="491" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663302</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::std.char_traits<char>.eq_int_type(System.Int32 modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced),System.Int32 modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <FileRef uid="3" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="15" ordinal="0" offset="0" sl="553" sc="0" el="553" ec="0" />
- <SequencePoint vc="0" uspid="16" ordinal="1" offset="11" sl="554" sc="0" el="554" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="17" ordinal="0" offset="4" path="0" />
- <BranchPoint vc="0" uspid="18" ordinal="1" offset="4" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="15" ordinal="0" offset="0" sl="553" sc="0" el="553" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663303</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::std.char_traits<char>.eof()</Name>
- <FileRef uid="3" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="19" ordinal="0" offset="0" sl="563" sc="0" el="563" ec="0" />
- <SequencePoint vc="0" uspid="20" ordinal="1" offset="2" sl="564" sc="0" el="564" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="19" ordinal="0" offset="0" sl="563" sc="0" el="563" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663304</MetadataToken>
- <Name>std._Iterator_base12* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std._Iterator_base12.{ctor}(std._Iterator_base12* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std._Iterator_base12 modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <FileRef uid="4" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="21" ordinal="0" offset="0" sl="116" sc="0" el="116" ec="0" />
- <SequencePoint vc="0" uspid="22" ordinal="1" offset="8" sl="117" sc="0" el="117" ec="0" />
- <SequencePoint vc="0" uspid="23" ordinal="2" offset="16" sl="118" sc="0" el="118" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="21" ordinal="0" offset="0" sl="116" sc="0" el="116" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="9" visitedSequencePoints="0" numBranchPoints="5" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663305</MetadataToken>
- <Name>std._Iterator_base12* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced) modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std._Iterator_base12.=(std._Iterator_base12* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std._Iterator_base12 modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <FileRef uid="4" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="24" ordinal="0" offset="0" sl="122" sc="0" el="122" ec="0" />
- <SequencePoint vc="0" uspid="25" ordinal="1" offset="8" sl="124" sc="0" el="124" ec="0" />
- <SequencePoint vc="0" uspid="26" ordinal="2" offset="12" sl="125" sc="0" el="125" ec="0" />
- <SequencePoint vc="0" uspid="27" ordinal="3" offset="21" sl="126" sc="0" el="126" ec="0" />
- <SequencePoint vc="0" uspid="28" ordinal="4" offset="23" sl="128" sc="0" el="128" ec="0" />
- <SequencePoint vc="0" uspid="29" ordinal="5" offset="32" sl="129" sc="0" el="129" ec="0" />
- <SequencePoint vc="0" uspid="30" ordinal="6" offset="54" sl="130" sc="0" el="130" ec="0" />
- <SequencePoint vc="0" uspid="31" ordinal="7" offset="61" sl="131" sc="0" el="131" ec="0" />
- <SequencePoint vc="0" uspid="32" ordinal="8" offset="63" sl="132" sc="0" el="132" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="33" ordinal="0" offset="4" path="0" />
- <BranchPoint vc="0" uspid="34" ordinal="1" offset="4" path="1" />
- <BranchPoint vc="0" uspid="35" ordinal="2" offset="10" path="0" />
- <BranchPoint vc="0" uspid="36" ordinal="3" offset="10" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="24" ordinal="0" offset="0" sl="122" sc="0" el="122" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="14" visitedSequencePoints="0" numBranchPoints="5" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663306</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std._Iterator_base12._Adopt(std._Iterator_base12* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std._Container_base12 modopt(System.Runtime.CompilerServices.IsConst)*)</Name>
- <FileRef uid="4" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="37" ordinal="0" offset="0" sl="144" sc="0" el="144" ec="0" />
- <SequencePoint vc="0" uspid="38" ordinal="1" offset="3" sl="146" sc="0" el="146" ec="0" />
- <SequencePoint vc="0" uspid="39" ordinal="2" offset="12" sl="147" sc="0" el="147" ec="0" />
- <SequencePoint vc="0" uspid="40" ordinal="3" offset="34" sl="148" sc="0" el="148" ec="0" />
- <SequencePoint vc="0" uspid="41" ordinal="4" offset="41" sl="149" sc="0" el="149" ec="0" />
- <SequencePoint vc="0" uspid="42" ordinal="5" offset="43" sl="151" sc="0" el="151" ec="0" />
- <SequencePoint vc="0" uspid="43" ordinal="6" offset="46" sl="154" sc="0" el="154" ec="0" />
- <SequencePoint vc="0" uspid="44" ordinal="7" offset="51" sl="156" sc="0" el="156" ec="0" />
- <SequencePoint vc="0" uspid="45" ordinal="8" offset="60" sl="157" sc="0" el="157" ec="0" />
- <SequencePoint vc="0" uspid="46" ordinal="9" offset="66" sl="158" sc="0" el="158" ec="0" />
- <SequencePoint vc="0" uspid="47" ordinal="10" offset="74" sl="159" sc="0" el="159" ec="0" />
- <SequencePoint vc="0" uspid="48" ordinal="11" offset="79" sl="160" sc="0" el="160" ec="0" />
- <SequencePoint vc="0" uspid="49" ordinal="12" offset="98" sl="161" sc="0" el="161" ec="0" />
- <SequencePoint vc="0" uspid="50" ordinal="13" offset="105" sl="166" sc="0" el="166" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="51" ordinal="0" offset="1" path="0" />
- <BranchPoint vc="0" uspid="52" ordinal="1" offset="1" path="1" />
- <BranchPoint vc="0" uspid="53" ordinal="2" offset="49" path="0" />
- <BranchPoint vc="0" uspid="54" ordinal="3" offset="49" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="37" ordinal="0" offset="0" sl="144" sc="0" el="144" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="5" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="9" visitedSequencePoints="0" numBranchPoints="9" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="5" minCyclomaticComplexity="5" />
- <MetadataToken>100663307</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std._Iterator_base12._Orphan_me(std._Iterator_base12* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="4" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="55" ordinal="0" offset="0" sl="186" sc="0" el="186" ec="0" />
- <SequencePoint vc="0" uspid="56" ordinal="1" offset="4" sl="188" sc="0" el="188" ec="0" />
- <SequencePoint vc="0" uspid="57" ordinal="2" offset="9" sl="189" sc="0" el="189" ec="0" />
- <SequencePoint vc="0" uspid="58" ordinal="3" offset="18" sl="190" sc="0" el="190" ec="0" />
- <SequencePoint vc="0" uspid="59" ordinal="4" offset="25" sl="192" sc="0" el="192" ec="0" />
- <SequencePoint vc="0" uspid="60" ordinal="5" offset="29" sl="193" sc="0" el="193" ec="0" />
- <SequencePoint vc="0" uspid="61" ordinal="6" offset="49" sl="194" sc="0" el="194" ec="0" />
- <SequencePoint vc="0" uspid="62" ordinal="7" offset="55" sl="195" sc="0" el="195" ec="0" />
- <SequencePoint vc="0" uspid="63" ordinal="8" offset="58" sl="198" sc="0" el="198" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="64" ordinal="0" offset="2" path="0" />
- <BranchPoint vc="0" uspid="65" ordinal="1" offset="2" path="1" />
- <BranchPoint vc="0" uspid="66" ordinal="2" offset="11" path="0" />
- <BranchPoint vc="0" uspid="67" ordinal="3" offset="11" path="1" />
- <BranchPoint vc="0" uspid="68" ordinal="4" offset="16" path="0" />
- <BranchPoint vc="0" uspid="69" ordinal="5" offset="16" path="1" />
- <BranchPoint vc="0" uspid="70" ordinal="6" offset="27" path="0" />
- <BranchPoint vc="0" uspid="71" ordinal="7" offset="27" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="55" ordinal="0" offset="0" sl="186" sc="0" el="186" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663308</MetadataToken>
- <Name>std.allocator<void>* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.allocator<void>.{ctor}(std.allocator<void>* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.allocator<void> modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <FileRef uid="5" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="72" ordinal="0" offset="0" sl="244" sc="0" el="244" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="72" ordinal="0" offset="0" sl="244" sc="0" el="244" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="4" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="6" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
- <MetadataToken>100663309</MetadataToken>
- <Name>System.Void* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.runtime_error.__vecDelDtor(std.runtime_error* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.UInt32)</Name>
- <SequencePoints />
- <BranchPoints>
- <BranchPoint vc="0" uspid="74" ordinal="0" offset="3" path="0" />
- <BranchPoint vc="0" uspid="75" ordinal="1" offset="3" path="1" />
- <BranchPoint vc="0" uspid="76" ordinal="2" offset="26" path="0" />
- <BranchPoint vc="0" uspid="77" ordinal="3" offset="26" path="1" />
- <BranchPoint vc="0" uspid="78" ordinal="4" offset="51" path="0" />
- <BranchPoint vc="0" uspid="79" ordinal="5" offset="51" path="1" />
- </BranchPoints>
- <MethodPoint vc="0" uspid="73" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663310</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.runtime_error.{dtor}(std.runtime_error* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="80" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663311</MetadataToken>
- <Name>std.runtime_error* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.runtime_error.{ctor}(std.runtime_error* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.runtime_error modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="81" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663312</MetadataToken>
- <Name>std.locale* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.locale.{ctor}(std.locale* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.locale modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <FileRef uid="6" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="82" ordinal="0" offset="0" sl="309" sc="0" el="309" ec="0" />
- <SequencePoint vc="0" uspid="83" ordinal="1" offset="4" sl="310" sc="0" el="310" ec="0" />
- <SequencePoint vc="0" uspid="84" ordinal="2" offset="11" sl="311" sc="0" el="311" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="82" ordinal="0" offset="0" sl="309" sc="0" el="309" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="4" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="6" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
- <MetadataToken>100663313</MetadataToken>
- <Name>System.Void* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.system_error.__vecDelDtor(std.system_error* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.UInt32)</Name>
- <SequencePoints />
- <BranchPoints>
- <BranchPoint vc="0" uspid="86" ordinal="0" offset="3" path="0" />
- <BranchPoint vc="0" uspid="87" ordinal="1" offset="3" path="1" />
- <BranchPoint vc="0" uspid="88" ordinal="2" offset="26" path="0" />
- <BranchPoint vc="0" uspid="89" ordinal="3" offset="26" path="1" />
- <BranchPoint vc="0" uspid="90" ordinal="4" offset="51" path="0" />
- <BranchPoint vc="0" uspid="91" ordinal="5" offset="51" path="1" />
- </BranchPoints>
- <MethodPoint vc="0" uspid="85" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663314</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.system_error.{dtor}(std.system_error* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="92" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="4" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="6" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
- <MetadataToken>100663315</MetadataToken>
- <Name>System.Void* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.ios_base.failure.__vecDelDtor(std.ios_base/failure* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.UInt32)</Name>
- <SequencePoints />
- <BranchPoints>
- <BranchPoint vc="0" uspid="94" ordinal="0" offset="3" path="0" />
- <BranchPoint vc="0" uspid="95" ordinal="1" offset="3" path="1" />
- <BranchPoint vc="0" uspid="96" ordinal="2" offset="26" path="0" />
- <BranchPoint vc="0" uspid="97" ordinal="3" offset="26" path="1" />
- <BranchPoint vc="0" uspid="98" ordinal="4" offset="51" path="0" />
- <BranchPoint vc="0" uspid="99" ordinal="5" offset="51" path="1" />
- </BranchPoints>
- <MethodPoint vc="0" uspid="93" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663316</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.ios_base.failure.{dtor}(std.ios_base/failure* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="100" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663317</MetadataToken>
- <Name>std.ios_base/failure* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.ios_base.failure.{ctor}(std.ios_base/failure* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.ios_base/failure modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="101" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663318</MetadataToken>
- <Name>std.system_error* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.system_error.{ctor}(std.system_error* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.system_error modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="102" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663319</MetadataToken>
- <Name>std.allocator<char>* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.allocator<char>.{ctor}(std.allocator<char>* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.allocator<char> modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <FileRef uid="5" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="103" ordinal="0" offset="0" sl="167" sc="0" el="167" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="103" ordinal="0" offset="0" sl="167" sc="0" el="167" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="5" visitedSequencePoints="0" numBranchPoints="5" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663320</MetadataToken>
- <Name>std.basic_ostream<char,std::char_traits<char> >/sentry* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_ostream<char,std::char_traits<char> >.sentry.{ctor}(std.basic_ostream<char,std::char_traits<char> >/sentry* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.basic_ostream<char,std::char_traits<char> >* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <FileRef uid="7" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="104" ordinal="0" offset="0" sl="114" sc="0" el="114" ec="0" />
- <SequencePoint vc="0" uspid="105" ordinal="1" offset="8" sl="115" sc="0" el="115" ec="0" />
- <SequencePoint vc="0" uspid="106" ordinal="2" offset="36" sl="116" sc="0" el="116" ec="0" />
- <SequencePoint vc="0" uspid="107" ordinal="3" offset="54" sl="117" sc="0" el="117" ec="0" />
- <SequencePoint vc="0" uspid="108" ordinal="4" offset="85" sl="118" sc="0" el="118" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="109" ordinal="0" offset="20" path="0" />
- <BranchPoint vc="0" uspid="110" ordinal="1" offset="20" path="1" />
- <BranchPoint vc="0" uspid="111" ordinal="2" offset="34" path="0" />
- <BranchPoint vc="0" uspid="112" ordinal="3" offset="34" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="104" ordinal="0" offset="0" sl="114" sc="0" el="114" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663321</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_ostream<char,std::char_traits<char> >.sentry.{dtor}(std.basic_ostream<char,std::char_traits<char> >/sentry* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="7" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="113" ordinal="0" offset="0" sl="123" sc="0" el="123" ec="0" />
- <SequencePoint vc="0" uspid="114" ordinal="1" offset="9" sl="124" sc="0" el="124" ec="0" />
- <SequencePoint vc="0" uspid="115" ordinal="2" offset="31" sl="129" sc="0" el="129" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="116" ordinal="0" offset="5" path="0" />
- <BranchPoint vc="0" uspid="117" ordinal="1" offset="5" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="113" ordinal="0" offset="0" sl="123" sc="0" el="123" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663322</MetadataToken>
- <Name>method System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) *(std._Bool_struct modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced)) modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_ostream<char,std::char_traits<char> >.sentry..P6AXABU_Bool_struct@std@@@Z(std.basic_ostream<char,std::char_traits<char> >/sentry modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="7" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="118" ordinal="0" offset="0" sl="133" sc="0" el="133" ec="0" />
- <SequencePoint vc="0" uspid="119" ordinal="1" offset="15" sl="134" sc="0" el="134" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="120" ordinal="0" offset="4" path="0" />
- <BranchPoint vc="0" uspid="121" ordinal="1" offset="4" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="118" ordinal="0" offset="0" sl="133" sc="0" el="133" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663323</MetadataToken>
- <Name>std.allocator<wchar_t>* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.allocator<wchar_t>.{ctor}(std.allocator<wchar_t>* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.allocator<wchar_t> modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <FileRef uid="5" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="122" ordinal="0" offset="0" sl="167" sc="0" el="167" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="122" ordinal="0" offset="0" sl="167" sc="0" el="167" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="4" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663324</MetadataToken>
- <Name>std.basic_ostream<char,std::char_traits<char> >/_Sentry_base* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_ostream<char,std::char_traits<char> >._Sentry_base.{ctor}(std.basic_ostream<char,std::char_traits<char> >/_Sentry_base* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.basic_ostream<char,std::char_traits<char> >* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <FileRef uid="7" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="123" ordinal="0" offset="0" sl="91" sc="0" el="91" ec="0" />
- <SequencePoint vc="0" uspid="124" ordinal="1" offset="3" sl="92" sc="0" el="92" ec="0" />
- <SequencePoint vc="0" uspid="125" ordinal="2" offset="19" sl="93" sc="0" el="93" ec="0" />
- <SequencePoint vc="0" uspid="126" ordinal="3" offset="43" sl="94" sc="0" el="94" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="127" ordinal="0" offset="17" path="0" />
- <BranchPoint vc="0" uspid="128" ordinal="1" offset="17" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="123" ordinal="0" offset="0" sl="91" sc="0" el="91" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663325</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_ostream<char,std::char_traits<char> >._Sentry_base.{dtor}(std.basic_ostream<char,std::char_traits<char> >/_Sentry_base* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="7" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="129" ordinal="0" offset="0" sl="98" sc="0" el="98" ec="0" />
- <SequencePoint vc="0" uspid="130" ordinal="1" offset="16" sl="99" sc="0" el="99" ec="0" />
- <SequencePoint vc="0" uspid="131" ordinal="2" offset="40" sl="100" sc="0" el="100" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="132" ordinal="0" offset="14" path="0" />
- <BranchPoint vc="0" uspid="133" ordinal="1" offset="14" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="129" ordinal="0" offset="0" sl="98" sc="0" el="98" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="13" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="26" visitedSequencePoints="0" numBranchPoints="25" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="13" minCyclomaticComplexity="13" />
- <MetadataToken>100663326</MetadataToken>
- <Name>std.basic_ostream<char,std::char_traits<char> >* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced) modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::std.operator<<<struct std::char_traits<char> >(std.basic_ostream<char,std::char_traits<char> >* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced),System.SByte modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte) modopt(System.Runtime.CompilerServices.IsConst)*)</Name>
- <FileRef uid="7" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="134" ordinal="0" offset="0" sl="770" sc="0" el="770" ec="0" />
- <SequencePoint vc="0" uspid="135" ordinal="1" offset="13" sl="771" sc="0" el="771" ec="0" />
- <SequencePoint vc="0" uspid="136" ordinal="2" offset="21" sl="773" sc="0" el="773" ec="0" />
- <SequencePoint vc="0" uspid="137" ordinal="3" offset="77" sl="774" sc="0" el="774" ec="0" />
- <SequencePoint vc="0" uspid="138" ordinal="4" offset="86" sl="776" sc="0" el="776" ec="0" />
- <SequencePoint vc="0" uspid="139" ordinal="5" offset="97" sl="777" sc="0" el="777" ec="0" />
- <SequencePoint vc="0" uspid="140" ordinal="6" offset="101" sl="778" sc="0" el="778" ec="0" />
- <SequencePoint vc="0" uspid="141" ordinal="7" offset="107" sl="781" sc="0" el="781" ec="0" />
- <SequencePoint vc="0" uspid="142" ordinal="8" offset="129" sl="782" sc="0" el="782" ec="0" />
- <SequencePoint vc="0" uspid="143" ordinal="9" offset="141" sl="784" sc="0" el="784" ec="0" />
- <SequencePoint vc="0" uspid="144" ordinal="10" offset="190" sl="786" sc="0" el="786" ec="0" />
- <SequencePoint vc="0" uspid="145" ordinal="11" offset="194" sl="787" sc="0" el="787" ec="0" />
- <SequencePoint vc="0" uspid="146" ordinal="12" offset="196" sl="790" sc="0" el="790" ec="0" />
- <SequencePoint vc="0" uspid="147" ordinal="13" offset="198" sl="791" sc="0" el="791" ec="0" />
- <SequencePoint vc="0" uspid="148" ordinal="14" offset="223" sl="792" sc="0" el="792" ec="0" />
- <SequencePoint vc="0" uspid="149" ordinal="15" offset="227" sl="794" sc="0" el="794" ec="0" />
- <SequencePoint vc="0" uspid="150" ordinal="16" offset="230" sl="795" sc="0" el="795" ec="0" />
- <SequencePoint vc="0" uspid="151" ordinal="17" offset="242" sl="797" sc="0" el="797" ec="0" />
- <SequencePoint vc="0" uspid="152" ordinal="18" offset="291" sl="799" sc="0" el="799" ec="0" />
- <SequencePoint vc="0" uspid="153" ordinal="19" offset="295" sl="800" sc="0" el="800" ec="0" />
- <SequencePoint vc="0" uspid="154" ordinal="20" offset="297" sl="802" sc="0" el="802" ec="0" />
- <SequencePoint vc="0" uspid="155" ordinal="21" offset="339" sl="803" sc="0" el="803" ec="0" />
- <SequencePoint vc="0" uspid="156" ordinal="22" offset="387" sl="803" sc="0" el="803" ec="0" />
- <SequencePoint vc="0" uspid="157" ordinal="23" offset="408" sl="806" sc="0" el="806" ec="0" />
- <SequencePoint vc="0" uspid="158" ordinal="24" offset="422" sl="807" sc="0" el="807" ec="0" />
- <SequencePoint vc="0" uspid="159" ordinal="25" offset="452" sl="808" sc="0" el="808" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="160" ordinal="0" offset="35" path="0" />
- <BranchPoint vc="0" uspid="161" ordinal="1" offset="35" path="1" />
- <BranchPoint vc="0" uspid="162" ordinal="2" offset="50" path="0" />
- <BranchPoint vc="0" uspid="163" ordinal="3" offset="50" path="1" />
- <BranchPoint vc="0" uspid="164" ordinal="4" offset="93" path="0" />
- <BranchPoint vc="0" uspid="165" ordinal="5" offset="93" path="1" />
- <BranchPoint vc="0" uspid="166" ordinal="6" offset="127" path="0" />
- <BranchPoint vc="0" uspid="167" ordinal="7" offset="127" path="1" />
- <BranchPoint vc="0" uspid="168" ordinal="8" offset="139" path="0" />
- <BranchPoint vc="0" uspid="169" ordinal="9" offset="139" path="1" />
- <BranchPoint vc="0" uspid="170" ordinal="10" offset="188" path="0" />
- <BranchPoint vc="0" uspid="171" ordinal="11" offset="188" path="1" />
- <BranchPoint vc="0" uspid="172" ordinal="12" offset="199" path="0" />
- <BranchPoint vc="0" uspid="173" ordinal="13" offset="199" path="1" />
- <BranchPoint vc="0" uspid="174" ordinal="14" offset="221" path="0" />
- <BranchPoint vc="0" uspid="175" ordinal="15" offset="221" path="1" />
- <BranchPoint vc="0" uspid="176" ordinal="16" offset="228" path="0" />
- <BranchPoint vc="0" uspid="177" ordinal="17" offset="228" path="1" />
- <BranchPoint vc="0" uspid="178" ordinal="18" offset="240" path="0" />
- <BranchPoint vc="0" uspid="179" ordinal="19" offset="240" path="1" />
- <BranchPoint vc="0" uspid="180" ordinal="20" offset="289" path="0" />
- <BranchPoint vc="0" uspid="181" ordinal="21" offset="289" path="1" />
- <BranchPoint vc="0" uspid="182" ordinal="22" offset="391" path="0" />
- <BranchPoint vc="0" uspid="183" ordinal="23" offset="391" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="134" ordinal="0" offset="0" sl="770" sc="0" el="770" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663327</MetadataToken>
- <Name>std.bad_alloc* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.bad_alloc.{ctor}(std.bad_alloc* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.bad_alloc modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="184" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663328</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.NativeDll.IsInDllMain()</Name>
- <FileRef uid="8" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="185" ordinal="0" offset="0" sl="579" sc="0" el="579" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="186" ordinal="0" offset="8" path="0" />
- <BranchPoint vc="0" uspid="187" ordinal="1" offset="8" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="185" ordinal="0" offset="0" sl="579" sc="0" el="579" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663329</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.NativeDll.IsInProcessAttach()</Name>
- <FileRef uid="8" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="188" ordinal="0" offset="0" sl="584" sc="0" el="584" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="188" ordinal="0" offset="0" sl="584" sc="0" el="584" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663330</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.NativeDll.IsInProcessDetach()</Name>
- <FileRef uid="8" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="189" ordinal="0" offset="0" sl="589" sc="0" el="589" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="189" ordinal="0" offset="0" sl="589" sc="0" el="589" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663331</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.NativeDll.IsInVcclrit()</Name>
- <FileRef uid="8" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="190" ordinal="0" offset="0" sl="594" sc="0" el="594" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="191" ordinal="0" offset="8" path="0" />
- <BranchPoint vc="0" uspid="192" ordinal="1" offset="8" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="190" ordinal="0" offset="0" sl="594" sc="0" el="594" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="9" sequenceCoverage="40" branchCoverage="23.08" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="5" visitedSequencePoints="2" numBranchPoints="13" visitedBranchPoints="3" sequenceCoverage="40" branchCoverage="23.08" maxCyclomaticComplexity="9" minCyclomaticComplexity="9" />
- <MetadataToken>100663332</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.NativeDll.IsSafeForManagedCode()</Name>
- <FileRef uid="8" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="193" ordinal="0" offset="0" sl="599" sc="0" el="599" ec="0" />
- <SequencePoint vc="1" uspid="194" ordinal="1" offset="17" sl="601" sc="0" el="601" ec="0" />
- <SequencePoint vc="0" uspid="195" ordinal="2" offset="19" sl="604" sc="0" el="604" ec="0" />
- <SequencePoint vc="0" uspid="196" ordinal="3" offset="36" sl="606" sc="0" el="606" ec="0" />
- <SequencePoint vc="0" uspid="197" ordinal="4" offset="38" sl="609" sc="0" el="609" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="198" ordinal="0" offset="8" path="0" />
- <BranchPoint vc="0" uspid="199" ordinal="1" offset="8" path="1" />
- <BranchPoint vc="1" uspid="200" ordinal="2" offset="15" path="0" />
- <BranchPoint vc="0" uspid="201" ordinal="3" offset="15" path="1" />
- <BranchPoint vc="0" uspid="202" ordinal="4" offset="27" path="0" />
- <BranchPoint vc="0" uspid="203" ordinal="5" offset="27" path="1" />
- <BranchPoint vc="0" uspid="204" ordinal="6" offset="34" path="0" />
- <BranchPoint vc="0" uspid="205" ordinal="7" offset="34" path="1" />
- <BranchPoint vc="0" uspid="206" ordinal="8" offset="49" path="0" />
- <BranchPoint vc="0" uspid="207" ordinal="9" offset="49" path="1" />
- <BranchPoint vc="0" uspid="208" ordinal="10" offset="62" path="0" />
- <BranchPoint vc="0" uspid="209" ordinal="11" offset="62" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="193" ordinal="0" offset="0" sl="599" sc="0" el="599" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663333</MetadataToken>
- <Name>System.Void <Module>::<CrtImplementationDetails>.ThrowNestedModuleLoadException(System.Exception,System.Exception)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="210" ordinal="0" offset="0" sl="184" sc="0" el="184" ec="0" />
- <SequencePoint vc="0" uspid="211" ordinal="1" offset="13" sl="185" sc="0" el="185" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="210" ordinal="0" offset="0" sl="184" sc="0" el="184" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663334</MetadataToken>
- <Name>System.Void <Module>::<CrtImplementationDetails>.ThrowModuleLoadException(System.String)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="212" ordinal="0" offset="0" sl="189" sc="0" el="189" ec="0" />
- <SequencePoint vc="0" uspid="213" ordinal="1" offset="7" sl="190" sc="0" el="190" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="212" ordinal="0" offset="0" sl="189" sc="0" el="189" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663335</MetadataToken>
- <Name>System.Void <Module>::<CrtImplementationDetails>.ThrowModuleLoadException(System.String,System.Exception)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="214" ordinal="0" offset="0" sl="194" sc="0" el="194" ec="0" />
- <SequencePoint vc="0" uspid="215" ordinal="1" offset="8" sl="195" sc="0" el="195" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="214" ordinal="0" offset="0" sl="194" sc="0" el="194" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663336</MetadataToken>
- <Name>System.Void <Module>::<CrtImplementationDetails>.RegisterModuleUninitializer(System.EventHandler)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="216" ordinal="0" offset="0" sl="292" sc="0" el="292" ec="0" />
- <SequencePoint vc="1" uspid="217" ordinal="1" offset="11" sl="293" sc="0" el="293" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="216" ordinal="0" offset="0" sl="292" sc="0" el="292" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663337</MetadataToken>
- <Name>System.Guid <Module>::<CrtImplementationDetails>.FromGUID(_GUID modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="218" ordinal="0" offset="0" sl="304" sc="0" el="304" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="218" ordinal="0" offset="0" sl="304" sc="0" el="304" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="9" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663338</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.IsLong) modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::__get_default_appdomain(IUnknown**)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="219" ordinal="0" offset="0" sl="319" sc="0" el="319" ec="0" />
- <SequencePoint vc="0" uspid="220" ordinal="1" offset="2" sl="327" sc="0" el="327" ec="0" />
- <SequencePoint vc="0" uspid="221" ordinal="2" offset="47" sl="328" sc="0" el="328" ec="0" />
- <SequencePoint vc="0" uspid="222" ordinal="3" offset="49" sl="331" sc="0" el="331" ec="0" />
- <SequencePoint vc="0" uspid="223" ordinal="4" offset="55" sl="332" sc="0" el="332" ec="0" />
- <SequencePoint vc="0" uspid="224" ordinal="5" offset="57" sl="334" sc="0" el="334" ec="0" />
- <SequencePoint vc="0" uspid="225" ordinal="6" offset="61" sl="337" sc="0" el="337" ec="0" />
- <SequencePoint vc="0" uspid="226" ordinal="7" offset="75" sl="338" sc="0" el="338" ec="0" />
- <SequencePoint vc="0" uspid="227" ordinal="8" offset="87" sl="341" sc="0" el="341" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="228" ordinal="0" offset="59" path="0" />
- <BranchPoint vc="0" uspid="229" ordinal="1" offset="59" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="219" ordinal="0" offset="0" sl="319" sc="0" el="319" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663339</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::__release_appdomain(IUnknown*)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="230" ordinal="0" offset="0" sl="346" sc="0" el="346" ec="0" />
- <SequencePoint vc="0" uspid="231" ordinal="1" offset="12" sl="347" sc="0" el="347" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="230" ordinal="0" offset="0" sl="346" sc="0" el="346" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="11" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663340</MetadataToken>
- <Name>System.AppDomain <Module>::<CrtImplementationDetails>.GetDefaultDomain()</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="232" ordinal="0" offset="0" sl="356" sc="0" el="356" ec="0" />
- <SequencePoint vc="0" uspid="233" ordinal="1" offset="2" sl="357" sc="0" el="357" ec="0" />
- <SequencePoint vc="0" uspid="234" ordinal="2" offset="10" sl="359" sc="0" el="359" ec="0" />
- <SequencePoint vc="0" uspid="235" ordinal="3" offset="14" sl="363" sc="0" el="363" ec="0" />
- <SequencePoint vc="0" uspid="236" ordinal="4" offset="28" sl="365" sc="0" el="365" ec="0" />
- <SequencePoint vc="0" uspid="237" ordinal="5" offset="33" sl="382" sc="0" el="382" ec="0" />
- <SequencePoint vc="0" uspid="238" ordinal="6" offset="36" sl="373" sc="0" el="373" ec="0" />
- <SequencePoint vc="0" uspid="239" ordinal="7" offset="42" sl="374" sc="0" el="374" ec="0" />
- <SequencePoint vc="0" uspid="240" ordinal="8" offset="43" sl="378" sc="0" el="378" ec="0" />
- <SequencePoint vc="0" uspid="241" ordinal="9" offset="49" sl="381" sc="0" el="381" ec="0" />
- <SequencePoint vc="0" uspid="242" ordinal="10" offset="51" sl="382" sc="0" el="382" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="243" ordinal="0" offset="12" path="0" />
- <BranchPoint vc="0" uspid="244" ordinal="1" offset="12" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="232" ordinal="0" offset="0" sl="356" sc="0" el="356" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="9" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663341</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.DoCallBackInDefaultDomain(method System.Int32 modopt(System.Runtime.CompilerServices.IsLong) modopt(System.Runtime.CompilerServices.CallConvStdcall) *(System.Void*),System.Void*)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="245" ordinal="0" offset="0" sl="397" sc="0" el="397" ec="0" />
- <SequencePoint vc="0" uspid="246" ordinal="1" offset="39" sl="401" sc="0" el="401" ec="0" />
- <SequencePoint vc="0" uspid="247" ordinal="2" offset="45" sl="403" sc="0" el="403" ec="0" />
- <SequencePoint vc="0" uspid="248" ordinal="3" offset="68" sl="404" sc="0" el="404" ec="0" />
- <SequencePoint vc="0" uspid="249" ordinal="4" offset="72" sl="406" sc="0" el="406" ec="0" />
- <SequencePoint vc="0" uspid="250" ordinal="5" offset="78" sl="410" sc="0" el="410" ec="0" />
- <SequencePoint vc="0" uspid="251" ordinal="6" offset="80" sl="411" sc="0" el="411" ec="0" />
- <SequencePoint vc="0" uspid="252" ordinal="7" offset="92" sl="412" sc="0" el="412" ec="0" />
- <SequencePoint vc="0" uspid="253" ordinal="8" offset="93" sl="413" sc="0" el="413" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="254" ordinal="0" offset="70" path="0" />
- <BranchPoint vc="0" uspid="255" ordinal="1" offset="70" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="245" ordinal="0" offset="0" sl="397" sc="0" el="397" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663342</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.IsLong) modopt(System.Runtime.CompilerServices.CallConvStdcall) <Module>::<CrtImplementationDetails>.DefaultDomain.DoNothing(System.Void*)</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="256" ordinal="0" offset="0" sl="187" sc="0" el="187" ec="0" />
- <SequencePoint vc="0" uspid="257" ordinal="1" offset="15" sl="188" sc="0" el="188" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="256" ordinal="0" offset="0" sl="187" sc="0" el="187" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="5" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="12" visitedSequencePoints="0" numBranchPoints="9" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="5" minCyclomaticComplexity="5" />
- <MetadataToken>100663343</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.DefaultDomain.HasPerProcess()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="258" ordinal="0" offset="0" sl="200" sc="0" el="200" ec="0" />
- <SequencePoint vc="0" uspid="259" ordinal="1" offset="8" sl="202" sc="0" el="202" ec="0" />
- <SequencePoint vc="0" uspid="260" ordinal="2" offset="14" sl="204" sc="0" el="204" ec="0" />
- <SequencePoint vc="0" uspid="261" ordinal="3" offset="26" sl="206" sc="0" el="206" ec="0" />
- <SequencePoint vc="0" uspid="262" ordinal="4" offset="30" sl="211" sc="0" el="211" ec="0" />
- <SequencePoint vc="0" uspid="263" ordinal="5" offset="34" sl="204" sc="0" el="204" ec="0" />
- <SequencePoint vc="0" uspid="264" ordinal="6" offset="42" sl="206" sc="0" el="206" ec="0" />
- <SequencePoint vc="0" uspid="265" ordinal="7" offset="44" sl="208" sc="0" el="208" ec="0" />
- <SequencePoint vc="0" uspid="266" ordinal="8" offset="50" sl="209" sc="0" el="209" ec="0" />
- <SequencePoint vc="0" uspid="267" ordinal="9" offset="52" sl="214" sc="0" el="214" ec="0" />
- <SequencePoint vc="0" uspid="268" ordinal="10" offset="58" sl="215" sc="0" el="215" ec="0" />
- <SequencePoint vc="0" uspid="269" ordinal="11" offset="60" sl="217" sc="0" el="217" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="270" ordinal="0" offset="6" path="0" />
- <BranchPoint vc="0" uspid="271" ordinal="1" offset="6" path="1" />
- <BranchPoint vc="0" uspid="272" ordinal="2" offset="24" path="0" />
- <BranchPoint vc="0" uspid="273" ordinal="3" offset="24" path="1" />
- <BranchPoint vc="0" uspid="274" ordinal="4" offset="28" path="0" />
- <BranchPoint vc="0" uspid="275" ordinal="5" offset="28" path="1" />
- <BranchPoint vc="0" uspid="276" ordinal="6" offset="40" path="0" />
- <BranchPoint vc="0" uspid="277" ordinal="7" offset="40" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="258" ordinal="0" offset="0" sl="200" sc="0" el="200" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="8" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="20" visitedSequencePoints="0" numBranchPoints="15" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="8" minCyclomaticComplexity="8" />
- <MetadataToken>100663344</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.DefaultDomain.HasNative()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="278" ordinal="0" offset="0" sl="223" sc="0" el="223" ec="0" />
- <SequencePoint vc="0" uspid="279" ordinal="1" offset="8" sl="225" sc="0" el="225" ec="0" />
- <SequencePoint vc="0" uspid="280" ordinal="2" offset="14" sl="228" sc="0" el="228" ec="0" />
- <SequencePoint vc="0" uspid="281" ordinal="3" offset="26" sl="230" sc="0" el="230" ec="0" />
- <SequencePoint vc="0" uspid="282" ordinal="4" offset="30" sl="235" sc="0" el="235" ec="0" />
- <SequencePoint vc="0" uspid="283" ordinal="5" offset="34" sl="228" sc="0" el="228" ec="0" />
- <SequencePoint vc="0" uspid="284" ordinal="6" offset="42" sl="242" sc="0" el="242" ec="0" />
- <SequencePoint vc="0" uspid="285" ordinal="7" offset="44" sl="232" sc="0" el="232" ec="0" />
- <SequencePoint vc="0" uspid="286" ordinal="8" offset="50" sl="233" sc="0" el="233" ec="0" />
- <SequencePoint vc="0" uspid="287" ordinal="9" offset="52" sl="238" sc="0" el="238" ec="0" />
- <SequencePoint vc="0" uspid="288" ordinal="10" offset="58" sl="240" sc="0" el="240" ec="0" />
- <SequencePoint vc="0" uspid="289" ordinal="11" offset="70" sl="242" sc="0" el="242" ec="0" />
- <SequencePoint vc="0" uspid="290" ordinal="12" offset="74" sl="247" sc="0" el="247" ec="0" />
- <SequencePoint vc="0" uspid="291" ordinal="13" offset="78" sl="240" sc="0" el="240" ec="0" />
- <SequencePoint vc="0" uspid="292" ordinal="14" offset="86" sl="242" sc="0" el="242" ec="0" />
- <SequencePoint vc="0" uspid="293" ordinal="15" offset="88" sl="244" sc="0" el="244" ec="0" />
- <SequencePoint vc="0" uspid="294" ordinal="16" offset="94" sl="245" sc="0" el="245" ec="0" />
- <SequencePoint vc="0" uspid="295" ordinal="17" offset="96" sl="250" sc="0" el="250" ec="0" />
- <SequencePoint vc="0" uspid="296" ordinal="18" offset="102" sl="251" sc="0" el="251" ec="0" />
- <SequencePoint vc="0" uspid="297" ordinal="19" offset="104" sl="253" sc="0" el="253" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="298" ordinal="0" offset="6" path="0" />
- <BranchPoint vc="0" uspid="299" ordinal="1" offset="6" path="1" />
- <BranchPoint vc="0" uspid="300" ordinal="2" offset="24" path="0" />
- <BranchPoint vc="0" uspid="301" ordinal="3" offset="24" path="1" />
- <BranchPoint vc="0" uspid="302" ordinal="4" offset="28" path="0" />
- <BranchPoint vc="0" uspid="303" ordinal="5" offset="28" path="1" />
- <BranchPoint vc="0" uspid="304" ordinal="6" offset="40" path="0" />
- <BranchPoint vc="0" uspid="305" ordinal="7" offset="40" path="1" />
- <BranchPoint vc="0" uspid="306" ordinal="8" offset="68" path="0" />
- <BranchPoint vc="0" uspid="307" ordinal="9" offset="68" path="1" />
- <BranchPoint vc="0" uspid="308" ordinal="10" offset="72" path="0" />
- <BranchPoint vc="0" uspid="309" ordinal="11" offset="72" path="1" />
- <BranchPoint vc="0" uspid="310" ordinal="12" offset="84" path="0" />
- <BranchPoint vc="0" uspid="311" ordinal="13" offset="84" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="278" ordinal="0" offset="0" sl="223" sc="0" el="223" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="6" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="11" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="6" minCyclomaticComplexity="6" />
- <MetadataToken>100663345</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.DefaultDomain.NeedsInitialization()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="312" ordinal="0" offset="0" sl="259" sc="0" el="259" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="313" ordinal="0" offset="5" path="0" />
- <BranchPoint vc="0" uspid="314" ordinal="1" offset="5" path="1" />
- <BranchPoint vc="0" uspid="315" ordinal="2" offset="12" path="0" />
- <BranchPoint vc="0" uspid="316" ordinal="3" offset="12" path="1" />
- <BranchPoint vc="0" uspid="317" ordinal="4" offset="19" path="0" />
- <BranchPoint vc="0" uspid="318" ordinal="5" offset="19" path="1" />
- <BranchPoint vc="0" uspid="319" ordinal="6" offset="26" path="0" />
- <BranchPoint vc="0" uspid="320" ordinal="7" offset="26" path="1" />
- <BranchPoint vc="0" uspid="321" ordinal="8" offset="35" path="0" />
- <BranchPoint vc="0" uspid="322" ordinal="9" offset="35" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="312" ordinal="0" offset="0" sl="259" sc="0" el="259" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663346</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.DefaultDomain.NeedsUninitialization()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="323" ordinal="0" offset="0" sl="266" sc="0" el="266" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="323" ordinal="0" offset="0" sl="266" sc="0" el="266" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663347</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.DefaultDomain.Initialize()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="324" ordinal="0" offset="0" sl="273" sc="0" el="273" ec="0" />
- <SequencePoint vc="0" uspid="325" ordinal="1" offset="11" sl="274" sc="0" el="274" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="324" ordinal="0" offset="0" sl="273" sc="0" el="273" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663348</MetadataToken>
- <Name>System.Void <Module>::?A0xf26aa9b7.??__E?Initialized@CurrentDomain@<CrtImplementationDetails>@@$$Q2HA@@YMXXZ()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="326" ordinal="0" offset="0" sl="305" sc="0" el="305" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="326" ordinal="0" offset="0" sl="305" sc="0" el="305" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663349</MetadataToken>
- <Name>System.Void <Module>::?A0xf26aa9b7.??__E?Uninitialized@CurrentDomain@<CrtImplementationDetails>@@$$Q2HA@@YMXXZ()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="327" ordinal="0" offset="0" sl="306" sc="0" el="306" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="327" ordinal="0" offset="0" sl="306" sc="0" el="306" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663350</MetadataToken>
- <Name>System.Void <Module>::?A0xf26aa9b7.??__E?IsDefaultDomain@CurrentDomain@<CrtImplementationDetails>@@$$Q2_NA@@YMXXZ()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="328" ordinal="0" offset="0" sl="307" sc="0" el="307" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="328" ordinal="0" offset="0" sl="307" sc="0" el="307" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663351</MetadataToken>
- <Name>System.Void <Module>::?A0xf26aa9b7.??__E?InitializedVtables@CurrentDomain@<CrtImplementationDetails>@@$$Q2W4State@Progress@2@A@@YMXXZ()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="329" ordinal="0" offset="0" sl="308" sc="0" el="308" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="329" ordinal="0" offset="0" sl="308" sc="0" el="308" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663352</MetadataToken>
- <Name>System.Void <Module>::?A0xf26aa9b7.??__E?InitializedNative@CurrentDomain@<CrtImplementationDetails>@@$$Q2W4State@Progress@2@A@@YMXXZ()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="330" ordinal="0" offset="0" sl="309" sc="0" el="309" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="330" ordinal="0" offset="0" sl="309" sc="0" el="309" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663353</MetadataToken>
- <Name>System.Void <Module>::?A0xf26aa9b7.??__E?InitializedPerProcess@CurrentDomain@<CrtImplementationDetails>@@$$Q2W4State@Progress@2@A@@YMXXZ()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="331" ordinal="0" offset="0" sl="310" sc="0" el="310" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="331" ordinal="0" offset="0" sl="310" sc="0" el="310" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663354</MetadataToken>
- <Name>System.Void <Module>::?A0xf26aa9b7.??__E?InitializedPerAppDomain@CurrentDomain@<CrtImplementationDetails>@@$$Q2W4State@Progress@2@A@@YMXXZ()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="332" ordinal="0" offset="0" sl="311" sc="0" el="311" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="332" ordinal="0" offset="0" sl="311" sc="0" el="311" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="5" visitedSequencePoints="5" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663355</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::<CrtImplementationDetails>.LanguageSupport.InitializeVtables(<CrtImplementationDetails>.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="333" ordinal="0" offset="0" sl="325" sc="0" el="325" ec="0" />
- <SequencePoint vc="1" uspid="334" ordinal="1" offset="12" sl="326" sc="0" el="326" ec="0" />
- <SequencePoint vc="1" uspid="335" ordinal="2" offset="18" sl="327" sc="0" el="327" ec="0" />
- <SequencePoint vc="1" uspid="336" ordinal="3" offset="33" sl="328" sc="0" el="328" ec="0" />
- <SequencePoint vc="1" uspid="337" ordinal="4" offset="39" sl="329" sc="0" el="329" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="333" ordinal="0" offset="0" sl="325" sc="0" el="325" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663356</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::<CrtImplementationDetails>.LanguageSupport.InitializeDefaultAppDomain(<CrtImplementationDetails>.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="338" ordinal="0" offset="0" sl="337" sc="0" el="337" ec="0" />
- <SequencePoint vc="0" uspid="339" ordinal="1" offset="12" sl="338" sc="0" el="338" ec="0" />
- <SequencePoint vc="0" uspid="340" ordinal="2" offset="17" sl="339" sc="0" el="339" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="338" ordinal="0" offset="0" sl="337" sc="0" el="337" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="5" sequenceCoverage="41.18" branchCoverage="44.44" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="17" visitedSequencePoints="7" numBranchPoints="9" visitedBranchPoints="4" sequenceCoverage="41.18" branchCoverage="44.44" maxCyclomaticComplexity="5" minCyclomaticComplexity="5" />
- <MetadataToken>100663357</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::<CrtImplementationDetails>.LanguageSupport.InitializeNative(<CrtImplementationDetails>.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="341" ordinal="0" offset="0" sl="348" sc="0" el="348" ec="0" />
- <SequencePoint vc="1" uspid="342" ordinal="1" offset="12" sl="350" sc="0" el="350" ec="0" />
- <SequencePoint vc="1" uspid="343" ordinal="2" offset="17" sl="352" sc="0" el="352" ec="0" />
- <SequencePoint vc="1" uspid="344" ordinal="3" offset="23" sl="355" sc="0" el="355" ec="0" />
- <SequencePoint vc="0" uspid="345" ordinal="4" offset="30" sl="357" sc="0" el="357" ec="0" />
- <SequencePoint vc="1" uspid="346" ordinal="5" offset="37" sl="363" sc="0" el="363" ec="0" />
- <SequencePoint vc="0" uspid="347" ordinal="6" offset="47" sl="365" sc="0" el="365" ec="0" />
- <SequencePoint vc="1" uspid="348" ordinal="7" offset="56" sl="367" sc="0" el="367" ec="0" />
- <SequencePoint vc="0" uspid="349" ordinal="8" offset="65" sl="369" sc="0" el="369" ec="0" />
- <SequencePoint vc="0" uspid="350" ordinal="9" offset="71" sl="370" sc="0" el="370" ec="0" />
- <SequencePoint vc="0" uspid="351" ordinal="10" offset="79" sl="371" sc="0" el="371" ec="0" />
- <SequencePoint vc="0" uspid="352" ordinal="11" offset="96" sl="373" sc="0" el="373" ec="0" />
- <SequencePoint vc="0" uspid="353" ordinal="12" offset="107" sl="375" sc="0" el="375" ec="0" />
- <SequencePoint vc="0" uspid="354" ordinal="13" offset="122" sl="376" sc="0" el="376" ec="0" />
- <SequencePoint vc="0" uspid="355" ordinal="14" offset="130" sl="377" sc="0" el="377" ec="0" />
- <SequencePoint vc="0" uspid="356" ordinal="15" offset="136" sl="378" sc="0" el="378" ec="0" />
- <SequencePoint vc="1" uspid="357" ordinal="16" offset="142" sl="380" sc="0" el="380" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="358" ordinal="0" offset="28" path="0" />
- <BranchPoint vc="1" uspid="359" ordinal="1" offset="28" path="1" />
- <BranchPoint vc="0" uspid="360" ordinal="2" offset="45" path="0" />
- <BranchPoint vc="1" uspid="361" ordinal="3" offset="45" path="1" />
- <BranchPoint vc="0" uspid="362" ordinal="4" offset="63" path="0" />
- <BranchPoint vc="1" uspid="363" ordinal="5" offset="63" path="1" />
- <BranchPoint vc="0" uspid="364" ordinal="6" offset="94" path="0" />
- <BranchPoint vc="0" uspid="365" ordinal="7" offset="94" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="341" ordinal="0" offset="0" sl="348" sc="0" el="348" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="7" visitedSequencePoints="7" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663358</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::<CrtImplementationDetails>.LanguageSupport.InitializePerProcess(<CrtImplementationDetails>.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="366" ordinal="0" offset="0" sl="389" sc="0" el="389" ec="0" />
- <SequencePoint vc="1" uspid="367" ordinal="1" offset="12" sl="391" sc="0" el="391" ec="0" />
- <SequencePoint vc="1" uspid="368" ordinal="2" offset="18" sl="393" sc="0" el="393" ec="0" />
- <SequencePoint vc="1" uspid="369" ordinal="3" offset="24" sl="395" sc="0" el="395" ec="0" />
- <SequencePoint vc="1" uspid="370" ordinal="4" offset="39" sl="397" sc="0" el="397" ec="0" />
- <SequencePoint vc="1" uspid="371" ordinal="5" offset="45" sl="399" sc="0" el="399" ec="0" />
- <SequencePoint vc="1" uspid="372" ordinal="6" offset="51" sl="400" sc="0" el="400" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="366" ordinal="0" offset="0" sl="389" sc="0" el="389" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="6" visitedSequencePoints="6" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663359</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::<CrtImplementationDetails>.LanguageSupport.InitializePerAppDomain(<CrtImplementationDetails>.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="373" ordinal="0" offset="0" sl="409" sc="0" el="409" ec="0" />
- <SequencePoint vc="1" uspid="374" ordinal="1" offset="12" sl="411" sc="0" el="411" ec="0" />
- <SequencePoint vc="1" uspid="375" ordinal="2" offset="18" sl="413" sc="0" el="413" ec="0" />
- <SequencePoint vc="1" uspid="376" ordinal="3" offset="24" sl="415" sc="0" el="415" ec="0" />
- <SequencePoint vc="1" uspid="377" ordinal="4" offset="39" sl="417" sc="0" el="417" ec="0" />
- <SequencePoint vc="1" uspid="378" ordinal="5" offset="45" sl="418" sc="0" el="418" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="373" ordinal="0" offset="0" sl="409" sc="0" el="409" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="4" visitedSequencePoints="4" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663360</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::<CrtImplementationDetails>.LanguageSupport.InitializeUninitializer(<CrtImplementationDetails>.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="379" ordinal="0" offset="0" sl="425" sc="0" el="425" ec="0" />
- <SequencePoint vc="1" uspid="380" ordinal="1" offset="12" sl="426" sc="0" el="426" ec="0" />
- <SequencePoint vc="1" uspid="381" ordinal="2" offset="24" sl="427" sc="0" el="427" ec="0" />
- <SequencePoint vc="1" uspid="382" ordinal="3" offset="29" sl="428" sc="0" el="428" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="379" ordinal="0" offset="0" sl="425" sc="0" el="425" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="10" sequenceCoverage="80.56" branchCoverage="47.37" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="36" visitedSequencePoints="29" numBranchPoints="19" visitedBranchPoints="9" sequenceCoverage="80.56" branchCoverage="47.37" maxCyclomaticComplexity="10" minCyclomaticComplexity="10" />
- <MetadataToken>100663361</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::<CrtImplementationDetails>.LanguageSupport._Initialize(<CrtImplementationDetails>.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="383" ordinal="0" offset="0" sl="438" sc="0" el="438" ec="0" />
- <SequencePoint vc="1" uspid="384" ordinal="1" offset="15" sl="440" sc="0" el="440" ec="0" />
- <SequencePoint vc="1" uspid="385" ordinal="2" offset="22" sl="442" sc="0" el="442" ec="0" />
- <SequencePoint vc="1" uspid="386" ordinal="3" offset="28" sl="448" sc="0" el="448" ec="0" />
- <SequencePoint vc="1" uspid="387" ordinal="4" offset="35" sl="449" sc="0" el="449" ec="0" />
- <SequencePoint vc="1" uspid="388" ordinal="5" offset="38" sl="450" sc="0" el="450" ec="0" />
- <SequencePoint vc="1" uspid="389" ordinal="6" offset="40" sl="451" sc="0" el="451" ec="0" />
- <SequencePoint vc="1" uspid="390" ordinal="7" offset="43" sl="452" sc="0" el="452" ec="0" />
- <SequencePoint vc="2" uspid="391" ordinal="8" offset="48" sl="457" sc="0" el="457" ec="0" />
- <SequencePoint vc="1" uspid="392" ordinal="9" offset="51" sl="460" sc="0" el="460" ec="0" />
- <SequencePoint vc="1" uspid="393" ordinal="10" offset="53" sl="465" sc="0" el="465" ec="0" />
- <SequencePoint vc="1" uspid="394" ordinal="11" offset="100" sl="467" sc="0" el="467" ec="0" />
- <SequencePoint vc="1" uspid="395" ordinal="12" offset="103" sl="469" sc="0" el="469" ec="0" />
- <SequencePoint vc="0" uspid="396" ordinal="13" offset="107" sl="471" sc="0" el="471" ec="0" />
- <SequencePoint vc="0" uspid="397" ordinal="14" offset="112" sl="473" sc="0" el="473" ec="0" />
- <SequencePoint vc="0" uspid="398" ordinal="15" offset="115" sl="474" sc="0" el="474" ec="0" />
- <SequencePoint vc="1" uspid="399" ordinal="16" offset="117" sl="476" sc="0" el="476" ec="0" />
- <SequencePoint vc="1" uspid="400" ordinal="17" offset="118" sl="477" sc="0" el="477" ec="0" />
- <SequencePoint vc="0" uspid="401" ordinal="18" offset="121" sl="482" sc="0" el="482" ec="0" />
- <SequencePoint vc="1" uspid="402" ordinal="19" offset="131" sl="484" sc="0" el="484" ec="0" />
- <SequencePoint vc="1" uspid="403" ordinal="20" offset="133" sl="486" sc="0" el="486" ec="0" />
- <SequencePoint vc="1" uspid="404" ordinal="21" offset="139" sl="488" sc="0" el="488" ec="0" />
- <SequencePoint vc="1" uspid="405" ordinal="22" offset="146" sl="490" sc="0" el="490" ec="0" />
- <SequencePoint vc="1" uspid="406" ordinal="23" offset="152" sl="491" sc="0" el="491" ec="0" />
- <SequencePoint vc="0" uspid="407" ordinal="24" offset="160" sl="493" sc="0" el="493" ec="0" />
- <SequencePoint vc="0" uspid="408" ordinal="25" offset="167" sl="509" sc="0" el="509" ec="0" />
- <SequencePoint vc="1" uspid="409" ordinal="26" offset="170" sl="512" sc="0" el="512" ec="0" />
- <SequencePoint vc="1" uspid="410" ordinal="27" offset="172" sl="514" sc="0" el="514" ec="0" />
- <SequencePoint vc="1" uspid="411" ordinal="28" offset="176" sl="519" sc="0" el="519" ec="0" />
- <SequencePoint vc="1" uspid="412" ordinal="29" offset="197" sl="522" sc="0" el="522" ec="0" />
- <SequencePoint vc="1" uspid="413" ordinal="30" offset="198" sl="532" sc="0" el="532" ec="0" />
- <SequencePoint vc="0" uspid="414" ordinal="31" offset="202" sl="534" sc="0" el="534" ec="0" />
- <SequencePoint vc="1" uspid="415" ordinal="32" offset="208" sl="541" sc="0" el="541" ec="0" />
- <SequencePoint vc="1" uspid="416" ordinal="33" offset="214" sl="543" sc="0" el="543" ec="0" />
- <SequencePoint vc="1" uspid="417" ordinal="34" offset="220" sl="545" sc="0" el="545" ec="0" />
- <SequencePoint vc="1" uspid="418" ordinal="35" offset="226" sl="546" sc="0" el="546" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="419" ordinal="0" offset="20" path="0" />
- <BranchPoint vc="0" uspid="420" ordinal="1" offset="20" path="1" />
- <BranchPoint vc="1" uspid="421" ordinal="2" offset="49" path="0" />
- <BranchPoint vc="1" uspid="422" ordinal="3" offset="49" path="1" />
- <BranchPoint vc="1" uspid="423" ordinal="4" offset="101" path="0" />
- <BranchPoint vc="0" uspid="424" ordinal="5" offset="101" path="1" />
- <BranchPoint vc="0" uspid="425" ordinal="6" offset="110" path="0" />
- <BranchPoint vc="0" uspid="426" ordinal="7" offset="110" path="1" />
- <BranchPoint vc="0" uspid="427" ordinal="8" offset="119" path="0" />
- <BranchPoint vc="1" uspid="428" ordinal="9" offset="119" path="1" />
- <BranchPoint vc="1" uspid="429" ordinal="10" offset="144" path="0" />
- <BranchPoint vc="0" uspid="430" ordinal="11" offset="144" path="1" />
- <BranchPoint vc="0" uspid="431" ordinal="12" offset="165" path="0" />
- <BranchPoint vc="0" uspid="432" ordinal="13" offset="165" path="1" />
- <BranchPoint vc="1" uspid="433" ordinal="14" offset="174" path="0" />
- <BranchPoint vc="0" uspid="434" ordinal="15" offset="174" path="1" />
- <BranchPoint vc="0" uspid="435" ordinal="16" offset="200" path="0" />
- <BranchPoint vc="1" uspid="436" ordinal="17" offset="200" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="383" ordinal="0" offset="0" sl="438" sc="0" el="438" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663362</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.LanguageSupport.UninitializeAppDomain()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="437" ordinal="0" offset="0" sl="552" sc="0" el="552" ec="0" />
- <SequencePoint vc="1" uspid="438" ordinal="1" offset="5" sl="553" sc="0" el="553" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="437" ordinal="0" offset="0" sl="552" sc="0" el="552" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="62.5" branchCoverage="66.67" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="8" visitedSequencePoints="5" numBranchPoints="3" visitedBranchPoints="2" sequenceCoverage="62.5" branchCoverage="66.67" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663363</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.IsLong) modopt(System.Runtime.CompilerServices.CallConvStdcall) <Module>::<CrtImplementationDetails>.LanguageSupport._UninitializeDefaultDomain(System.Void*)</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="439" ordinal="0" offset="0" sl="564" sc="0" el="564" ec="0" />
- <SequencePoint vc="1" uspid="440" ordinal="1" offset="5" sl="566" sc="0" el="566" ec="0" />
- <SequencePoint vc="1" uspid="441" ordinal="2" offset="11" sl="568" sc="0" el="568" ec="0" />
- <SequencePoint vc="0" uspid="442" ordinal="3" offset="18" sl="571" sc="0" el="571" ec="0" />
- <SequencePoint vc="0" uspid="443" ordinal="4" offset="23" sl="572" sc="0" el="572" ec="0" />
- <SequencePoint vc="0" uspid="444" ordinal="5" offset="31" sl="574" sc="0" el="574" ec="0" />
- <SequencePoint vc="1" uspid="445" ordinal="6" offset="37" sl="577" sc="0" el="577" ec="0" />
- <SequencePoint vc="1" uspid="446" ordinal="7" offset="43" sl="579" sc="0" el="579" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="447" ordinal="0" offset="16" path="0" />
- <BranchPoint vc="1" uspid="448" ordinal="1" offset="16" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="439" ordinal="0" offset="0" sl="564" sc="0" el="564" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="3" sequenceCoverage="83.33" branchCoverage="60" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="6" visitedSequencePoints="5" numBranchPoints="5" visitedBranchPoints="3" sequenceCoverage="83.33" branchCoverage="60" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663364</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.LanguageSupport.UninitializeDefaultDomain()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="449" ordinal="0" offset="0" sl="585" sc="0" el="585" ec="0" />
- <SequencePoint vc="1" uspid="450" ordinal="1" offset="7" sl="587" sc="0" el="587" ec="0" />
- <SequencePoint vc="1" uspid="451" ordinal="2" offset="19" sl="589" sc="0" el="589" ec="0" />
- <SequencePoint vc="1" uspid="452" ordinal="3" offset="26" sl="591" sc="0" el="591" ec="0" />
- <SequencePoint vc="0" uspid="453" ordinal="4" offset="28" sl="593" sc="0" el="593" ec="0" />
- <SequencePoint vc="1" uspid="454" ordinal="5" offset="39" sl="596" sc="0" el="596" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="455" ordinal="0" offset="5" path="0" />
- <BranchPoint vc="0" uspid="456" ordinal="1" offset="5" path="1" />
- <BranchPoint vc="1" uspid="457" ordinal="2" offset="17" path="0" />
- <BranchPoint vc="0" uspid="458" ordinal="3" offset="17" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="449" ordinal="0" offset="0" sl="585" sc="0" el="585" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="4" sequenceCoverage="100" branchCoverage="57.14" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="6" visitedSequencePoints="6" numBranchPoints="7" visitedBranchPoints="4" sequenceCoverage="100" branchCoverage="57.14" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
- <MetadataToken>100663365</MetadataToken>
- <Name>System.Void <Module>::<CrtImplementationDetails>.LanguageSupport.DomainUnload(System.Object,System.EventArgs)</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="459" ordinal="0" offset="0" sl="608" sc="0" el="608" ec="0" />
- <SequencePoint vc="1" uspid="460" ordinal="1" offset="20" sl="611" sc="0" el="611" ec="0" />
- <SequencePoint vc="1" uspid="461" ordinal="2" offset="33" sl="614" sc="0" el="614" ec="0" />
- <SequencePoint vc="1" uspid="462" ordinal="3" offset="38" sl="617" sc="0" el="617" ec="0" />
- <SequencePoint vc="1" uspid="463" ordinal="4" offset="41" sl="619" sc="0" el="619" ec="0" />
- <SequencePoint vc="1" uspid="464" ordinal="5" offset="46" sl="623" sc="0" el="623" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="465" ordinal="0" offset="5" path="0" />
- <BranchPoint vc="0" uspid="466" ordinal="1" offset="5" path="1" />
- <BranchPoint vc="1" uspid="467" ordinal="2" offset="18" path="0" />
- <BranchPoint vc="0" uspid="468" ordinal="3" offset="18" path="1" />
- <BranchPoint vc="1" uspid="469" ordinal="4" offset="39" path="0" />
- <BranchPoint vc="0" uspid="470" ordinal="5" offset="39" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="459" ordinal="0" offset="0" sl="608" sc="0" el="608" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="10" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663366</MetadataToken>
- <Name>System.Void <Module>::<CrtImplementationDetails>.LanguageSupport.Cleanup(<CrtImplementationDetails>.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.Exception)</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="471" ordinal="0" offset="0" sl="638" sc="0" el="638" ec="0" />
- <SequencePoint vc="0" uspid="472" ordinal="1" offset="15" sl="646" sc="0" el="646" ec="0" />
- <SequencePoint vc="0" uspid="473" ordinal="2" offset="20" sl="649" sc="0" el="649" ec="0" />
- <SequencePoint vc="0" uspid="474" ordinal="3" offset="23" sl="651" sc="0" el="651" ec="0" />
- <SequencePoint vc="0" uspid="475" ordinal="4" offset="28" sl="654" sc="0" el="654" ec="0" />
- <SequencePoint vc="0" uspid="476" ordinal="5" offset="30" sl="655" sc="0" el="655" ec="0" />
- <SequencePoint vc="0" uspid="477" ordinal="6" offset="31" sl="657" sc="0" el="657" ec="0" />
- <SequencePoint vc="0" uspid="478" ordinal="7" offset="38" sl="659" sc="0" el="659" ec="0" />
- <SequencePoint vc="0" uspid="479" ordinal="8" offset="41" sl="662" sc="0" el="662" ec="0" />
- <SequencePoint vc="0" uspid="480" ordinal="9" offset="50" sl="664" sc="0" el="664" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="481" ordinal="0" offset="21" path="0" />
- <BranchPoint vc="0" uspid="482" ordinal="1" offset="21" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="471" ordinal="0" offset="0" sl="638" sc="0" el="638" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663367</MetadataToken>
- <Name><CrtImplementationDetails>.LanguageSupport* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::<CrtImplementationDetails>.LanguageSupport.{ctor}(<CrtImplementationDetails>.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="483" ordinal="0" offset="0" sl="668" sc="0" el="668" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="483" ordinal="0" offset="0" sl="668" sc="0" el="668" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663368</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::<CrtImplementationDetails>.LanguageSupport.{dtor}(<CrtImplementationDetails>.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="484" ordinal="0" offset="0" sl="670" sc="0" el="670" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="484" ordinal="0" offset="0" sl="670" sc="0" el="670" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="3" sequenceCoverage="57.89" branchCoverage="20" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="19" visitedSequencePoints="11" numBranchPoints="5" visitedBranchPoints="1" sequenceCoverage="57.89" branchCoverage="20" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663369</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::<CrtImplementationDetails>.LanguageSupport.Initialize(<CrtImplementationDetails>.LanguageSupport* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="485" ordinal="0" offset="0" sl="680" sc="0" el="680" ec="0" />
- <SequencePoint vc="1" uspid="486" ordinal="1" offset="2" sl="684" sc="0" el="684" ec="0" />
- <SequencePoint vc="1" uspid="487" ordinal="2" offset="7" sl="688" sc="0" el="688" ec="0" />
- <SequencePoint vc="1" uspid="488" ordinal="3" offset="19" sl="690" sc="0" el="690" ec="0" />
- <SequencePoint vc="1" uspid="489" ordinal="4" offset="24" sl="691" sc="0" el="691" ec="0" />
- <SequencePoint vc="1" uspid="490" ordinal="5" offset="26" sl="693" sc="0" el="693" ec="0" />
- <SequencePoint vc="1" uspid="491" ordinal="6" offset="37" sl="694" sc="0" el="694" ec="0" />
- <SequencePoint vc="1" uspid="492" ordinal="7" offset="39" sl="695" sc="0" el="695" ec="0" />
- <SequencePoint vc="1" uspid="493" ordinal="8" offset="40" sl="697" sc="0" el="697" ec="0" />
- <SequencePoint vc="1" uspid="494" ordinal="9" offset="46" sl="698" sc="0" el="698" ec="0" />
- <SequencePoint vc="0" uspid="495" ordinal="10" offset="48" sl="699" sc="0" el="699" ec="0" />
- <SequencePoint vc="0" uspid="496" ordinal="11" offset="49" sl="702" sc="0" el="702" ec="0" />
- <SequencePoint vc="0" uspid="497" ordinal="12" offset="52" sl="705" sc="0" el="705" ec="0" />
- <SequencePoint vc="0" uspid="498" ordinal="13" offset="59" sl="707" sc="0" el="707" ec="0" />
- <SequencePoint vc="0" uspid="499" ordinal="14" offset="71" sl="709" sc="0" el="709" ec="0" />
- <SequencePoint vc="0" uspid="500" ordinal="15" offset="74" sl="713" sc="0" el="713" ec="0" />
- <SequencePoint vc="0" uspid="501" ordinal="16" offset="77" sl="716" sc="0" el="716" ec="0" />
- <SequencePoint vc="0" uspid="502" ordinal="17" offset="84" sl="718" sc="0" el="718" ec="0" />
- <SequencePoint vc="1" uspid="503" ordinal="18" offset="98" sl="720" sc="0" el="720" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="504" ordinal="0" offset="50" path="0" />
- <BranchPoint vc="0" uspid="505" ordinal="1" offset="50" path="1" />
- <BranchPoint vc="0" uspid="506" ordinal="2" offset="75" path="0" />
- <BranchPoint vc="0" uspid="507" ordinal="3" offset="75" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="485" ordinal="0" offset="0" sl="680" sc="0" el="680" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="true" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="3" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663370</MetadataToken>
- <Name>System.Void <Module>::.cctor()</Name>
- <FileRef uid="10" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="508" ordinal="0" offset="0" sl="748" sc="0" el="748" ec="0" />
- <SequencePoint vc="1" uspid="509" ordinal="1" offset="8" sl="749" sc="0" el="749" ec="0" />
- <SequencePoint vc="1" uspid="510" ordinal="2" offset="31" sl="750" sc="0" el="750" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="508" ordinal="0" offset="0" sl="748" sc="0" el="748" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663371</MetadataToken>
- <Name>gcroot<System::String ^>* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::gcroot<System::String ^>.{ctor}(gcroot<System::String ^>* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="11" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="511" ordinal="0" offset="0" sl="66" sc="0" el="66" ec="0" />
- <SequencePoint vc="1" uspid="512" ordinal="1" offset="21" sl="67" sc="0" el="67" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="511" ordinal="0" offset="0" sl="66" sc="0" el="66" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="4" visitedSequencePoints="4" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663372</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::gcroot<System::String ^>.{dtor}(gcroot<System::String ^>* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="11" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="513" ordinal="0" offset="0" sl="89" sc="0" el="89" ec="0" />
- <SequencePoint vc="1" uspid="514" ordinal="1" offset="16" sl="90" sc="0" el="90" ec="0" />
- <SequencePoint vc="1" uspid="515" ordinal="2" offset="23" sl="91" sc="0" el="91" ec="0" />
- <SequencePoint vc="1" uspid="516" ordinal="3" offset="26" sl="92" sc="0" el="92" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="513" ordinal="0" offset="0" sl="89" sc="0" el="89" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663373</MetadataToken>
- <Name>gcroot<System::String ^>* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced) <Module>::gcroot<System::String ^>.=(gcroot<System::String ^>* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.String)</Name>
- <FileRef uid="11" />
- <SequencePoints>
- <SequencePoint vc="6" uspid="517" ordinal="0" offset="0" sl="98" sc="0" el="98" ec="0" />
- <SequencePoint vc="6" uspid="518" ordinal="1" offset="24" sl="99" sc="0" el="99" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="6" uspid="517" ordinal="0" offset="0" sl="98" sc="0" el="98" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663374</MetadataToken>
- <Name>System.String <Module>::gcroot<System::String ^>..P$AAVString@System@@(gcroot<System::String ^> modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <FileRef uid="11" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="519" ordinal="0" offset="0" sl="119" sc="0" el="119" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="519" ordinal="0" offset="0" sl="119" sc="0" el="119" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="4" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663375</MetadataToken>
- <Name>System.Void <Module>::___CxxCallUnwindDtor(method System.Void *(System.Void*),System.Void*)</Name>
- <FileRef uid="12" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="520" ordinal="0" offset="0" sl="697" sc="0" el="697" ec="0" />
- <SequencePoint vc="0" uspid="521" ordinal="1" offset="7" sl="698" sc="0" el="698" ec="0" />
- <SequencePoint vc="0" uspid="522" ordinal="2" offset="9" sl="699" sc="0" el="699" ec="0" />
- <SequencePoint vc="0" uspid="523" ordinal="3" offset="25" sl="702" sc="0" el="702" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="520" ordinal="0" offset="0" sl="697" sc="0" el="697" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="4" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663376</MetadataToken>
- <Name>System.Void <Module>::___CxxCallUnwindDelDtor(method System.Void *(System.Void*),System.Void*)</Name>
- <FileRef uid="12" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="524" ordinal="0" offset="0" sl="723" sc="0" el="723" ec="0" />
- <SequencePoint vc="0" uspid="525" ordinal="1" offset="7" sl="724" sc="0" el="724" ec="0" />
- <SequencePoint vc="0" uspid="526" ordinal="2" offset="9" sl="725" sc="0" el="725" ec="0" />
- <SequencePoint vc="0" uspid="527" ordinal="3" offset="25" sl="729" sc="0" el="729" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="524" ordinal="0" offset="0" sl="723" sc="0" el="723" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="4" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663377</MetadataToken>
- <Name>System.Void <Module>::___CxxCallUnwindVecDtor(method System.Void *(System.Void*,System.UInt32,System.Int32,method System.Void *(System.Void*)),System.Void*,System.UInt32,System.Int32,method System.Void *(System.Void*))</Name>
- <FileRef uid="12" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="528" ordinal="0" offset="0" sl="752" sc="0" el="752" ec="0" />
- <SequencePoint vc="0" uspid="529" ordinal="1" offset="11" sl="753" sc="0" el="753" ec="0" />
- <SequencePoint vc="0" uspid="530" ordinal="2" offset="13" sl="754" sc="0" el="754" ec="0" />
- <SequencePoint vc="0" uspid="531" ordinal="3" offset="29" sl="757" sc="0" el="757" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="528" ordinal="0" offset="0" sl="752" sc="0" el="752" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="4" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663378</MetadataToken>
- <Name>System.Void <Module>::__ehvec_dtor(System.Void*,System.UInt32,System.Int32,method System.Void *(System.Void*))</Name>
- <SequencePoints />
- <BranchPoints>
- <BranchPoint vc="0" uspid="533" ordinal="0" offset="16" path="0" />
- <BranchPoint vc="0" uspid="534" ordinal="1" offset="16" path="1" />
- <BranchPoint vc="0" uspid="535" ordinal="2" offset="37" path="0" />
- <BranchPoint vc="0" uspid="536" ordinal="3" offset="37" path="1" />
- </BranchPoints>
- <MethodPoint vc="0" uspid="532" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="4" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663379</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::?A0x66596ba5.ArrayUnwindFilter(_EXCEPTION_POINTERS*)</Name>
- <FileRef uid="13" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="537" ordinal="0" offset="0" sl="111" sc="0" el="111" ec="0" />
- <SequencePoint vc="0" uspid="538" ordinal="1" offset="10" sl="120" sc="0" el="120" ec="0" />
- <SequencePoint vc="0" uspid="539" ordinal="2" offset="12" sl="114" sc="0" el="114" ec="0" />
- <SequencePoint vc="0" uspid="540" ordinal="3" offset="17" sl="122" sc="0" el="122" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="541" ordinal="0" offset="8" path="0" />
- <BranchPoint vc="0" uspid="542" ordinal="1" offset="8" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="537" ordinal="0" offset="0" sl="111" sc="0" el="111" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="7" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663380</MetadataToken>
- <Name>System.Void <Module>::__ArrayUnwind(System.Void*,System.UInt32,System.Int32,method System.Void *(System.Void*))</Name>
- <FileRef uid="13" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="543" ordinal="0" offset="0" sl="138" sc="0" el="138" ec="0" />
- <SequencePoint vc="0" uspid="544" ordinal="1" offset="9" sl="140" sc="0" el="140" ec="0" />
- <SequencePoint vc="0" uspid="545" ordinal="2" offset="14" sl="141" sc="0" el="141" ec="0" />
- <SequencePoint vc="0" uspid="546" ordinal="3" offset="21" sl="142" sc="0" el="142" ec="0" />
- <SequencePoint vc="0" uspid="547" ordinal="4" offset="23" sl="143" sc="0" el="143" ec="0" />
- <SequencePoint vc="0" uspid="548" ordinal="5" offset="25" sl="144" sc="0" el="144" ec="0" />
- <SequencePoint vc="0" uspid="549" ordinal="6" offset="41" sl="148" sc="0" el="148" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="550" ordinal="0" offset="7" path="0" />
- <BranchPoint vc="0" uspid="551" ordinal="1" offset="7" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="543" ordinal="0" offset="0" sl="138" sc="0" el="138" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="3" numBranchPoints="3" visitedBranchPoints="3" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663381</MetadataToken>
- <Name>System.ValueType modopt(System.Runtime.InteropServices.GCHandle) modopt(System.Runtime.CompilerServices.IsBoxed) <Module>::<CrtImplementationDetails>.AtExitLock._handle()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="6" uspid="552" ordinal="0" offset="0" sl="74" sc="0" el="74" ec="0" />
- <SequencePoint vc="4" uspid="553" ordinal="1" offset="7" sl="76" sc="0" el="76" ec="0" />
- <SequencePoint vc="2" uspid="554" ordinal="2" offset="31" sl="79" sc="0" el="79" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="4" uspid="555" ordinal="0" offset="5" path="0" />
- <BranchPoint vc="2" uspid="556" ordinal="1" offset="5" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="6" uspid="552" ordinal="0" offset="0" sl="74" sc="0" el="74" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="3" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663382</MetadataToken>
- <Name>System.Void <Module>::<CrtImplementationDetails>.AtExitLock._lock_Construct(System.Object)</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="557" ordinal="0" offset="0" sl="92" sc="0" el="92" ec="0" />
- <SequencePoint vc="1" uspid="558" ordinal="1" offset="6" sl="93" sc="0" el="93" ec="0" />
- <SequencePoint vc="1" uspid="559" ordinal="2" offset="12" sl="94" sc="0" el="94" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="557" ordinal="0" offset="0" sl="92" sc="0" el="92" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="85.71" branchCoverage="66.67" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="7" visitedSequencePoints="6" numBranchPoints="3" visitedBranchPoints="2" sequenceCoverage="85.71" branchCoverage="66.67" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663383</MetadataToken>
- <Name>System.Void <Module>::<CrtImplementationDetails>.AtExitLock._lock_Set(System.Object)</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="560" ordinal="0" offset="0" sl="100" sc="0" el="100" ec="0" />
- <SequencePoint vc="1" uspid="561" ordinal="1" offset="6" sl="101" sc="0" el="101" ec="0" />
- <SequencePoint vc="1" uspid="562" ordinal="2" offset="9" sl="103" sc="0" el="103" ec="0" />
- <SequencePoint vc="1" uspid="563" ordinal="3" offset="21" sl="104" sc="0" el="104" ec="0" />
- <SequencePoint vc="1" uspid="564" ordinal="4" offset="50" sl="106" sc="0" el="106" ec="0" />
- <SequencePoint vc="0" uspid="565" ordinal="5" offset="52" sl="108" sc="0" el="108" ec="0" />
- <SequencePoint vc="1" uspid="566" ordinal="6" offset="64" sl="110" sc="0" el="110" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="567" ordinal="0" offset="7" path="0" />
- <BranchPoint vc="0" uspid="568" ordinal="1" offset="7" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="560" ordinal="0" offset="0" sl="100" sc="0" el="100" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="4" visitedSequencePoints="4" numBranchPoints="3" visitedBranchPoints="3" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663384</MetadataToken>
- <Name>System.Object <Module>::<CrtImplementationDetails>.AtExitLock._lock_Get()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="4" uspid="569" ordinal="0" offset="0" sl="116" sc="0" el="116" ec="0" />
- <SequencePoint vc="4" uspid="570" ordinal="1" offset="6" sl="117" sc="0" el="117" ec="0" />
- <SequencePoint vc="3" uspid="571" ordinal="2" offset="9" sl="119" sc="0" el="119" ec="0" />
- <SequencePoint vc="1" uspid="572" ordinal="3" offset="21" sl="121" sc="0" el="121" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="3" uspid="573" ordinal="0" offset="7" path="0" />
- <BranchPoint vc="1" uspid="574" ordinal="1" offset="7" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="4" uspid="569" ordinal="0" offset="0" sl="116" sc="0" el="116" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="66.67" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="5" visitedSequencePoints="5" numBranchPoints="3" visitedBranchPoints="2" sequenceCoverage="100" branchCoverage="66.67" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663385</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.AtExitLock._lock_Destruct()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="575" ordinal="0" offset="0" sl="128" sc="0" el="128" ec="0" />
- <SequencePoint vc="1" uspid="576" ordinal="1" offset="6" sl="129" sc="0" el="129" ec="0" />
- <SequencePoint vc="1" uspid="577" ordinal="2" offset="9" sl="131" sc="0" el="131" ec="0" />
- <SequencePoint vc="1" uspid="578" ordinal="3" offset="20" sl="132" sc="0" el="132" ec="0" />
- <SequencePoint vc="1" uspid="579" ordinal="4" offset="26" sl="134" sc="0" el="134" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="580" ordinal="0" offset="7" path="0" />
- <BranchPoint vc="0" uspid="581" ordinal="1" offset="7" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="575" ordinal="0" offset="0" sl="128" sc="0" el="128" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="3" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="3" visitedBranchPoints="3" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663386</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.AtExitLock.IsInitialized()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="4" uspid="582" ordinal="0" offset="0" sl="142" sc="0" el="142" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="583" ordinal="0" offset="6" path="0" />
- <BranchPoint vc="3" uspid="584" ordinal="1" offset="6" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="4" uspid="582" ordinal="0" offset="0" sl="142" sc="0" el="142" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="5" visitedSequencePoints="5" numBranchPoints="3" visitedBranchPoints="3" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663387</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.AtExitLock.AddRef()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="2" uspid="585" ordinal="0" offset="0" sl="149" sc="0" el="149" ec="0" />
- <SequencePoint vc="1" uspid="586" ordinal="1" offset="7" sl="151" sc="0" el="151" ec="0" />
- <SequencePoint vc="1" uspid="587" ordinal="2" offset="17" sl="152" sc="0" el="152" ec="0" />
- <SequencePoint vc="2" uspid="588" ordinal="3" offset="23" sl="154" sc="0" el="154" ec="0" />
- <SequencePoint vc="2" uspid="589" ordinal="4" offset="35" sl="155" sc="0" el="155" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="590" ordinal="0" offset="5" path="0" />
- <BranchPoint vc="1" uspid="591" ordinal="1" offset="5" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="2" uspid="585" ordinal="0" offset="0" sl="149" sc="0" el="149" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="3" numBranchPoints="3" visitedBranchPoints="3" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663388</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.AtExitLock.RemoveRef()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="2" uspid="592" ordinal="0" offset="0" sl="162" sc="0" el="162" ec="0" />
- <SequencePoint vc="1" uspid="593" ordinal="1" offset="19" sl="165" sc="0" el="165" ec="0" />
- <SequencePoint vc="2" uspid="594" ordinal="2" offset="24" sl="167" sc="0" el="167" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="595" ordinal="0" offset="17" path="0" />
- <BranchPoint vc="1" uspid="596" ordinal="1" offset="17" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="2" uspid="592" ordinal="0" offset="0" sl="162" sc="0" el="162" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663389</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.AtExitLock.Enter()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="597" ordinal="0" offset="0" sl="176" sc="0" el="176" ec="0" />
- <SequencePoint vc="0" uspid="598" ordinal="1" offset="10" sl="178" sc="0" el="178" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="597" ordinal="0" offset="0" sl="176" sc="0" el="176" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663390</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::<CrtImplementationDetails>.AtExitLock.Exit()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="599" ordinal="0" offset="0" sl="184" sc="0" el="184" ec="0" />
- <SequencePoint vc="0" uspid="600" ordinal="1" offset="10" sl="185" sc="0" el="185" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="599" ordinal="0" offset="0" sl="184" sc="0" el="184" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="5" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663391</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::?A0xc6172590.__global_lock()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="601" ordinal="0" offset="0" sl="211" sc="0" el="211" ec="0" />
- <SequencePoint vc="0" uspid="602" ordinal="1" offset="2" sl="212" sc="0" el="212" ec="0" />
- <SequencePoint vc="0" uspid="603" ordinal="2" offset="9" sl="214" sc="0" el="214" ec="0" />
- <SequencePoint vc="0" uspid="604" ordinal="3" offset="14" sl="215" sc="0" el="215" ec="0" />
- <SequencePoint vc="0" uspid="605" ordinal="4" offset="16" sl="217" sc="0" el="217" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="606" ordinal="0" offset="7" path="0" />
- <BranchPoint vc="0" uspid="607" ordinal="1" offset="7" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="601" ordinal="0" offset="0" sl="211" sc="0" el="211" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="2" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="5" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663392</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::?A0xc6172590.__global_unlock()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="608" ordinal="0" offset="0" sl="239" sc="0" el="239" ec="0" />
- <SequencePoint vc="0" uspid="609" ordinal="1" offset="2" sl="240" sc="0" el="240" ec="0" />
- <SequencePoint vc="0" uspid="610" ordinal="2" offset="9" sl="242" sc="0" el="242" ec="0" />
- <SequencePoint vc="0" uspid="611" ordinal="3" offset="14" sl="243" sc="0" el="243" ec="0" />
- <SequencePoint vc="0" uspid="612" ordinal="4" offset="16" sl="245" sc="0" el="245" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="613" ordinal="0" offset="7" path="0" />
- <BranchPoint vc="0" uspid="614" ordinal="1" offset="7" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="608" ordinal="0" offset="0" sl="239" sc="0" el="239" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663393</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::?A0xc6172590.__alloc_global_lock()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="2" uspid="615" ordinal="0" offset="0" sl="268" sc="0" el="268" ec="0" />
- <SequencePoint vc="2" uspid="616" ordinal="1" offset="5" sl="269" sc="0" el="269" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="2" uspid="615" ordinal="0" offset="0" sl="268" sc="0" el="268" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663394</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::?A0xc6172590.__dealloc_global_lock()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="2" uspid="617" ordinal="0" offset="0" sl="290" sc="0" el="290" ec="0" />
- <SequencePoint vc="2" uspid="618" ordinal="1" offset="5" sl="291" sc="0" el="291" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="2" uspid="617" ordinal="0" offset="0" sl="290" sc="0" el="290" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="7" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="25" visitedSequencePoints="0" numBranchPoints="13" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="7" minCyclomaticComplexity="7" />
- <MetadataToken>100663395</MetadataToken>
- <Name>System.Int32 <Module>::_atexit_helper(method System.Void *(),System.UInt32*,method System.Void *()**,method System.Void *()**)</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="619" ordinal="0" offset="0" sl="322" sc="0" el="322" ec="0" />
- <SequencePoint vc="0" uspid="620" ordinal="1" offset="3" sl="327" sc="0" el="327" ec="0" />
- <SequencePoint vc="0" uspid="621" ordinal="2" offset="8" sl="328" sc="0" el="328" ec="0" />
- <SequencePoint vc="0" uspid="622" ordinal="3" offset="19" sl="330" sc="0" el="330" ec="0" />
- <SequencePoint vc="0" uspid="623" ordinal="4" offset="27" sl="331" sc="0" el="331" ec="0" />
- <SequencePoint vc="0" uspid="624" ordinal="5" offset="35" sl="337" sc="0" el="337" ec="0" />
- <SequencePoint vc="0" uspid="625" ordinal="6" offset="53" sl="349" sc="0" el="349" ec="0" />
- <SequencePoint vc="0" uspid="626" ordinal="7" offset="116" sl="353" sc="0" el="353" ec="0" />
- <SequencePoint vc="0" uspid="627" ordinal="8" offset="127" sl="354" sc="0" el="354" ec="0" />
- <SequencePoint vc="0" uspid="628" ordinal="9" offset="135" sl="355" sc="0" el="355" ec="0" />
- <SequencePoint vc="0" uspid="629" ordinal="10" offset="166" sl="357" sc="0" el="357" ec="0" />
- <SequencePoint vc="0" uspid="630" ordinal="11" offset="167" sl="363" sc="0" el="363" ec="0" />
- <SequencePoint vc="0" uspid="631" ordinal="12" offset="207" sl="367" sc="0" el="367" ec="0" />
- <SequencePoint vc="0" uspid="632" ordinal="13" offset="219" sl="368" sc="0" el="368" ec="0" />
- <SequencePoint vc="0" uspid="633" ordinal="14" offset="227" sl="369" sc="0" el="369" ec="0" />
- <SequencePoint vc="0" uspid="634" ordinal="15" offset="233" sl="370" sc="0" el="370" ec="0" />
- <SequencePoint vc="0" uspid="635" ordinal="16" offset="235" sl="372" sc="0" el="372" ec="0" />
- <SequencePoint vc="0" uspid="636" ordinal="17" offset="242" sl="373" sc="0" el="373" ec="0" />
- <SequencePoint vc="0" uspid="637" ordinal="18" offset="245" sl="375" sc="0" el="375" ec="0" />
- <SequencePoint vc="0" uspid="638" ordinal="19" offset="253" sl="376" sc="0" el="376" ec="0" />
- <SequencePoint vc="0" uspid="639" ordinal="20" offset="263" sl="378" sc="0" el="378" ec="0" />
- <SequencePoint vc="0" uspid="640" ordinal="21" offset="264" sl="379" sc="0" el="379" ec="0" />
- <SequencePoint vc="0" uspid="641" ordinal="22" offset="270" sl="380" sc="0" el="380" ec="0" />
- <SequencePoint vc="0" uspid="642" ordinal="23" offset="276" sl="381" sc="0" el="381" ec="0" />
- <SequencePoint vc="0" uspid="643" ordinal="24" offset="277" sl="383" sc="0" el="383" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="644" ordinal="0" offset="4" path="0" />
- <BranchPoint vc="0" uspid="645" ordinal="1" offset="4" path="1" />
- <BranchPoint vc="0" uspid="646" ordinal="2" offset="14" path="0" />
- <BranchPoint vc="0" uspid="647" ordinal="3" offset="14" path="1" />
- <BranchPoint vc="0" uspid="648" ordinal="4" offset="48" path="0" />
- <BranchPoint vc="0" uspid="649" ordinal="5" offset="48" path="1" />
- <BranchPoint vc="0" uspid="650" ordinal="6" offset="64" path="0" />
- <BranchPoint vc="0" uspid="651" ordinal="7" offset="64" path="1" />
- <BranchPoint vc="0" uspid="652" ordinal="8" offset="144" path="0" />
- <BranchPoint vc="0" uspid="653" ordinal="9" offset="144" path="1" />
- <BranchPoint vc="0" uspid="654" ordinal="10" offset="279" path="0" />
- <BranchPoint vc="0" uspid="655" ordinal="11" offset="279" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="619" ordinal="0" offset="0" sl="322" sc="0" el="322" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="9" sequenceCoverage="52.63" branchCoverage="35.29" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="19" visitedSequencePoints="10" numBranchPoints="17" visitedBranchPoints="6" sequenceCoverage="52.63" branchCoverage="35.29" maxCyclomaticComplexity="9" minCyclomaticComplexity="9" />
- <MetadataToken>100663396</MetadataToken>
- <Name>System.Void <Module>::_exit_callback()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="656" ordinal="0" offset="0" sl="424" sc="0" el="424" ec="0" />
- <SequencePoint vc="1" uspid="657" ordinal="1" offset="10" sl="433" sc="0" el="433" ec="0" />
- <SequencePoint vc="1" uspid="658" ordinal="2" offset="21" sl="434" sc="0" el="434" ec="0" />
- <SequencePoint vc="1" uspid="659" ordinal="3" offset="32" sl="436" sc="0" el="436" ec="0" />
- <SequencePoint vc="1" uspid="660" ordinal="4" offset="42" sl="440" sc="0" el="440" ec="0" />
- <SequencePoint vc="1" uspid="661" ordinal="5" offset="45" sl="441" sc="0" el="441" ec="0" />
- <SequencePoint vc="1" uspid="662" ordinal="6" offset="48" sl="449" sc="0" el="449" ec="0" />
- <SequencePoint vc="0" uspid="663" ordinal="7" offset="65" sl="461" sc="0" el="461" ec="0" />
- <SequencePoint vc="0" uspid="664" ordinal="8" offset="72" sl="464" sc="0" el="464" ec="0" />
- <SequencePoint vc="0" uspid="665" ordinal="9" offset="79" sl="467" sc="0" el="467" ec="0" />
- <SequencePoint vc="0" uspid="666" ordinal="10" offset="84" sl="470" sc="0" el="470" ec="0" />
- <SequencePoint vc="0" uspid="667" ordinal="11" offset="95" sl="471" sc="0" el="471" ec="0" />
- <SequencePoint vc="0" uspid="668" ordinal="12" offset="106" sl="473" sc="0" el="473" ec="0" />
- <SequencePoint vc="0" uspid="669" ordinal="13" offset="116" sl="476" sc="0" el="476" ec="0" />
- <SequencePoint vc="0" uspid="670" ordinal="14" offset="121" sl="477" sc="0" el="477" ec="0" />
- <SequencePoint vc="0" uspid="671" ordinal="15" offset="126" sl="479" sc="0" el="479" ec="0" />
- <SequencePoint vc="1" uspid="672" ordinal="16" offset="128" sl="487" sc="0" el="487" ec="0" />
- <SequencePoint vc="1" uspid="673" ordinal="17" offset="143" sl="489" sc="0" el="489" ec="0" />
- <SequencePoint vc="1" uspid="674" ordinal="18" offset="148" sl="490" sc="0" el="490" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="675" ordinal="0" offset="5" path="0" />
- <BranchPoint vc="0" uspid="676" ordinal="1" offset="5" path="1" />
- <BranchPoint vc="1" uspid="677" ordinal="2" offset="34" path="0" />
- <BranchPoint vc="0" uspid="678" ordinal="3" offset="34" path="1" />
- <BranchPoint vc="1" uspid="679" ordinal="4" offset="37" path="0" />
- <BranchPoint vc="0" uspid="680" ordinal="5" offset="37" path="1" />
- <BranchPoint vc="1" uspid="681" ordinal="6" offset="40" path="0" />
- <BranchPoint vc="0" uspid="682" ordinal="7" offset="40" path="1" />
- <BranchPoint vc="0" uspid="683" ordinal="8" offset="54" path="0" />
- <BranchPoint vc="1" uspid="684" ordinal="9" offset="54" path="1" />
- <BranchPoint vc="0" uspid="685" ordinal="10" offset="63" path="0" />
- <BranchPoint vc="0" uspid="686" ordinal="11" offset="63" path="1" />
- <BranchPoint vc="0" uspid="687" ordinal="12" offset="109" path="0" />
- <BranchPoint vc="0" uspid="688" ordinal="13" offset="109" path="1" />
- <BranchPoint vc="0" uspid="689" ordinal="14" offset="114" path="0" />
- <BranchPoint vc="0" uspid="690" ordinal="15" offset="114" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="656" ordinal="0" offset="0" sl="424" sc="0" el="424" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="66.67" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="7" visitedSequencePoints="7" numBranchPoints="3" visitedBranchPoints="2" sequenceCoverage="100" branchCoverage="66.67" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663397</MetadataToken>
- <Name>System.Int32 <Module>::_initatexit_m()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="691" ordinal="0" offset="0" sl="514" sc="0" el="514" ec="0" />
- <SequencePoint vc="1" uspid="692" ordinal="1" offset="1" sl="519" sc="0" el="519" ec="0" />
- <SequencePoint vc="1" uspid="693" ordinal="2" offset="10" sl="522" sc="0" el="522" ec="0" />
- <SequencePoint vc="1" uspid="694" ordinal="3" offset="21" sl="524" sc="0" el="524" ec="0" />
- <SequencePoint vc="1" uspid="695" ordinal="4" offset="48" sl="525" sc="0" el="525" ec="0" />
- <SequencePoint vc="1" uspid="696" ordinal="5" offset="55" sl="526" sc="0" el="526" ec="0" />
- <SequencePoint vc="1" uspid="697" ordinal="6" offset="56" sl="528" sc="0" el="528" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="698" ordinal="0" offset="7" path="0" />
- <BranchPoint vc="0" uspid="699" ordinal="1" offset="7" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="691" ordinal="0" offset="0" sl="514" sc="0" el="514" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663398</MetadataToken>
- <Name>method System.Int32 *() <Module>::_onexit_m(method System.Int32 *())</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="700" ordinal="0" offset="0" sl="555" sc="0" el="555" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="701" ordinal="0" offset="7" path="0" />
- <BranchPoint vc="0" uspid="702" ordinal="1" offset="7" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="700" ordinal="0" offset="0" sl="555" sc="0" el="555" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663399</MetadataToken>
- <Name>System.Int32 <Module>::_atexit_m(method System.Void *())</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="703" ordinal="0" offset="0" sl="565" sc="0" el="565" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="703" ordinal="0" offset="0" sl="565" sc="0" el="565" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="66.67" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="5" visitedSequencePoints="5" numBranchPoints="3" visitedBranchPoints="2" sequenceCoverage="100" branchCoverage="66.67" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663400</MetadataToken>
- <Name>System.Int32 <Module>::_initatexit_app_domain()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="704" ordinal="0" offset="0" sl="612" sc="0" el="612" ec="0" />
- <SequencePoint vc="1" uspid="705" ordinal="1" offset="8" sl="623" sc="0" el="623" ec="0" />
- <SequencePoint vc="1" uspid="706" ordinal="2" offset="19" sl="625" sc="0" el="625" ec="0" />
- <SequencePoint vc="1" uspid="707" ordinal="3" offset="46" sl="626" sc="0" el="626" ec="0" />
- <SequencePoint vc="1" uspid="708" ordinal="4" offset="53" sl="633" sc="0" el="633" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="709" ordinal="0" offset="6" path="0" />
- <BranchPoint vc="0" uspid="710" ordinal="1" offset="6" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="704" ordinal="0" offset="0" sl="612" sc="0" el="612" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="10" sequenceCoverage="61.54" branchCoverage="36.84" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="26" visitedSequencePoints="16" numBranchPoints="19" visitedBranchPoints="7" sequenceCoverage="61.54" branchCoverage="36.84" maxCyclomaticComplexity="10" minCyclomaticComplexity="10" />
- <MetadataToken>100663401</MetadataToken>
- <Name>System.Void <Module>::_app_exit_callback()</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="711" ordinal="0" offset="0" sl="663" sc="0" el="663" ec="0" />
- <SequencePoint vc="1" uspid="712" ordinal="1" offset="10" sl="672" sc="0" el="672" ec="0" />
- <SequencePoint vc="1" uspid="713" ordinal="2" offset="21" sl="673" sc="0" el="673" ec="0" />
- <SequencePoint vc="1" uspid="714" ordinal="3" offset="32" sl="677" sc="0" el="677" ec="0" />
- <SequencePoint vc="1" uspid="715" ordinal="4" offset="42" sl="678" sc="0" el="678" ec="0" />
- <SequencePoint vc="1" uspid="716" ordinal="5" offset="45" sl="680" sc="0" el="680" ec="0" />
- <SequencePoint vc="1" uspid="717" ordinal="6" offset="48" sl="681" sc="0" el="681" ec="0" />
- <SequencePoint vc="1" uspid="718" ordinal="7" offset="51" sl="685" sc="0" el="685" ec="0" />
- <SequencePoint vc="1" uspid="719" ordinal="8" offset="54" sl="686" sc="0" el="686" ec="0" />
- <SequencePoint vc="1" uspid="720" ordinal="9" offset="57" sl="689" sc="0" el="689" ec="0" />
- <SequencePoint vc="0" uspid="721" ordinal="10" offset="74" sl="692" sc="0" el="692" ec="0" />
- <SequencePoint vc="1" uspid="722" ordinal="11" offset="76" sl="694" sc="0" el="694" ec="0" />
- <SequencePoint vc="0" uspid="723" ordinal="12" offset="80" sl="701" sc="0" el="701" ec="0" />
- <SequencePoint vc="0" uspid="724" ordinal="13" offset="89" sl="704" sc="0" el="704" ec="0" />
- <SequencePoint vc="0" uspid="725" ordinal="14" offset="96" sl="707" sc="0" el="707" ec="0" />
- <SequencePoint vc="0" uspid="726" ordinal="15" offset="103" sl="709" sc="0" el="709" ec="0" />
- <SequencePoint vc="0" uspid="727" ordinal="16" offset="114" sl="710" sc="0" el="710" ec="0" />
- <SequencePoint vc="0" uspid="728" ordinal="17" offset="125" sl="713" sc="0" el="713" ec="0" />
- <SequencePoint vc="0" uspid="729" ordinal="18" offset="135" sl="715" sc="0" el="715" ec="0" />
- <SequencePoint vc="0" uspid="730" ordinal="19" offset="140" sl="716" sc="0" el="716" ec="0" />
- <SequencePoint vc="0" uspid="731" ordinal="20" offset="145" sl="718" sc="0" el="718" ec="0" />
- <SequencePoint vc="1" uspid="732" ordinal="21" offset="147" sl="721" sc="0" el="721" ec="0" />
- <SequencePoint vc="1" uspid="733" ordinal="22" offset="149" sl="724" sc="0" el="724" ec="0" />
- <SequencePoint vc="1" uspid="734" ordinal="23" offset="164" sl="725" sc="0" el="725" ec="0" />
- <SequencePoint vc="1" uspid="735" ordinal="24" offset="169" sl="726" sc="0" el="726" ec="0" />
- <SequencePoint vc="1" uspid="736" ordinal="25" offset="170" sl="727" sc="0" el="727" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="737" ordinal="0" offset="5" path="0" />
- <BranchPoint vc="0" uspid="738" ordinal="1" offset="5" path="1" />
- <BranchPoint vc="1" uspid="739" ordinal="2" offset="34" path="0" />
- <BranchPoint vc="0" uspid="740" ordinal="3" offset="34" path="1" />
- <BranchPoint vc="1" uspid="741" ordinal="4" offset="37" path="0" />
- <BranchPoint vc="0" uspid="742" ordinal="5" offset="37" path="1" />
- <BranchPoint vc="1" uspid="743" ordinal="6" offset="40" path="0" />
- <BranchPoint vc="0" uspid="744" ordinal="7" offset="40" path="1" />
- <BranchPoint vc="0" uspid="745" ordinal="8" offset="63" path="0" />
- <BranchPoint vc="1" uspid="746" ordinal="9" offset="63" path="1" />
- <BranchPoint vc="0" uspid="747" ordinal="10" offset="72" path="0" />
- <BranchPoint vc="0" uspid="748" ordinal="11" offset="72" path="1" />
- <BranchPoint vc="0" uspid="749" ordinal="12" offset="78" path="0" />
- <BranchPoint vc="1" uspid="750" ordinal="13" offset="78" path="1" />
- <BranchPoint vc="0" uspid="751" ordinal="14" offset="128" path="0" />
- <BranchPoint vc="0" uspid="752" ordinal="15" offset="128" path="1" />
- <BranchPoint vc="0" uspid="753" ordinal="16" offset="133" path="0" />
- <BranchPoint vc="0" uspid="754" ordinal="17" offset="133" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="711" ordinal="0" offset="0" sl="663" sc="0" el="663" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="3" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663402</MetadataToken>
- <Name>method System.Int32 *() <Module>::_onexit_m_appdomain(method System.Int32 *())</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="755" ordinal="0" offset="0" sl="752" sc="0" el="752" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="756" ordinal="0" offset="7" path="0" />
- <BranchPoint vc="0" uspid="757" ordinal="1" offset="7" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="755" ordinal="0" offset="0" sl="752" sc="0" el="752" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663403</MetadataToken>
- <Name>System.Int32 <Module>::_atexit_m_appdomain(method System.Void *())</Name>
- <FileRef uid="14" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="758" ordinal="0" offset="0" sl="761" sc="0" el="761" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="758" ordinal="0" offset="0" sl="761" sc="0" el="761" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663404</MetadataToken>
- <Name>System.Void* <Module>::DecodePointer(System.Void*)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="759" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663405</MetadataToken>
- <Name>System.Void* <Module>::_encoded_null()</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="760" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663406</MetadataToken>
- <Name>System.Void* <Module>::EncodePointer(System.Void*)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="761" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="5" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="7" visitedSequencePoints="0" numBranchPoints="9" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="5" minCyclomaticComplexity="5" />
- <MetadataToken>100663407</MetadataToken>
- <Name>System.Int32 <Module>::_initterm_e(method System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) *()*,method System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) *()*)</Name>
- <FileRef uid="15" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="762" ordinal="0" offset="0" sl="61" sc="0" el="61" ec="0" />
- <SequencePoint vc="0" uspid="763" ordinal="1" offset="2" sl="68" sc="0" el="68" ec="0" />
- <SequencePoint vc="0" uspid="764" ordinal="2" offset="9" sl="73" sc="0" el="73" ec="0" />
- <SequencePoint vc="0" uspid="765" ordinal="3" offset="15" sl="74" sc="0" el="74" ec="0" />
- <SequencePoint vc="0" uspid="766" ordinal="4" offset="22" sl="75" sc="0" el="75" ec="0" />
- <SequencePoint vc="0" uspid="767" ordinal="5" offset="27" sl="68" sc="0" el="68" ec="0" />
- <SequencePoint vc="0" uspid="768" ordinal="6" offset="31" sl="78" sc="0" el="78" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="769" ordinal="0" offset="4" path="0" />
- <BranchPoint vc="0" uspid="770" ordinal="1" offset="4" path="1" />
- <BranchPoint vc="0" uspid="771" ordinal="2" offset="7" path="0" />
- <BranchPoint vc="0" uspid="772" ordinal="3" offset="7" path="1" />
- <BranchPoint vc="0" uspid="773" ordinal="4" offset="13" path="0" />
- <BranchPoint vc="0" uspid="774" ordinal="5" offset="13" path="1" />
- <BranchPoint vc="0" uspid="775" ordinal="6" offset="29" path="0" />
- <BranchPoint vc="0" uspid="776" ordinal="7" offset="29" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="762" ordinal="0" offset="0" sl="61" sc="0" el="61" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="4" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="6" visitedSequencePoints="0" numBranchPoints="7" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
- <MetadataToken>100663408</MetadataToken>
- <Name>System.Void <Module>::_initterm(method System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) *()*,method System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) *()*)</Name>
- <FileRef uid="15" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="777" ordinal="0" offset="0" sl="125" sc="0" el="125" ec="0" />
- <SequencePoint vc="0" uspid="778" ordinal="1" offset="4" sl="130" sc="0" el="130" ec="0" />
- <SequencePoint vc="0" uspid="779" ordinal="2" offset="10" sl="131" sc="0" el="131" ec="0" />
- <SequencePoint vc="0" uspid="780" ordinal="3" offset="16" sl="132" sc="0" el="132" ec="0" />
- <SequencePoint vc="0" uspid="781" ordinal="4" offset="21" sl="125" sc="0" el="125" ec="0" />
- <SequencePoint vc="0" uspid="782" ordinal="5" offset="25" sl="134" sc="0" el="134" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="783" ordinal="0" offset="2" path="0" />
- <BranchPoint vc="0" uspid="784" ordinal="1" offset="2" path="1" />
- <BranchPoint vc="0" uspid="785" ordinal="2" offset="8" path="0" />
- <BranchPoint vc="0" uspid="786" ordinal="3" offset="8" path="1" />
- <BranchPoint vc="0" uspid="787" ordinal="4" offset="23" path="0" />
- <BranchPoint vc="0" uspid="788" ordinal="5" offset="23" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="777" ordinal="0" offset="0" sl="125" sc="0" el="125" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663409</MetadataToken>
- <Name>System.ModuleHandle <Module>::<CrtImplementationDetails>.ThisModule.Handle()</Name>
- <FileRef uid="15" />
- <SequencePoints>
- <SequencePoint vc="7" uspid="789" ordinal="0" offset="0" sl="145" sc="0" el="145" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="7" uspid="789" ordinal="0" offset="0" sl="145" sc="0" el="145" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="4" sequenceCoverage="100" branchCoverage="85.71" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="7" visitedSequencePoints="7" numBranchPoints="7" visitedBranchPoints="6" sequenceCoverage="100" branchCoverage="85.71" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
- <MetadataToken>100663410</MetadataToken>
- <Name>System.Void <Module>::_initterm_m(method System.Void modopt(System.Runtime.CompilerServices.IsConst)* *() modopt(System.Runtime.CompilerServices.IsConst)*,method System.Void modopt(System.Runtime.CompilerServices.IsConst)* *() modopt(System.Runtime.CompilerServices.IsConst)*)</Name>
- <FileRef uid="15" />
- <SequencePoints>
- <SequencePoint vc="3" uspid="790" ordinal="0" offset="0" sl="205" sc="0" el="205" ec="0" />
- <SequencePoint vc="10" uspid="791" ordinal="1" offset="4" sl="216" sc="0" el="216" ec="0" />
- <SequencePoint vc="7" uspid="792" ordinal="2" offset="10" sl="218" sc="0" el="218" ec="0" />
- <SequencePoint vc="7" uspid="793" ordinal="3" offset="16" sl="219" sc="0" el="219" ec="0" />
- <SequencePoint vc="10" uspid="794" ordinal="4" offset="22" sl="221" sc="0" el="221" ec="0" />
- <SequencePoint vc="10" uspid="795" ordinal="5" offset="27" sl="205" sc="0" el="205" ec="0" />
- <SequencePoint vc="3" uspid="796" ordinal="6" offset="31" sl="223" sc="0" el="223" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="3" uspid="797" ordinal="0" offset="2" path="0" />
- <BranchPoint vc="0" uspid="798" ordinal="1" offset="2" path="1" />
- <BranchPoint vc="7" uspid="799" ordinal="2" offset="8" path="0" />
- <BranchPoint vc="3" uspid="800" ordinal="3" offset="8" path="1" />
- <BranchPoint vc="3" uspid="801" ordinal="4" offset="29" path="0" />
- <BranchPoint vc="7" uspid="802" ordinal="5" offset="29" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="3" uspid="790" ordinal="0" offset="0" sl="205" sc="0" el="205" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="1" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663411</MetadataToken>
- <Name>method System.Void modopt(System.Runtime.CompilerServices.IsConst)* *() <Module>::<CrtImplementationDetails>.ThisModule.ResolveMethod<void const * __clrcall(void)>(method System.Void modopt(System.Runtime.CompilerServices.IsConst)* *())</Name>
- <FileRef uid="15" />
- <SequencePoints>
- <SequencePoint vc="7" uspid="803" ordinal="0" offset="0" sl="154" sc="0" el="154" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="7" uspid="803" ordinal="0" offset="0" sl="154" sc="0" el="154" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663412</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.locale.facet._Incref(std.locale/facet* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="804" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663413</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.ios_base.good(std.ios_base modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="805" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663414</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.ios_base.flags(std.ios_base modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="806" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663415</MetadataToken>
- <Name>System.Int64 modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.ios_base.width(std.ios_base modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="807" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663416</MetadataToken>
- <Name>System.Int64 modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.ios_base.width(std.ios_base* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.Int64)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="808" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663417</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_ios<char,std::char_traits<char> >.setstate(std.basic_ios<char,std::char_traits<char> >* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.Int32,System.Boolean)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="809" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663418</MetadataToken>
- <Name>std.basic_streambuf<char,std::char_traits<char> >* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_ios<char,std::char_traits<char> >.rdbuf(std.basic_ios<char,std::char_traits<char> > modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="810" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663419</MetadataToken>
- <Name>std.basic_ostream<char,std::char_traits<char> >* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced) modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_ostream<char,std::char_traits<char> >.flush(std.basic_ostream<char,std::char_traits<char> >* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="811" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663420</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_streambuf<char,std::char_traits<char> >.sputc(std.basic_streambuf<char,std::char_traits<char> >* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.SByte modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="812" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663421</MetadataToken>
- <Name>std.basic_ostream<char,std::char_traits<char> >* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_ios<char,std::char_traits<char> >.tie(std.basic_ios<char,std::char_traits<char> > modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="813" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663422</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_ostream<char,std::char_traits<char> >._Osfx(std.basic_ostream<char,std::char_traits<char> >* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="814" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663423</MetadataToken>
- <Name>System.Int64 modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_streambuf<char,std::char_traits<char> >.sputn(std.basic_streambuf<char,std::char_traits<char> >* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.SByte modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte) modopt(System.Runtime.CompilerServices.IsConst)*,System.Int64)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="815" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663424</MetadataToken>
- <Name>System.SByte modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte) modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.basic_ios<char,std::char_traits<char> >.fill(std.basic_ios<char,std::char_traits<char> > modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="816" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663425</MetadataToken>
- <Name>System.Boolean modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::std.uncaught_exception()</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="817" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663426</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::Calc.mul(Calc* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.Int32,System.Int32)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="818" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663427</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::Calc.sum(Calc* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.Int32,System.Int32)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="819" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663428</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::__CxxUnregisterExceptionObject(System.Void*,System.Int32)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="820" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663429</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::__CxxQueryExceptionSize()</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="821" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663430</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::__CxxDetectRethrow(System.Void*)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="822" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663431</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::__CxxRegisterExceptionObject(System.Void*,System.Void*)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="823" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663432</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::__CxxExceptionFilter(System.Void*,System.Void*,System.Int32,System.Void*)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="824" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663433</MetadataToken>
- <Name>std.exception* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.exception.{ctor}(std.exception* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),std.exception modopt(System.Runtime.CompilerServices.IsConst)* modopt(System.Runtime.CompilerServices.IsImplicitlyDereferenced))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="825" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663434</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::std._Debug_message(System.Char modopt(System.Runtime.CompilerServices.IsConst)*,System.Char modopt(System.Runtime.CompilerServices.IsConst)*,System.UInt32)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="826" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663435</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std._Lockit.{dtor}(std._Lockit* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="827" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663436</MetadataToken>
- <Name>std._Lockit* modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std._Lockit.{ctor}(std._Lockit* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst),System.Int32)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="828" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663437</MetadataToken>
- <Name>System.UInt32 modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::strlen(System.SByte modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte) modopt(System.Runtime.CompilerServices.IsConst)*)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="829" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663438</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::delete[](System.Void*)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="830" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663439</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::__ExceptionPtrCopy(System.Void*,System.Void modopt(System.Runtime.CompilerServices.IsConst)*)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="831" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663440</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::delete(System.Void*)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="832" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663441</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvThiscall) <Module>::std.exception.{dtor}(std.exception* modopt(System.Runtime.CompilerServices.IsConst) modopt(System.Runtime.CompilerServices.IsConst))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="833" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663442</MetadataToken>
- <Name>System.Void* modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::_getFiberPtrId()</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="834" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663443</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::_amsg_exit(System.Int32)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="835" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663444</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::__security_init_cookie()</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="836" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663445</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvStdcall) <Module>::Sleep(System.UInt32 modopt(System.Runtime.CompilerServices.IsLong))</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="837" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663446</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::_cexit()</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="838" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663447</MetadataToken>
- <Name>System.Int32 modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::__FrameUnwindFilter(_EXCEPTION_POINTERS*)</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="839" ordinal="0" offset="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="0" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663448</MetadataToken>
- <Name>System.Void modopt(System.Runtime.CompilerServices.CallConvCdecl) <Module>::terminate()</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="0" uspid="840" ordinal="0" offset="0" />
- </Method>
- </Methods>
- </Class>
- <Class>
- <Summary numSequencePoints="10" visitedSequencePoints="8" numBranchPoints="7" visitedBranchPoints="5" sequenceCoverage="80" branchCoverage="71.43" maxCyclomaticComplexity="3" minCyclomaticComplexity="1" />
- <FullName>CalcTest.CalcTest</FullName>
- <Methods>
- <Method visited="true" cyclomaticComplexity="3" sequenceCoverage="66.67" branchCoverage="60" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="6" visitedSequencePoints="4" numBranchPoints="5" visitedBranchPoints="3" sequenceCoverage="66.67" branchCoverage="60" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" />
- <MetadataToken>100663449</MetadataToken>
- <Name>System.Void CalcTest.CalcTest::TestMethod1()</Name>
- <FileRef uid="16" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="841" ordinal="0" offset="0" sl="29" sc="0" el="29" ec="0" />
- <SequencePoint vc="1" uspid="842" ordinal="1" offset="10" sl="30" sc="0" el="30" ec="0" />
- <SequencePoint vc="1" uspid="843" ordinal="2" offset="20" sl="32" sc="0" el="32" ec="0" />
- <SequencePoint vc="0" uspid="844" ordinal="3" offset="28" sl="33" sc="0" el="33" ec="0" />
- <SequencePoint vc="1" uspid="845" ordinal="4" offset="45" sl="36" sc="0" el="36" ec="0" />
- <SequencePoint vc="0" uspid="846" ordinal="5" offset="60" sl="37" sc="0" el="37" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="847" ordinal="0" offset="22" path="0" />
- <BranchPoint vc="0" uspid="848" ordinal="1" offset="22" path="1" />
- <BranchPoint vc="0" uspid="849" ordinal="2" offset="26" path="0" />
- <BranchPoint vc="1" uspid="850" ordinal="3" offset="26" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="841" ordinal="0" offset="0" sl="29" sc="0" el="29" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663450</MetadataToken>
- <Name>System.Void CalcTest.CalcTest::TestMethod2()</Name>
- <FileRef uid="16" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="851" ordinal="0" offset="0" sl="43" sc="0" el="43" ec="0" />
- <SequencePoint vc="1" uspid="852" ordinal="1" offset="15" sl="44" sc="0" el="44" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="851" ordinal="0" offset="0" sl="43" sc="0" el="43" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="2" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663451</MetadataToken>
- <Name>System.Void CalcTest.CalcTest::TestMethod3()</Name>
- <FileRef uid="16" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="853" ordinal="0" offset="0" sl="50" sc="0" el="50" ec="0" />
- <SequencePoint vc="1" uspid="854" ordinal="1" offset="15" sl="51" sc="0" el="51" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="853" ordinal="0" offset="0" sl="50" sc="0" el="50" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663452</MetadataToken>
- <Name>System.Void CalcTest.CalcTest::.ctor()</Name>
- <SequencePoints />
- <BranchPoints />
- <MethodPoint vc="3" uspid="855" ordinal="0" offset="0" />
- </Method>
- </Methods>
- </Class>
- <Class>
- <Summary numSequencePoints="6" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <FullName><CrtImplementationDetails>.Exception</FullName>
- <Methods>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663455</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="856" ordinal="0" offset="0" sl="104" sc="0" el="104" ec="0" />
- <SequencePoint vc="0" uspid="857" ordinal="1" offset="8" sl="105" sc="0" el="105" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="856" ordinal="0" offset="0" sl="104" sc="0" el="104" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663456</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.Exception::.ctor(System.String,System.Exception)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="858" ordinal="0" offset="0" sl="99" sc="0" el="99" ec="0" />
- <SequencePoint vc="0" uspid="859" ordinal="1" offset="8" sl="100" sc="0" el="100" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="858" ordinal="0" offset="0" sl="99" sc="0" el="99" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663457</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.Exception::.ctor(System.String)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="860" ordinal="0" offset="0" sl="94" sc="0" el="94" ec="0" />
- <SequencePoint vc="0" uspid="861" ordinal="1" offset="7" sl="95" sc="0" el="95" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="860" ordinal="0" offset="0" sl="94" sc="0" el="94" ec="0" />
- </Method>
- </Methods>
- </Class>
- <Class>
- <Summary numSequencePoints="6" visitedSequencePoints="0" numBranchPoints="3" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <FullName><CrtImplementationDetails>.ModuleLoadException</FullName>
- <Methods>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663458</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.ModuleLoadException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="862" ordinal="0" offset="0" sl="129" sc="0" el="129" ec="0" />
- <SequencePoint vc="0" uspid="863" ordinal="1" offset="8" sl="130" sc="0" el="130" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="862" ordinal="0" offset="0" sl="129" sc="0" el="129" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663459</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.ModuleLoadException::.ctor(System.String,System.Exception)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="864" ordinal="0" offset="0" sl="121" sc="0" el="121" ec="0" />
- <SequencePoint vc="0" uspid="865" ordinal="1" offset="8" sl="122" sc="0" el="122" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="864" ordinal="0" offset="0" sl="121" sc="0" el="121" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663460</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.ModuleLoadException::.ctor(System.String)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="866" ordinal="0" offset="0" sl="116" sc="0" el="116" ec="0" />
- <SequencePoint vc="0" uspid="867" ordinal="1" offset="7" sl="117" sc="0" el="117" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="866" ordinal="0" offset="0" sl="116" sc="0" el="116" ec="0" />
- </Method>
- </Methods>
- </Class>
- <Class>
- <Summary numSequencePoints="15" visitedSequencePoints="0" numBranchPoints="16" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="6" minCyclomaticComplexity="1" />
- <FullName><CrtImplementationDetails>.ModuleLoadExceptionHandlerException</FullName>
- <Methods>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="false" isGetter="true" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663463</MetadataToken>
- <Name>System.Exception <CrtImplementationDetails>.ModuleLoadExceptionHandlerException::get_NestedException()</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="868" ordinal="0" offset="0" sl="150" sc="0" el="150" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="868" ordinal="0" offset="0" sl="150" sc="0" el="150" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="false" isGetter="false" isSetter="true">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663464</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.ModuleLoadExceptionHandlerException::set_NestedException(System.Exception)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="869" ordinal="0" offset="0" sl="150" sc="0" el="150" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="869" ordinal="0" offset="0" sl="150" sc="0" el="150" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663461</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.ModuleLoadExceptionHandlerException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="870" ordinal="0" offset="0" sl="176" sc="0" el="176" ec="0" />
- <SequencePoint vc="0" uspid="871" ordinal="1" offset="8" sl="177" sc="0" el="177" ec="0" />
- <SequencePoint vc="0" uspid="872" ordinal="2" offset="40" sl="178" sc="0" el="178" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="870" ordinal="0" offset="0" sl="176" sc="0" el="176" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663462</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.ModuleLoadExceptionHandlerException::.ctor(System.String,System.Exception,System.Exception)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="873" ordinal="0" offset="0" sl="146" sc="0" el="146" ec="0" />
- <SequencePoint vc="0" uspid="874" ordinal="1" offset="8" sl="147" sc="0" el="147" ec="0" />
- <SequencePoint vc="0" uspid="875" ordinal="2" offset="15" sl="148" sc="0" el="148" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="873" ordinal="0" offset="0" sl="146" sc="0" el="146" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="6" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="4" visitedSequencePoints="0" numBranchPoints="11" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="6" minCyclomaticComplexity="6" />
- <MetadataToken>100663465</MetadataToken>
- <Name>System.String <CrtImplementationDetails>.ModuleLoadExceptionHandlerException::ToString()</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="876" ordinal="0" offset="0" sl="154" sc="0" el="154" ec="0" />
- <SequencePoint vc="0" uspid="877" ordinal="1" offset="28" sl="155" sc="0" el="155" ec="0" />
- <SequencePoint vc="0" uspid="878" ordinal="2" offset="56" sl="162" sc="0" el="162" ec="0" />
- <SequencePoint vc="0" uspid="879" ordinal="3" offset="139" sl="163" sc="0" el="163" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="0" uspid="880" ordinal="0" offset="6" path="0" />
- <BranchPoint vc="0" uspid="881" ordinal="1" offset="6" path="1" />
- <BranchPoint vc="0" uspid="882" ordinal="2" offset="34" path="0" />
- <BranchPoint vc="0" uspid="883" ordinal="3" offset="34" path="1" />
- <BranchPoint vc="0" uspid="884" ordinal="4" offset="78" path="0" />
- <BranchPoint vc="0" uspid="885" ordinal="5" offset="78" path="1" />
- <BranchPoint vc="0" uspid="886" ordinal="6" offset="103" path="0" />
- <BranchPoint vc="0" uspid="887" ordinal="7" offset="103" path="1" />
- <BranchPoint vc="0" uspid="888" ordinal="8" offset="123" path="0" />
- <BranchPoint vc="0" uspid="889" ordinal="9" offset="123" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="876" ordinal="0" offset="0" sl="154" sc="0" el="154" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663466</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.ModuleLoadExceptionHandlerException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="890" ordinal="0" offset="0" sl="169" sc="0" el="169" ec="0" />
- <SequencePoint vc="0" uspid="891" ordinal="1" offset="8" sl="170" sc="0" el="170" ec="0" />
- <SequencePoint vc="0" uspid="892" ordinal="2" offset="35" sl="171" sc="0" el="171" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="890" ordinal="0" offset="0" sl="169" sc="0" el="169" ec="0" />
- </Method>
- </Methods>
- </Class>
- <Class>
- <Summary numSequencePoints="31" visitedSequencePoints="31" numBranchPoints="12" visitedBranchPoints="9" sequenceCoverage="100" branchCoverage="75" maxCyclomaticComplexity="4" minCyclomaticComplexity="1" />
- <FullName><CrtImplementationDetails>.ModuleUninitializer</FullName>
- <Methods>
- <Method visited="true" cyclomaticComplexity="2" sequenceCoverage="100" branchCoverage="66.67" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="11" visitedSequencePoints="11" numBranchPoints="3" visitedBranchPoints="2" sequenceCoverage="100" branchCoverage="66.67" maxCyclomaticComplexity="2" minCyclomaticComplexity="2" />
- <MetadataToken>100663467</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.ModuleUninitializer::AddHandler(System.EventHandler)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="893" ordinal="0" offset="0" sl="224" sc="0" el="224" ec="0" />
- <SequencePoint vc="1" uspid="894" ordinal="1" offset="2" sl="225" sc="0" el="225" ec="0" />
- <SequencePoint vc="1" uspid="895" ordinal="2" offset="7" sl="228" sc="0" el="228" ec="0" />
- <SequencePoint vc="1" uspid="896" ordinal="3" offset="12" sl="229" sc="0" el="229" ec="0" />
- <SequencePoint vc="1" uspid="897" ordinal="4" offset="24" sl="231" sc="0" el="231" ec="0" />
- <SequencePoint vc="1" uspid="898" ordinal="5" offset="30" sl="232" sc="0" el="232" ec="0" />
- <SequencePoint vc="1" uspid="899" ordinal="6" offset="37" sl="235" sc="0" el="235" ec="0" />
- <SequencePoint vc="1" uspid="900" ordinal="7" offset="39" sl="237" sc="0" el="237" ec="0" />
- <SequencePoint vc="1" uspid="901" ordinal="8" offset="42" sl="239" sc="0" el="239" ec="0" />
- <SequencePoint vc="1" uspid="902" ordinal="9" offset="52" sl="241" sc="0" el="241" ec="0" />
- <SequencePoint vc="1" uspid="903" ordinal="10" offset="53" sl="243" sc="0" el="243" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="904" ordinal="0" offset="40" path="0" />
- <BranchPoint vc="0" uspid="905" ordinal="1" offset="40" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="893" ordinal="0" offset="0" sl="224" sc="0" el="224" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="true" isStatic="true" isGetter="false" isSetter="false">
- <Summary numSequencePoints="3" visitedSequencePoints="3" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663468</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.ModuleUninitializer::.cctor()</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="906" ordinal="0" offset="0" sl="212" sc="0" el="212" ec="0" />
- <SequencePoint vc="1" uspid="907" ordinal="1" offset="10" sl="217" sc="0" el="217" ec="0" />
- <SequencePoint vc="1" uspid="908" ordinal="2" offset="20" sl="247" sc="0" el="247" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="906" ordinal="0" offset="0" sl="212" sc="0" el="212" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="1" sequenceCoverage="100" branchCoverage="100" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="5" visitedSequencePoints="5" numBranchPoints="1" visitedBranchPoints="1" sequenceCoverage="100" branchCoverage="100" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663469</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.ModuleUninitializer::.ctor()</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="909" ordinal="0" offset="0" sl="250" sc="0" el="250" ec="0" />
- <SequencePoint vc="1" uspid="910" ordinal="1" offset="6" sl="255" sc="0" el="255" ec="0" />
- <SequencePoint vc="1" uspid="911" ordinal="2" offset="19" sl="256" sc="0" el="256" ec="0" />
- <SequencePoint vc="1" uspid="912" ordinal="3" offset="30" sl="257" sc="0" el="257" ec="0" />
- <SequencePoint vc="1" uspid="913" ordinal="4" offset="41" sl="258" sc="0" el="258" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="909" ordinal="0" offset="0" sl="250" sc="0" el="250" ec="0" />
- </Method>
- <Method visited="true" cyclomaticComplexity="4" sequenceCoverage="100" branchCoverage="71.43" isConstructor="false" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="12" visitedSequencePoints="12" numBranchPoints="7" visitedBranchPoints="5" sequenceCoverage="100" branchCoverage="71.43" maxCyclomaticComplexity="4" minCyclomaticComplexity="4" />
- <MetadataToken>100663470</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.ModuleUninitializer::SingletonDomainUnload(System.Object,System.EventArgs)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="1" uspid="914" ordinal="0" offset="0" sl="265" sc="0" el="265" ec="0" />
- <SequencePoint vc="1" uspid="915" ordinal="1" offset="2" sl="266" sc="0" el="266" ec="0" />
- <SequencePoint vc="1" uspid="916" ordinal="2" offset="7" sl="269" sc="0" el="269" ec="0" />
- <SequencePoint vc="1" uspid="917" ordinal="3" offset="12" sl="270" sc="0" el="270" ec="0" />
- <SequencePoint vc="1" uspid="918" ordinal="4" offset="24" sl="273" sc="0" el="273" ec="0" />
- <SequencePoint vc="1" uspid="919" ordinal="5" offset="50" sl="275" sc="0" el="275" ec="0" />
- <SequencePoint vc="1" uspid="920" ordinal="6" offset="57" sl="273" sc="0" el="273" ec="0" />
- <SequencePoint vc="1" uspid="921" ordinal="7" offset="80" sl="279" sc="0" el="279" ec="0" />
- <SequencePoint vc="1" uspid="922" ordinal="8" offset="82" sl="281" sc="0" el="281" ec="0" />
- <SequencePoint vc="1" uspid="923" ordinal="9" offset="85" sl="283" sc="0" el="283" ec="0" />
- <SequencePoint vc="1" uspid="924" ordinal="10" offset="95" sl="285" sc="0" el="285" ec="0" />
- <SequencePoint vc="1" uspid="925" ordinal="11" offset="96" sl="287" sc="0" el="287" ec="0" />
- </SequencePoints>
- <BranchPoints>
- <BranchPoint vc="1" uspid="926" ordinal="0" offset="37" path="0" />
- <BranchPoint vc="1" uspid="927" ordinal="1" offset="37" path="1" />
- <BranchPoint vc="0" uspid="928" ordinal="2" offset="71" path="0" />
- <BranchPoint vc="1" uspid="929" ordinal="3" offset="71" path="1" />
- <BranchPoint vc="1" uspid="930" ordinal="4" offset="83" path="0" />
- <BranchPoint vc="0" uspid="931" ordinal="5" offset="83" path="1" />
- </BranchPoints>
- <MethodPoint xsi:type="SequencePoint" vc="1" uspid="914" ordinal="0" offset="0" sl="265" sc="0" el="265" ec="0" />
- </Method>
- </Methods>
- </Class>
- <Class>
- <Summary numSequencePoints="3" visitedSequencePoints="0" numBranchPoints="2" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <FullName><CrtImplementationDetails>.OpenMPWithMultipleAppdomainsException</FullName>
- <Methods>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="2" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663471</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.OpenMPWithMultipleAppdomainsException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="932" ordinal="0" offset="0" sl="424" sc="0" el="424" ec="0" />
- <SequencePoint vc="0" uspid="933" ordinal="1" offset="8" sl="425" sc="0" el="425" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="932" ordinal="0" offset="0" sl="424" sc="0" el="424" ec="0" />
- </Method>
- <Method visited="false" cyclomaticComplexity="1" sequenceCoverage="0" branchCoverage="0" isConstructor="true" isStatic="false" isGetter="false" isSetter="false">
- <Summary numSequencePoints="1" visitedSequencePoints="0" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="1" minCyclomaticComplexity="1" />
- <MetadataToken>100663472</MetadataToken>
- <Name>System.Void <CrtImplementationDetails>.OpenMPWithMultipleAppdomainsException::.ctor()</Name>
- <FileRef uid="9" />
- <SequencePoints>
- <SequencePoint vc="0" uspid="934" ordinal="0" offset="0" sl="420" sc="0" el="420" ec="0" />
- </SequencePoints>
- <BranchPoints />
- <MethodPoint xsi:type="SequencePoint" vc="0" uspid="934" ordinal="0" offset="0" sl="420" sc="0" el="420" ec="0" />
- </Method>
- </Methods>
- </Class>
- </Classes>
- </Module>
- <Module skippedDueTo="Filter" hash="1A-90-04-55-09-EC-E5-B9-0D-3F-26-25-62-AB-3F-B5-8F-9B-26-B3">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.ControllerObject\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.ControllerObject.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.ControllerObject</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="F0-EE-63-2A-D5-7A-B7-F6-E9-77-28-25-20-EF-5A-4A-83-A6-F3-B7">
- <FullName>C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\Microsoft.VisualStudio.TeamSystem.Licensing.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.TeamSystem.Licensing</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="92-C8-F7-DF-90-C8-4E-CE-BF-D1-8E-91-A5-BF-15-7A-B3-27-FF-AB">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Common\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Common.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.Common</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="F0-EE-63-2A-D5-7A-B7-F6-E9-77-28-25-20-EF-5A-4A-83-A6-F3-B7">
- <FullName>C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\Microsoft.VisualStudio.TeamSystem.Licensing.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.TeamSystem.Licensing</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="92-C8-F7-DF-90-C8-4E-CE-BF-D1-8E-91-A5-BF-15-7A-B3-27-FF-AB">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Common\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Common.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.Common</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="F0-AC-29-46-F9-CE-FF-96-AE-EE-4F-C0-DE-9E-59-D3-7E-1B-ED-08">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll</FullName>
- <ModuleName>System.Core</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="83-92-A6-61-AB-24-2D-60-6E-B3-F0-4C-6A-F3-38-AF-4E-6E-B8-30">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll</FullName>
- <ModuleName>System.Data</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="8F-46-4B-BE-28-40-30-A2-E6-52-58-36-C3-F3-E3-75-03-AF-F4-FC">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll</FullName>
- <ModuleName>System</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="2E-28-A3-E7-4F-05-75-91-3B-B4-A6-B7-58-E7-27-B0-EF-F7-52-11">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll</FullName>
- <ModuleName>System.Xml</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="44-FE-71-B9-06-7B-6F-13-AD-D8-73-48-5E-49-DB-9F-08-03-E6-D7">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll</FullName>
- <ModuleName>Microsoft.VisualC</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="4A-2E-2F-B0-09-7B-BA-3A-4D-7B-5C-2A-00-CD-52-75-5D-48-E0-0D">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.AgentProcessManager\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.AgentProcessManager.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.AgentProcessManager</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="B9-C1-7F-83-78-82-C0-E7-32-19-D1-C2-7E-00-4B-A3-D3-83-00-53">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="92-C8-F7-DF-90-C8-4E-CE-BF-D1-8E-91-A5-BF-15-7A-B3-27-FF-AB">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Common\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Common.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.Common</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="0F-07-95-F4-06-60-B0-91-D8-2F-F7-51-A7-F3-27-5B-67-A8-E7-2A">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.ExecutionCommon\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.ExecutionCommon</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="EF-C2-B4-43-29-1A-CA-59-51-9D-FA-BC-B6-EA-1C-30-BE-6F-53-76">
- <FullName>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.AgentObject\10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.AgentObject.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.AgentObject</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="1D-0B-A5-FA-5F-CA-17-86-22-D9-E4-DE-E5-10-21-8E-61-A8-70-7D">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll</FullName>
- <ModuleName>Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter</ModuleName>
- <Classes />
- </Module>
- <Module skippedDueTo="Filter" hash="44-FE-71-B9-06-7B-6F-13-AD-D8-73-48-5E-49-DB-9F-08-03-E6-D7">
- <FullName>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll</FullName>
- <ModuleName>Microsoft.VisualC</ModuleName>
- <Classes />
- </Module>
- </Modules>
- </CoverageSession>
Advertisement
Add Comment
Please, Sign In to add comment