File: Sci.natvis

package info (click to toggle)
codequery 0.21.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 11,012 kB
  • sloc: cpp: 114,603; xml: 16,576; python: 6,512; ansic: 3,262; perl: 444; makefile: 324; sql: 160; sh: 43; objc: 19; ruby: 6; php: 1
file content (20 lines) | stat: -rw-r--r-- 737 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?> 
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
  <Type Name="SplitVector&lt;*&gt;">
    <DisplayString>{{size = {lengthBody}}}</DisplayString>
    <Expand>
      <Item Name="[size]">lengthBody</Item>
      <Item Name="[capacity]">(size)</Item>
      <Item Name="[part1Length]">part1Length</Item>
      <Item Name="[gap]">gapLength</Item>
      <ArrayItems>
        <Size>part1Length</Size>
        <ValuePointer>body</ValuePointer>
      </ArrayItems>
      <ArrayItems>
        <Size>lengthBody-part1Length</Size>
        <ValuePointer>body+part1Length+gapLength</ValuePointer>
      </ArrayItems>
    </Expand>
  </Type>
</AutoVisualizer>