svf-tools 1.0.692 → 1.0.694
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/SVF-doxygen/html/html/doxygen.css +239 -64
- package/SVF-doxygen/html/html/dynsections.js +26 -3
- package/SVF-doxygen/html/html/index.html +8 -5
- package/SVF-doxygen/html/html/jquery.js +21 -73
- package/SVF-doxygen/html/html/menu.js +25 -1
- package/SVF-doxygen/html/html/menudata.js +22 -0
- package/SVF-doxygen/html/html/search/mag_sel.png +0 -0
- package/SVF-doxygen/html/html/search/nomatches.html +1 -1
- package/SVF-doxygen/html/html/search/search.js +24 -1
- package/SVF-doxygen/html/html/search/search_l.png +0 -0
- package/SVF-doxygen/html/html/search/search_r.png +0 -0
- package/SVF-doxygen/html/html/tabs.css +1 -1
- package/package.json +1 -1
- package/svf/include/SVFIR/SVFType.h +33 -34
- package/svf/include/SVFIR/SymbolTableInfo.h +11 -2
- package/svf/lib/SVFIR/SymbolTableInfo.cpp +7 -4
- package/svf-llvm/include/SVF-LLVM/LLVMModule.h +3 -4
- package/svf-llvm/lib/LLVMModule.cpp +99 -93
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* The standard CSS for doxygen 1.8.
|
|
1
|
+
/* The standard CSS for doxygen 1.8.17 */
|
|
2
2
|
|
|
3
3
|
body, table, div, p, dl {
|
|
4
4
|
font: 400 14px/22px Roboto,sans-serif;
|
|
@@ -53,17 +53,24 @@ dt {
|
|
|
53
53
|
font-weight: bold;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
ul.multicol {
|
|
57
57
|
-moz-column-gap: 1em;
|
|
58
58
|
-webkit-column-gap: 1em;
|
|
59
|
+
column-gap: 1em;
|
|
59
60
|
-moz-column-count: 3;
|
|
60
61
|
-webkit-column-count: 3;
|
|
62
|
+
column-count: 3;
|
|
61
63
|
}
|
|
62
64
|
|
|
63
65
|
p.startli, p.startdd {
|
|
64
66
|
margin-top: 2px;
|
|
65
67
|
}
|
|
66
68
|
|
|
69
|
+
th p.starttd, p.intertd, p.endtd {
|
|
70
|
+
font-size: 100%;
|
|
71
|
+
font-weight: 700;
|
|
72
|
+
}
|
|
73
|
+
|
|
67
74
|
p.starttd {
|
|
68
75
|
margin-top: 0px;
|
|
69
76
|
}
|
|
@@ -80,6 +87,15 @@ p.endtd {
|
|
|
80
87
|
margin-bottom: 2px;
|
|
81
88
|
}
|
|
82
89
|
|
|
90
|
+
p.interli {
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
p.interdd {
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
p.intertd {
|
|
97
|
+
}
|
|
98
|
+
|
|
83
99
|
/* @end */
|
|
84
100
|
|
|
85
101
|
caption {
|
|
@@ -134,12 +150,12 @@ a.qindex {
|
|
|
134
150
|
a.qindexHL {
|
|
135
151
|
font-weight: bold;
|
|
136
152
|
background-color: #9CAFD4;
|
|
137
|
-
color: #
|
|
153
|
+
color: #FFFFFF;
|
|
138
154
|
border: 1px double #869DCA;
|
|
139
155
|
}
|
|
140
156
|
|
|
141
157
|
.contents a.qindexHL:visited {
|
|
142
|
-
color: #
|
|
158
|
+
color: #FFFFFF;
|
|
143
159
|
}
|
|
144
160
|
|
|
145
161
|
a.el {
|
|
@@ -163,6 +179,25 @@ dl.el {
|
|
|
163
179
|
margin-left: -1cm;
|
|
164
180
|
}
|
|
165
181
|
|
|
182
|
+
ul {
|
|
183
|
+
overflow: hidden; /*Fixed: list item bullets overlap floating elements*/
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
#side-nav ul {
|
|
187
|
+
overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
#main-nav ul {
|
|
191
|
+
overflow: visible; /* reset ul rule for the navigation bar drop down lists */
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.fragment {
|
|
195
|
+
text-align: left;
|
|
196
|
+
direction: ltr;
|
|
197
|
+
overflow-x: auto; /*Fixed: fragment lines overlap floating elements*/
|
|
198
|
+
overflow-y: hidden;
|
|
199
|
+
}
|
|
200
|
+
|
|
166
201
|
pre.fragment {
|
|
167
202
|
border: 1px solid #C4CFE5;
|
|
168
203
|
background-color: #FBFCFD;
|
|
@@ -177,8 +212,8 @@ pre.fragment {
|
|
|
177
212
|
}
|
|
178
213
|
|
|
179
214
|
div.fragment {
|
|
180
|
-
|
|
181
|
-
|
|
215
|
+
padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/
|
|
216
|
+
margin: 4px 8px 4px 2px;
|
|
182
217
|
background-color: #FBFCFD;
|
|
183
218
|
border: 1px solid #C4CFE5;
|
|
184
219
|
}
|
|
@@ -248,7 +283,7 @@ span.lineno a:hover {
|
|
|
248
283
|
div.ah, span.ah {
|
|
249
284
|
background-color: black;
|
|
250
285
|
font-weight: bold;
|
|
251
|
-
color: #
|
|
286
|
+
color: #FFFFFF;
|
|
252
287
|
margin-bottom: 3px;
|
|
253
288
|
margin-top: 3px;
|
|
254
289
|
padding: 0.2em;
|
|
@@ -324,7 +359,7 @@ img.formulaDsp {
|
|
|
324
359
|
|
|
325
360
|
}
|
|
326
361
|
|
|
327
|
-
img.formulaInl {
|
|
362
|
+
img.formulaInl, img.inline {
|
|
328
363
|
vertical-align: middle;
|
|
329
364
|
}
|
|
330
365
|
|
|
@@ -402,6 +437,13 @@ blockquote {
|
|
|
402
437
|
padding: 0 12px 0 16px;
|
|
403
438
|
}
|
|
404
439
|
|
|
440
|
+
blockquote.DocNodeRTL {
|
|
441
|
+
border-left: 0;
|
|
442
|
+
border-right: 2px solid #9CAFD4;
|
|
443
|
+
margin: 0 4px 0 24px;
|
|
444
|
+
padding: 0 16px 0 12px;
|
|
445
|
+
}
|
|
446
|
+
|
|
405
447
|
/* @end */
|
|
406
448
|
|
|
407
449
|
/*
|
|
@@ -498,7 +540,7 @@ table.memberdecls {
|
|
|
498
540
|
white-space: nowrap;
|
|
499
541
|
}
|
|
500
542
|
|
|
501
|
-
.memItemRight {
|
|
543
|
+
.memItemRight, .memTemplItemRight {
|
|
502
544
|
width: 100%;
|
|
503
545
|
}
|
|
504
546
|
|
|
@@ -666,17 +708,17 @@ dl.reflist dd {
|
|
|
666
708
|
padding-left: 0px;
|
|
667
709
|
}
|
|
668
710
|
|
|
669
|
-
.params .paramname, .retval .paramname {
|
|
711
|
+
.params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname {
|
|
670
712
|
font-weight: bold;
|
|
671
713
|
vertical-align: top;
|
|
672
714
|
}
|
|
673
715
|
|
|
674
|
-
.params .paramtype {
|
|
716
|
+
.params .paramtype, .tparams .paramtype {
|
|
675
717
|
font-style: italic;
|
|
676
718
|
vertical-align: top;
|
|
677
719
|
}
|
|
678
720
|
|
|
679
|
-
.params .paramdir {
|
|
721
|
+
.params .paramdir, .tparams .paramdir {
|
|
680
722
|
font-family: "courier new",courier,monospace;
|
|
681
723
|
vertical-align: top;
|
|
682
724
|
}
|
|
@@ -1081,72 +1123,143 @@ div.headertitle
|
|
|
1081
1123
|
padding: 5px 5px 5px 10px;
|
|
1082
1124
|
}
|
|
1083
1125
|
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1126
|
+
.PageDocRTL-title div.headertitle {
|
|
1127
|
+
text-align: right;
|
|
1128
|
+
direction: rtl;
|
|
1087
1129
|
}
|
|
1088
1130
|
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1131
|
+
dl {
|
|
1132
|
+
padding: 0 0 0 0;
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug, dl.examples */
|
|
1136
|
+
dl.section {
|
|
1092
1137
|
margin-left: 0px;
|
|
1093
1138
|
padding-left: 0px;
|
|
1094
1139
|
}
|
|
1095
1140
|
|
|
1096
|
-
dl.
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
padding-left: 3px;
|
|
1100
|
-
border-left:4px solid;
|
|
1101
|
-
border-color: #D0C000;
|
|
1141
|
+
dl.section.DocNodeRTL {
|
|
1142
|
+
margin-right: 0px;
|
|
1143
|
+
padding-right: 0px;
|
|
1102
1144
|
}
|
|
1103
1145
|
|
|
1104
|
-
dl.
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
border-color: #FF0000;
|
|
1146
|
+
dl.note {
|
|
1147
|
+
margin-left: -7px;
|
|
1148
|
+
padding-left: 3px;
|
|
1149
|
+
border-left: 4px solid;
|
|
1150
|
+
border-color: #D0C000;
|
|
1110
1151
|
}
|
|
1111
1152
|
|
|
1112
|
-
dl.
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1153
|
+
dl.note.DocNodeRTL {
|
|
1154
|
+
margin-left: 0;
|
|
1155
|
+
padding-left: 0;
|
|
1156
|
+
border-left: 0;
|
|
1157
|
+
margin-right: -7px;
|
|
1158
|
+
padding-right: 3px;
|
|
1159
|
+
border-right: 4px solid;
|
|
1160
|
+
border-color: #D0C000;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
dl.warning, dl.attention {
|
|
1164
|
+
margin-left: -7px;
|
|
1165
|
+
padding-left: 3px;
|
|
1166
|
+
border-left: 4px solid;
|
|
1167
|
+
border-color: #FF0000;
|
|
1118
1168
|
}
|
|
1119
1169
|
|
|
1120
|
-
dl.
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1170
|
+
dl.warning.DocNodeRTL, dl.attention.DocNodeRTL {
|
|
1171
|
+
margin-left: 0;
|
|
1172
|
+
padding-left: 0;
|
|
1173
|
+
border-left: 0;
|
|
1174
|
+
margin-right: -7px;
|
|
1175
|
+
padding-right: 3px;
|
|
1176
|
+
border-right: 4px solid;
|
|
1177
|
+
border-color: #FF0000;
|
|
1126
1178
|
}
|
|
1127
1179
|
|
|
1128
|
-
dl.
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
border-color: #00C0E0;
|
|
1180
|
+
dl.pre, dl.post, dl.invariant {
|
|
1181
|
+
margin-left: -7px;
|
|
1182
|
+
padding-left: 3px;
|
|
1183
|
+
border-left: 4px solid;
|
|
1184
|
+
border-color: #00D000;
|
|
1134
1185
|
}
|
|
1135
1186
|
|
|
1136
|
-
dl.
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1187
|
+
dl.pre.DocNodeRTL, dl.post.DocNodeRTL, dl.invariant.DocNodeRTL {
|
|
1188
|
+
margin-left: 0;
|
|
1189
|
+
padding-left: 0;
|
|
1190
|
+
border-left: 0;
|
|
1191
|
+
margin-right: -7px;
|
|
1192
|
+
padding-right: 3px;
|
|
1193
|
+
border-right: 4px solid;
|
|
1194
|
+
border-color: #00D000;
|
|
1142
1195
|
}
|
|
1143
1196
|
|
|
1144
|
-
dl.
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1197
|
+
dl.deprecated {
|
|
1198
|
+
margin-left: -7px;
|
|
1199
|
+
padding-left: 3px;
|
|
1200
|
+
border-left: 4px solid;
|
|
1201
|
+
border-color: #505050;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
dl.deprecated.DocNodeRTL {
|
|
1205
|
+
margin-left: 0;
|
|
1206
|
+
padding-left: 0;
|
|
1207
|
+
border-left: 0;
|
|
1208
|
+
margin-right: -7px;
|
|
1209
|
+
padding-right: 3px;
|
|
1210
|
+
border-right: 4px solid;
|
|
1211
|
+
border-color: #505050;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
dl.todo {
|
|
1215
|
+
margin-left: -7px;
|
|
1216
|
+
padding-left: 3px;
|
|
1217
|
+
border-left: 4px solid;
|
|
1218
|
+
border-color: #00C0E0;
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
dl.todo.DocNodeRTL {
|
|
1222
|
+
margin-left: 0;
|
|
1223
|
+
padding-left: 0;
|
|
1224
|
+
border-left: 0;
|
|
1225
|
+
margin-right: -7px;
|
|
1226
|
+
padding-right: 3px;
|
|
1227
|
+
border-right: 4px solid;
|
|
1228
|
+
border-color: #00C0E0;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
dl.test {
|
|
1232
|
+
margin-left: -7px;
|
|
1233
|
+
padding-left: 3px;
|
|
1234
|
+
border-left: 4px solid;
|
|
1235
|
+
border-color: #3030E0;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
dl.test.DocNodeRTL {
|
|
1239
|
+
margin-left: 0;
|
|
1240
|
+
padding-left: 0;
|
|
1241
|
+
border-left: 0;
|
|
1242
|
+
margin-right: -7px;
|
|
1243
|
+
padding-right: 3px;
|
|
1244
|
+
border-right: 4px solid;
|
|
1245
|
+
border-color: #3030E0;
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
dl.bug {
|
|
1249
|
+
margin-left: -7px;
|
|
1250
|
+
padding-left: 3px;
|
|
1251
|
+
border-left: 4px solid;
|
|
1252
|
+
border-color: #C08050;
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
dl.bug.DocNodeRTL {
|
|
1256
|
+
margin-left: 0;
|
|
1257
|
+
padding-left: 0;
|
|
1258
|
+
border-left: 0;
|
|
1259
|
+
margin-right: -7px;
|
|
1260
|
+
padding-right: 3px;
|
|
1261
|
+
border-right: 4px solid;
|
|
1262
|
+
border-color: #C08050;
|
|
1150
1263
|
}
|
|
1151
1264
|
|
|
1152
1265
|
dl.section dd {
|
|
@@ -1263,6 +1376,11 @@ div.toc {
|
|
|
1263
1376
|
width: 200px;
|
|
1264
1377
|
}
|
|
1265
1378
|
|
|
1379
|
+
.PageDocRTL-title div.toc {
|
|
1380
|
+
float: left !important;
|
|
1381
|
+
text-align: right;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1266
1384
|
div.toc li {
|
|
1267
1385
|
background: url("bdwn.png") no-repeat scroll 0 5px transparent;
|
|
1268
1386
|
font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif;
|
|
@@ -1271,6 +1389,12 @@ div.toc li {
|
|
|
1271
1389
|
padding-top: 2px;
|
|
1272
1390
|
}
|
|
1273
1391
|
|
|
1392
|
+
.PageDocRTL-title div.toc li {
|
|
1393
|
+
background-position-x: right !important;
|
|
1394
|
+
padding-left: 0 !important;
|
|
1395
|
+
padding-right: 10px;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1274
1398
|
div.toc h3 {
|
|
1275
1399
|
font: bold 12px/1.2 Arial,FreeSans,sans-serif;
|
|
1276
1400
|
color: #4665A2;
|
|
@@ -1300,6 +1424,26 @@ div.toc li.level4 {
|
|
|
1300
1424
|
margin-left: 45px;
|
|
1301
1425
|
}
|
|
1302
1426
|
|
|
1427
|
+
.PageDocRTL-title div.toc li.level1 {
|
|
1428
|
+
margin-left: 0 !important;
|
|
1429
|
+
margin-right: 0;
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
.PageDocRTL-title div.toc li.level2 {
|
|
1433
|
+
margin-left: 0 !important;
|
|
1434
|
+
margin-right: 15px;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.PageDocRTL-title div.toc li.level3 {
|
|
1438
|
+
margin-left: 0 !important;
|
|
1439
|
+
margin-right: 30px;
|
|
1440
|
+
}
|
|
1441
|
+
|
|
1442
|
+
.PageDocRTL-title div.toc li.level4 {
|
|
1443
|
+
margin-left: 0 !important;
|
|
1444
|
+
margin-right: 45px;
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1303
1447
|
.inherit_header {
|
|
1304
1448
|
font-weight: bold;
|
|
1305
1449
|
color: gray;
|
|
@@ -1413,7 +1557,7 @@ tr.heading h2 {
|
|
|
1413
1557
|
}
|
|
1414
1558
|
|
|
1415
1559
|
#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after {
|
|
1416
|
-
border-top-color: #
|
|
1560
|
+
border-top-color: #FFFFFF;
|
|
1417
1561
|
border-width: 10px;
|
|
1418
1562
|
margin: 0px -10px;
|
|
1419
1563
|
}
|
|
@@ -1441,7 +1585,7 @@ tr.heading h2 {
|
|
|
1441
1585
|
}
|
|
1442
1586
|
|
|
1443
1587
|
#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after {
|
|
1444
|
-
border-bottom-color: #
|
|
1588
|
+
border-bottom-color: #FFFFFF;
|
|
1445
1589
|
border-width: 10px;
|
|
1446
1590
|
margin: 0px -10px;
|
|
1447
1591
|
}
|
|
@@ -1468,7 +1612,7 @@ tr.heading h2 {
|
|
|
1468
1612
|
left: 100%;
|
|
1469
1613
|
}
|
|
1470
1614
|
#powerTip.e:after {
|
|
1471
|
-
border-left-color: #
|
|
1615
|
+
border-left-color: #FFFFFF;
|
|
1472
1616
|
border-width: 10px;
|
|
1473
1617
|
top: 50%;
|
|
1474
1618
|
margin-top: -10px;
|
|
@@ -1484,7 +1628,7 @@ tr.heading h2 {
|
|
|
1484
1628
|
right: 100%;
|
|
1485
1629
|
}
|
|
1486
1630
|
#powerTip.w:after {
|
|
1487
|
-
border-right-color: #
|
|
1631
|
+
border-right-color: #FFFFFF;
|
|
1488
1632
|
border-width: 10px;
|
|
1489
1633
|
top: 50%;
|
|
1490
1634
|
margin-top: -10px;
|
|
@@ -1592,5 +1736,36 @@ th.markdownTableHeadCenter, td.markdownTableBodyCenter {
|
|
|
1592
1736
|
text-align: center
|
|
1593
1737
|
}
|
|
1594
1738
|
|
|
1739
|
+
.DocNodeRTL {
|
|
1740
|
+
text-align: right;
|
|
1741
|
+
direction: rtl;
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
.DocNodeLTR {
|
|
1745
|
+
text-align: left;
|
|
1746
|
+
direction: ltr;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
table.DocNodeRTL {
|
|
1750
|
+
width: auto;
|
|
1751
|
+
margin-right: 0;
|
|
1752
|
+
margin-left: auto;
|
|
1753
|
+
}
|
|
1595
1754
|
|
|
1755
|
+
table.DocNodeLTR {
|
|
1756
|
+
width: auto;
|
|
1757
|
+
margin-right: auto;
|
|
1758
|
+
margin-left: 0;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
tt, code, kbd, samp
|
|
1762
|
+
{
|
|
1763
|
+
display: inline-block;
|
|
1764
|
+
direction:ltr;
|
|
1765
|
+
}
|
|
1596
1766
|
/* @end */
|
|
1767
|
+
|
|
1768
|
+
u {
|
|
1769
|
+
text-decoration: underline;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
/*
|
|
2
|
+
@licstart The following is the entire license notice for the
|
|
3
|
+
JavaScript code in this file.
|
|
4
|
+
|
|
5
|
+
Copyright (C) 1997-2017 by Dimitri van Heesch
|
|
6
|
+
|
|
7
|
+
This program is free software; you can redistribute it and/or modify
|
|
8
|
+
it under the terms of the GNU General Public License as published by
|
|
9
|
+
the Free Software Foundation; either version 2 of the License, or
|
|
10
|
+
(at your option) any later version.
|
|
11
|
+
|
|
12
|
+
This program is distributed in the hope that it will be useful,
|
|
13
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
15
|
+
GNU General Public License for more details.
|
|
16
|
+
|
|
17
|
+
You should have received a copy of the GNU General Public License along
|
|
18
|
+
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
19
|
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
20
|
+
|
|
21
|
+
@licend The above is the entire license notice
|
|
22
|
+
for the JavaScript code in this file
|
|
23
|
+
*/
|
|
1
24
|
function toggleVisibility(linkObj)
|
|
2
25
|
{
|
|
3
26
|
var base = $(linkObj).attr('id');
|
|
@@ -15,7 +38,7 @@ function toggleVisibility(linkObj)
|
|
|
15
38
|
summary.hide();
|
|
16
39
|
$(linkObj).removeClass('closed').addClass('opened');
|
|
17
40
|
$(trigger).attr('src',src.substring(0,src.length-10)+'open.png');
|
|
18
|
-
}
|
|
41
|
+
}
|
|
19
42
|
return false;
|
|
20
43
|
}
|
|
21
44
|
|
|
@@ -94,11 +117,11 @@ function toggleInherit(id)
|
|
|
94
117
|
$(img).attr('src',src.substring(0,src.length-10)+'open.png');
|
|
95
118
|
}
|
|
96
119
|
}
|
|
97
|
-
|
|
120
|
+
/* @license-end */
|
|
98
121
|
|
|
99
122
|
$(document).ready(function() {
|
|
100
123
|
$('.code,.codeRef').each(function() {
|
|
101
|
-
$(this).data('powertip',$('#'+$(this).attr('href').replace(/.*\//,'').replace(/[^a-z_A-Z0-9]/g,'_')).html());
|
|
124
|
+
$(this).data('powertip',$('#a'+$(this).attr('href').replace(/.*\//,'').replace(/[^a-z_A-Z0-9]/g,'_')).html());
|
|
102
125
|
$(this).powerTip({ placement: 's', smartPlacement: true, mouseOnToPopup: true });
|
|
103
126
|
});
|
|
104
127
|
});
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
2
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
3
3
|
<head>
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
|
6
|
-
<meta name="generator" content="Doxygen 1.8.
|
|
6
|
+
<meta name="generator" content="Doxygen 1.8.17"/>
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
8
8
|
<title>Static Value-Flow Analysis: Main Page</title>
|
|
9
9
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
|
@@ -29,18 +29,21 @@
|
|
|
29
29
|
</table>
|
|
30
30
|
</div>
|
|
31
31
|
<!-- end header part -->
|
|
32
|
-
<!-- Generated by Doxygen 1.8.
|
|
32
|
+
<!-- Generated by Doxygen 1.8.17 -->
|
|
33
33
|
<script type="text/javascript">
|
|
34
|
+
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
|
34
35
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
|
36
|
+
/* @license-end */
|
|
35
37
|
</script>
|
|
36
38
|
<script type="text/javascript" src="menudata.js"></script>
|
|
37
39
|
<script type="text/javascript" src="menu.js"></script>
|
|
38
40
|
<script type="text/javascript">
|
|
41
|
+
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
|
39
42
|
$(function() {
|
|
40
43
|
initMenu('',true,false,'search.php','Search');
|
|
41
44
|
$(document).ready(function() { init_search(); });
|
|
42
45
|
});
|
|
43
|
-
|
|
46
|
+
/* @license-end */</script>
|
|
44
47
|
<div id="main-nav"></div>
|
|
45
48
|
</div><!-- top -->
|
|
46
49
|
<!-- window showing the filter options -->
|
|
@@ -67,7 +70,7 @@ $(function() {
|
|
|
67
70
|
<hr class="footer"/><address class="footer"><small>
|
|
68
71
|
Generated by  <a href="http://www.doxygen.org/index.html">
|
|
69
72
|
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
|
70
|
-
</a> 1.8.
|
|
73
|
+
</a> 1.8.17
|
|
71
74
|
</small></address>
|
|
72
75
|
</body>
|
|
73
76
|
</html>
|