-
Notifications
You must be signed in to change notification settings - Fork 266
/
vlpp.natvis
131 lines (121 loc) · 6.28 KB
/
vlpp.natvis
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="vl::ObjectString<wchar_t>">
<AlternativeType Name="vl::ObjectString<char16_t>"/>
<DisplayString>{{ size={length}, buffer={buffer+start,su} }}</DisplayString>
<StringView>buffer+start,su</StringView>
<Expand>
<Item Name="[size]">length</Item>
<ArrayItems>
<Size>length</Size>
<ValuePointer>buffer+start</ValuePointer>
</ArrayItems>
</Expand>
</Type>
<Type Name="vl::ObjectString<char8_t>">
<DisplayString>{{ size={length}, buffer={buffer+start,s8} }}</DisplayString>
<StringView>buffer+start,su</StringView>
<Expand>
<Item Name="[size]">length</Item>
<ArrayItems>
<Size>length</Size>
<ValuePointer>buffer+start</ValuePointer>
</ArrayItems>
</Expand>
</Type>
<Type Name="vl::ObjectString<char32_t>">
<DisplayString>{{ size={length}, buffer={buffer+start,s32} }}</DisplayString>
<StringView>buffer+start,su</StringView>
<Expand>
<Item Name="[size]">length</Item>
<ArrayItems>
<Size>length</Size>
<ValuePointer>buffer+start</ValuePointer>
</ArrayItems>
</Expand>
</Type>
<Type Name="vl::ObjectString<char>">
<DisplayString>{{ size={length}, buffer={buffer+start,s} }}</DisplayString>
<StringView>buffer+start,s</StringView>
<Expand>
<Item Name="[size]">length</Item>
<ArrayItems>
<Size>length</Size>
<ValuePointer>buffer+start</ValuePointer>
</ArrayItems>
</Expand>
</Type>
<Type Name="vl::collections::List<*>">
<AlternativeType Name="vl::collections::SortedList<*>"/>
<AlternativeType Name="vl::collections::Array<*>"/>
<DisplayString>{{ size={count} }}</DisplayString>
<Expand>
<Item Name="[size]">count</Item>
<ArrayItems>
<Size>count</Size>
<ValuePointer>($T1*)buffer</ValuePointer>
</ArrayItems>
</Expand>
</Type>
<Type Name="vl::collections::Dictionary<*,*>">
<AlternativeType Name="vl::collections::Group<*,*>"/>
<DisplayString>{{ size={keys.count} }}</DisplayString>
<Expand>
<Item Name="[size]">keys.count</Item>
<Item Name="Keys">keys</Item>
<Item Name="Values">values</Item>
</Expand>
</Type>
<Type Name="vl::Ptr<*>">
<AlternativeType Name="vl::ComPtr<*>"/>
<DisplayString Condition="reference == 0">[empty]</DisplayString>
<DisplayString Condition="reference != 0">{*reference}</DisplayString>
<Expand>
<ExpandedItem Condition="reference != 0">reference</ExpandedItem>
</Expand>
</Type>
<Type Name="vl::Nullable<*>">
<DisplayString Condition="!initialized">[empty]</DisplayString>
<DisplayString Condition="initialized">{object}</DisplayString>
<Expand>
<ExpandedItem Condition="initialized">object</ExpandedItem>
</Expand>
</Type>
<Type Name="vl::Variant<*>">
<DisplayString Optional="true" Condition="index == -1">[invalid]</DisplayString>
<DisplayString Optional="true" Condition="index == 0">{{ index=0, value={*($T1*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 1">{{ index=1, value={*($T2*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 2">{{ index=2, value={*($T3*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 3">{{ index=3, value={*($T4*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 4">{{ index=4, value={*($T5*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 5">{{ index=5, value={*($T6*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 6">{{ index=6, value={*($T7*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 7">{{ index=7, value={*($T8*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 8">{{ index=8, value={*($T9*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 9">{{ index=9, value={*($T10*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 10">{{ index=10, value={*($T11*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 11">{{ index=11, value={*($T12*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 12">{{ index=12, value={*($T13*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 13">{{ index=13, value={*($T14*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 14">{{ index=14, value={*($T15*)buffer} }}</DisplayString>
<DisplayString Optional="true" Condition="index == 15">{{ index=15, value={*($T16*)buffer} }}</DisplayString>
<Expand>
<ExpandedItem Optional="true" Condition="index == 0">*($T1*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 1">*($T2*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 2">*($T3*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 3">*($T4*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 4">*($T5*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 5">*($T6*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 6">*($T7*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 7">*($T8*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 8">*($T9*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 9">*($T10*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 10">*($T11*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 11">*($T12*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 12">*($T13*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 13">*($T14*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 14">*($T15*)buffer</ExpandedItem>
<ExpandedItem Optional="true" Condition="index == 15">*($T16*)buffer</ExpandedItem>
</Expand>
</Type>
</AutoVisualizer>