File: lazutils.xct

package info (click to toggle)
lazarus 1.2.4%2Bdfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 170,220 kB
  • ctags: 115,165
  • sloc: pascal: 1,386,898; xml: 257,878; sh: 2,935; java: 603; makefile: 549; perl: 297; sql: 174; ansic: 137
file content (4412 lines) | stat: -rw-r--r-- 173,312 bytes parent folder | download | duplicates (2)
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
# FPDoc Content File
:link tree
#lazutils index.html
 LazUtilsStrConsts lazutilsstrconsts/index.html
  lrsModified lazutilsstrconsts/index-1.html#lrsmodified
  lrsInvalidCharSet lazutilsstrconsts/index-1.html#lrsinvalidcharset
  lrsSize lazutilsstrconsts/index-1.html#lrssize
  lrsFileDoesNotExist lazutilsstrconsts/index-1.html#lrsfiledoesnotexist
  lrsFileIsADirectoryAndNotAnExecutable lazutilsstrconsts/index-1.html#lrsfileisadirectoryandnotanexecutable
  lrsReadAccessDeniedFor lazutilsstrconsts/index-1.html#lrsreadaccessdeniedfor
  lrsADirectoryComponentInDoesNotExistOrIsADanglingSyml2 lazutilsstrconsts/index-1.html#lrsadirectorycomponentindoesnotexistorisadanglingsyml2
  lrsADirectoryComponentInIsNotADirectory2 lazutilsstrconsts/index-1.html#lrsadirectorycomponentinisnotadirectory2
  lrsADirectoryComponentInDoesNotExistOrIsADanglingSyml lazutilsstrconsts/index-1.html#lrsadirectorycomponentindoesnotexistorisadanglingsyml
  lrsADirectoryComponentInIsNotADirectory lazutilsstrconsts/index-1.html#lrsadirectorycomponentinisnotadirectory
  lrsInsufficientMemory lazutilsstrconsts/index-1.html#lrsinsufficientmemory
  lrsHasACircularSymbolicLink lazutilsstrconsts/index-1.html#lrshasacircularsymboliclink
  lrsIsNotASymbolicLink lazutilsstrconsts/index-1.html#lrsisnotasymboliclink
  lrsIsNotExecutable lazutilsstrconsts/index-1.html#lrsisnotexecutable
  lrsUnableToCreateConfigDirectoryS lazutilsstrconsts/index-1.html#lrsunabletocreateconfigdirectorys
  lrsProgramFileNotFound lazutilsstrconsts/index-1.html#lrsprogramfilenotfound
  lrsCanNotExecute lazutilsstrconsts/index-1.html#lrscannotexecute
  lrsNodeSet lazutilsstrconsts/index-1.html#lrsnodeset
  lrsBoolean lazutilsstrconsts/index-1.html#lrsboolean
  lrsNumber lazutilsstrconsts/index-1.html#lrsnumber
  lrsString lazutilsstrconsts/index-1.html#lrsstring
  lrsVarNoConversion lazutilsstrconsts/index-1.html#lrsvarnoconversion
  lrsScannerUnclosedString lazutilsstrconsts/index-1.html#lrsscannerunclosedstring
  lrsScannerInvalidChar lazutilsstrconsts/index-1.html#lrsscannerinvalidchar
  lrsScannerMalformedQName lazutilsstrconsts/index-1.html#lrsscannermalformedqname
  lrsScannerExpectedVarName lazutilsstrconsts/index-1.html#lrsscannerexpectedvarname
  lrsParserExpectedLeftBracket lazutilsstrconsts/index-1.html#lrsparserexpectedleftbracket
  lrsParserExpectedRightBracket lazutilsstrconsts/index-1.html#lrsparserexpectedrightbracket
  lrsParserBadAxisName lazutilsstrconsts/index-1.html#lrsparserbadaxisname
  lrsParserBadNodeType lazutilsstrconsts/index-1.html#lrsparserbadnodetype
  lrsParserExpectedRightSquareBracket lazutilsstrconsts/index-1.html#lrsparserexpectedrightsquarebracket
  lrsParserInvalidPrimExpr lazutilsstrconsts/index-1.html#lrsparserinvalidprimexpr
  lrsParserGarbageAfterExpression lazutilsstrconsts/index-1.html#lrsparsergarbageafterexpression
  lrsParserInvalidNodeTest lazutilsstrconsts/index-1.html#lrsparserinvalidnodetest
  lrsEvalUnknownFunction lazutilsstrconsts/index-1.html#lrsevalunknownfunction
  lrsEvalUnknownVariable lazutilsstrconsts/index-1.html#lrsevalunknownvariable
  lrsEvalInvalidArgCount lazutilsstrconsts/index-1.html#lrsevalinvalidargcount
 LUResStrings luresstrings/index.html
  ctsFileDoesNotExist luresstrings/index-1.html#ctsfiledoesnotexist
  ctsFileIsNotExecutable luresstrings/index-1.html#ctsfileisnotexecutable
 lazutf8sysutils lazutf8sysutils/index.html
  NowUTC lazutf8sysutils/nowutc.html
  GetTickCount64 lazutf8sysutils/gettickcount64.html
 LazMethodList lazmethodlist/index.html
  TMethodList lazmethodlist/tmethodlist.html
   Destroy lazmethodlist/tmethodlist.destroy.html
   Count lazmethodlist/tmethodlist.count.html
   NextDownIndex lazmethodlist/tmethodlist.nextdownindex.html
   IndexOf lazmethodlist/tmethodlist.indexof.html
   Delete lazmethodlist/tmethodlist.delete.html
   Remove lazmethodlist/tmethodlist.remove.html
   Add lazmethodlist/tmethodlist.add.html
   Insert lazmethodlist/tmethodlist.insert.html
   Move lazmethodlist/tmethodlist.move.html
   RemoveAllMethodsOfObject lazmethodlist/tmethodlist.removeallmethodsofobject.html
   CallNotifyEvents lazmethodlist/tmethodlist.callnotifyevents.html
   Items lazmethodlist/tmethodlist.items.html
 AvgLvlTree avglvltree/index.html
  TObjectSortCompare avglvltree/tobjectsortcompare.html
  TAvgLvlTreeNodeClass avglvltree/tavglvltreenodeclass.html
  PAvgLvlTreeNode avglvltree/pavglvltreenode.html
  TAvgLvlTreeClass avglvltree/tavglvltreeclass.html
  PAvgLvlTree avglvltree/pavglvltree.html
  TPointerToPointerItem avglvltree/tpointertopointeritem.html
  PPointerToPointerItem avglvltree/ppointertopointeritem.html
  TStringMapItem avglvltree/tstringmapitem.html
  PStringMapItem avglvltree/pstringmapitem.html
  TStringToStringItem avglvltree/tstringtostringitem.html
  PStringToStringItem avglvltree/pstringtostringitem.html
  TStringToPointerItem avglvltree/tstringtopointeritem.html
  PStringToPointerItem avglvltree/pstringtopointeritem.html
  TAvgLvlTreeNode avglvltree/tavglvltreenode.html
   Parent avglvltree/tavglvltreenode.parent.html
   Left avglvltree/tavglvltreenode.left.html
   Right avglvltree/tavglvltreenode.right.html
   Balance avglvltree/tavglvltreenode.balance.html
   Data avglvltree/tavglvltreenode.data.html
   Successor avglvltree/tavglvltreenode.successor.html
   Precessor avglvltree/tavglvltreenode.precessor.html
   TreeDepth avglvltree/tavglvltreenode.treedepth.html
   ConsistencyCheck avglvltree/tavglvltreenode.consistencycheck.html
   GetCount avglvltree/tavglvltreenode.getcount.html
  TAvgLvlTreeNodeEnumerator avglvltree/tavglvltreenodeenumerator.html
   FCurrent avglvltree/tavglvltreenodeenumerator.fcurrent.html
   FLowToHigh avglvltree/tavglvltreenodeenumerator.flowtohigh.html
   FTree avglvltree/tavglvltreenodeenumerator.ftree.html
   Create avglvltree/tavglvltreenodeenumerator.create.html
   GetEnumerator avglvltree/tavglvltreenodeenumerator.getenumerator.html
   MoveNext avglvltree/tavglvltreenodeenumerator.movenext.html
   Current avglvltree/tavglvltreenodeenumerator.current.html
   LowToHigh avglvltree/tavglvltreenodeenumerator.lowtohigh.html
  TAvgLvlTree avglvltree/tavglvltree.html
   fRoot avglvltree/tavglvltree.froot.html
   FCount avglvltree/tavglvltree.fcount.html
   FNodeClass avglvltree/tavglvltree.fnodeclass.html
   FOnCompare avglvltree/tavglvltree.foncompare.html
   FOnObjectCompare avglvltree/tavglvltree.fonobjectcompare.html
   BalanceAfterInsert avglvltree/tavglvltree.balanceafterinsert.html
   BalanceAfterDelete avglvltree/tavglvltree.balanceafterdelete.html
   DeletingNode avglvltree/tavglvltree.deletingnode.html
   FindInsertPos avglvltree/tavglvltree.findinsertpos.html
   Init avglvltree/tavglvltree.init.html
   NodeAdded avglvltree/tavglvltree.nodeadded.html
   RotateLeft avglvltree/tavglvltree.rotateleft.html
   RotateRight avglvltree/tavglvltree.rotateright.html
   SwitchPositionWithSuccessor avglvltree/tavglvltree.switchpositionwithsuccessor.html
   SetOnCompare avglvltree/tavglvltree.setoncompare.html
   SetOnObjectCompare avglvltree/tavglvltree.setonobjectcompare.html
   SetCompares avglvltree/tavglvltree.setcompares.html
   Create avglvltree/tavglvltree.create.html
   CreateObjectCompare avglvltree/tavglvltree.createobjectcompare.html
   Destroy avglvltree/tavglvltree.destroy.html
   OnCompare avglvltree/tavglvltree.oncompare.html
   OnObjectCompare avglvltree/tavglvltree.onobjectcompare.html
   NodeClass avglvltree/tavglvltree.nodeclass.html
   Add avglvltree/tavglvltree.add.html
   Delete avglvltree/tavglvltree.delete.html
   Remove avglvltree/tavglvltree.remove.html
   RemovePointer avglvltree/tavglvltree.removepointer.html
   MoveDataLeftMost avglvltree/tavglvltree.movedataleftmost.html
   MoveDataRightMost avglvltree/tavglvltree.movedatarightmost.html
   Clear avglvltree/tavglvltree.clear.html
   FreeAndClear avglvltree/tavglvltree.freeandclear.html
   FreeAndDelete avglvltree/tavglvltree.freeanddelete.html
   Root avglvltree/tavglvltree.root.html
   Count avglvltree/tavglvltree.count.html
   Compare avglvltree/tavglvltree.compare.html
   Find avglvltree/tavglvltree.find.html
   FindKey avglvltree/tavglvltree.findkey.html
   FindNearestKey avglvltree/tavglvltree.findnearestkey.html
   FindSuccessor avglvltree/tavglvltree.findsuccessor.html
   FindPrecessor avglvltree/tavglvltree.findprecessor.html
   FindLowest avglvltree/tavglvltree.findlowest.html
   FindHighest avglvltree/tavglvltree.findhighest.html
   FindNearest avglvltree/tavglvltree.findnearest.html
   FindPointer avglvltree/tavglvltree.findpointer.html
   FindLeftMost avglvltree/tavglvltree.findleftmost.html
   FindRightMost avglvltree/tavglvltree.findrightmost.html
   FindLeftMostKey avglvltree/tavglvltree.findleftmostkey.html
   FindRightMostKey avglvltree/tavglvltree.findrightmostkey.html
   FindLeftMostSameKey avglvltree/tavglvltree.findleftmostsamekey.html
   FindRightMostSameKey avglvltree/tavglvltree.findrightmostsamekey.html
   GetEnumerator avglvltree/tavglvltree.getenumerator.html
   GetEnumeratorHighToLow avglvltree/tavglvltree.getenumeratorhightolow.html
   ConsistencyCheck avglvltree/tavglvltree.consistencycheck.html
   WriteReportToStream avglvltree/tavglvltree.writereporttostream.html
   NodeToReportStr avglvltree/tavglvltree.nodetoreportstr.html
   ReportAsString avglvltree/tavglvltree.reportasstring.html
  TIndexedAVLTreeNode avglvltree/tindexedavltreenode.html
   LeftCount avglvltree/tindexedavltreenode.leftcount.html
  TIndexedAVLTree avglvltree/tindexedavltree.html
   fLastIndex avglvltree/tindexedavltree.flastindex.html
   fLastNode avglvltree/tindexedavltree.flastnode.html
   DeletingNode avglvltree/tindexedavltree.deletingnode.html
   Init avglvltree/tindexedavltree.init.html
   NodeAdded avglvltree/tindexedavltree.nodeadded.html
   RotateLeft avglvltree/tindexedavltree.rotateleft.html
   RotateRight avglvltree/tindexedavltree.rotateright.html
   SwitchPositionWithSuccessor avglvltree/tindexedavltree.switchpositionwithsuccessor.html
   GetNodeAtIndex avglvltree/tindexedavltree.getnodeatindex.html
   NodeToIndex avglvltree/tindexedavltree.nodetoindex.html
   IndexOf avglvltree/tindexedavltree.indexof.html
   Items avglvltree/tindexedavltree.items.html
   ConsistencyCheck avglvltree/tavglvltree.consistencycheck.html
   NodeToReportStr avglvltree/tindexedavltree.nodetoreportstr.html
  TPointerToPointerTree avglvltree/tpointertopointertree.html
   Create avglvltree/tpointertopointertree.create.html
   Destroy avglvltree/tpointertopointertree.destroy.html
   Clear avglvltree/tpointertopointertree.clear.html
   Remove avglvltree/tpointertopointertree.remove.html
   Contains avglvltree/tpointertopointertree.contains.html
   GetFirst avglvltree/tpointertopointertree.getfirst.html
   GetLast avglvltree/tpointertopointertree.getlast.html
   GetNext avglvltree/tpointertopointertree.getnext.html
   GetPrev avglvltree/tpointertopointertree.getprev.html
   Count avglvltree/tpointertopointertree.count.html
   Values avglvltree/tpointertopointertree.values.html
   Tree avglvltree/tpointertopointertree.tree.html
  TCustomStringMapEnumerator avglvltree/tcustomstringmapenumerator.html
   FTree avglvltree/tcustomstringmapenumerator.ftree.html
   FCurrent avglvltree/tcustomstringmapenumerator.fcurrent.html
   Create avglvltree/tcustomstringmapenumerator.create.html
   MoveNext avglvltree/tcustomstringmapenumerator.movenext.html
  TCustomStringMap avglvltree/tcustomstringmap.html
   DisposeItem avglvltree/tcustomstringmap.disposeitem.html
   ItemsAreEqual avglvltree/tcustomstringmap.itemsareequal.html
   CreateCopy avglvltree/tcustomstringmap.createcopy.html
   Create avglvltree/tcustomstringmap.create.html
   Destroy avglvltree/tcustomstringmap.destroy.html
   Clear avglvltree/tcustomstringmap.clear.html
   Contains avglvltree/tcustomstringmap.contains.html
   GetNames avglvltree/tcustomstringmap.getnames.html
   Remove avglvltree/tcustomstringmap.remove.html
   CaseSensitive avglvltree/tcustomstringmap.casesensitive.html
   Tree avglvltree/tcustomstringmap.tree.html
   FindNode avglvltree/tcustomstringmap.findnode.html
   Count avglvltree/tcustomstringmap.count.html
   Equals avglvltree/tcustomstringmap.equals.html
   Assign avglvltree/tcustomstringmap.assign.html
   CompareItemsFunc avglvltree/tcustomstringmap.compareitemsfunc.html
   CompareKeyItemFunc avglvltree/tcustomstringmap.comparekeyitemfunc.html
   SetCompareFuncs avglvltree/tcustomstringmap.setcomparefuncs.html
  TStringMapEnumerator avglvltree/tstringmapenumerator.html
   Current avglvltree/tstringmapenumerator.current.html
  TStringMap avglvltree/tstringmap.html
   Add avglvltree/tstringmap.add.html
   GetEnumerator avglvltree/tstringmap.getenumerator.html
   Values avglvltree/tstringmap.values.html
  TStringToStringTreeEnumerator avglvltree/tstringtostringtreeenumerator.html
   Current avglvltree/tstringtostringtreeenumerator.current.html
  TStringToStringTree avglvltree/tstringtostringtree.html
   DisposeItem avglvltree/tstringtostringtree.disposeitem.html
   ItemsAreEqual avglvltree/tstringtostringtree.itemsareequal.html
   CreateCopy avglvltree/tstringtostringtree.createcopy.html
   GetNode avglvltree/tstringtostringtree.getnode.html
   GetString avglvltree/tstringtostringtree.getstring.html
   Add avglvltree/tstringtostringtree.add.html
   AddNameValues avglvltree/tstringtostringtree.addnamevalues.html
   AddValues avglvltree/tstringtostringtree.addvalues.html
   AddNames avglvltree/tstringtostringtree.addnames.html
   Delete avglvltree/tstringtostringtree.delete.html
   Values avglvltree/tstringtostringtree.values.html
   AsText avglvltree/tstringtostringtree.astext.html
   Assign avglvltree/tstringtostringtree.assign.html
   GetEnumerator avglvltree/tstringtostringtree.getenumerator.html
   GetFirst avglvltree/tstringtostringtree.getfirst.html
   GetLast avglvltree/tstringtostringtree.getlast.html
   GetNext avglvltree/tstringtostringtree.getnext.html
   GetPrev avglvltree/tstringtostringtree.getprev.html
  TStringToPointerTreeEnumerator avglvltree/tstringtopointertreeenumerator.html
   Current avglvltree/tstringtopointertreeenumerator.current.html
  TStringToPointerTree avglvltree/tstringtopointertree.html
   DisposeItem avglvltree/tstringtopointertree.disposeitem.html
   ItemsAreEqual avglvltree/tstringtopointertree.itemsareequal.html
   CreateCopy avglvltree/tstringtopointertree.createcopy.html
   GetData avglvltree/tstringtopointertree.getdata.html
   Values avglvltree/tstringtopointertree.values.html
   GetEnumerator avglvltree/tstringtopointertree.getenumerator.html
   FreeValues avglvltree/tstringtopointertree.freevalues.html
  ComparePointerToPointerItems avglvltree/comparepointertopointeritems.html
  ComparePointerWithPtrToPtrItem avglvltree/comparepointerwithptrtoptritem.html
  CompareStringToStringItems avglvltree/comparestringtostringitems.html
  CompareAnsiStringWithStrToStrItem avglvltree/compareansistringwithstrtostritem.html
  CompareStringToStringItemsI avglvltree/comparestringtostringitemsi.html
  CompareAnsiStringWithStrToStrItemI avglvltree/compareansistringwithstrtostritemi.html
  ComparePointer avglvltree/comparepointer.html
 LazUTF8 lazutf8/index.html
  TUTF8TrimFlag lazutf8/tutf8trimflag.html
  TUTF8TrimFlags lazutf8/tutf8trimflags.html
  TConvertResult lazutf8/tconvertresult.html
  TConvertOption lazutf8/tconvertoption.html
  TConvertOptions lazutf8/tconvertoptions.html
  NeedRTLAnsi lazutf8/needrtlansi.html
  SetNeedRTLAnsi lazutf8/setneedrtlansi.html
  UTF8ToSys lazutf8/utf8tosys.html
  SysToUTF8 lazutf8/systoutf8.html
  UTF8CharacterLength lazutf8/utf8characterlength.html
  UTF8Length lazutf8/utf8length.html
  UTF8CharacterToUnicode lazutf8/utf8charactertounicode.html
  UnicodeToUTF8 lazutf8/unicodetoutf8.html
  UnicodeToUTF8SkipErrors lazutf8/unicodetoutf8skiperrors.html
  UnicodeToUTF8Inline lazutf8/unicodetoutf8inline.html
  UTF8ToDoubleByteString lazutf8/utf8todoublebytestring.html
  UTF8ToDoubleByte lazutf8/utf8todoublebyte.html
  UTF8FindNearestCharStart lazutf8/utf8findnearestcharstart.html
  UTF8CharStart lazutf8/utf8charstart.html
  UTF8CharToByteIndex lazutf8/utf8chartobyteindex.html
  UTF8FixBroken lazutf8/utf8fixbroken.html
  UTF8CharacterStrictLength lazutf8/utf8characterstrictlength.html
  UTF8CStringToUTF8String lazutf8/utf8cstringtoutf8string.html
  UTF8Pos lazutf8/utf8pos.html
  UTF8PosP lazutf8/utf8posp.html
  UTF8Copy lazutf8/utf8copy.html
  UTF8Delete lazutf8/utf8delete.html
  UTF8Insert lazutf8/utf8insert.html
  UTF8LowerCase lazutf8/utf8lowercase.html
  UTF8UpperCase lazutf8/utf8uppercase.html
  FindInvalidUTF8Character lazutf8/findinvalidutf8character.html
  ValidUTF8String lazutf8/validutf8string.html
  UTF8Trim lazutf8/utf8trim.html
  AssignUTF8ListToAnsi lazutf8/assignutf8listtoansi.html
  UTF8CompareStr lazutf8/utf8comparestr.html
  UTF8CompareStrP lazutf8/utf8comparestrp.html
  UTF8CompareText lazutf8/utf8comparetext.html
  UTF8CompareStrCollated lazutf8/utf8comparestrcollated.html
  CompareStrListUTF8LowerCase lazutf8/comparestrlistutf8lowercase.html
  ConvertUTF8ToUTF16 lazutf8/convertutf8toutf16.html
  ConvertUTF16ToUTF8 lazutf8/convertutf16toutf8.html
  UTF8ToUTF16 lazutf8/utf8toutf16.html
  UTF16ToUTF8 lazutf8/utf16toutf8.html
  LazGetLanguageIDs lazutf8/lazgetlanguageids.html
  LazGetShortLanguageID lazutf8/lazgetshortlanguageid.html
  FPUpChars lazutf8/fpupchars.html
 lazutf16 lazutf16/index.html
  UTF16CharacterLength lazutf16/utf16characterlength.html
  UTF16Length lazutf16/utf16length.html
  UTF16CharacterToUnicode lazutf16/utf16charactertounicode.html
  UnicodeToUTF16 lazutf16/unicodetoutf16.html
  UnicodeLowercase lazutf16/unicodelowercase.html
  UTF8LowerCaseViaTables lazutf16/utf8lowercaseviatables.html
 Masks masks/index.html
  TMaskCharType masks/tmaskchartype.html
  TCharSet masks/tcharset.html
  PCharSet masks/pcharset.html
  TMaskChar masks/tmaskchar.html
  TMaskString masks/tmaskstring.html
  TMask masks/tmask.html
   Create masks/tmask.create.html
   Destroy masks/tmask.destroy.html
   Matches masks/tmask.matches.html
  TParseStringList masks/tparsestringlist.html
   Create masks/tparsestringlist.create.html
  TMaskList masks/tmasklist.html
   Create masks/tmasklist.create.html
   Destroy masks/tmasklist.destroy.html
   Matches masks/tmasklist.matches.html
   Count masks/tmasklist.count.html
   Items masks/tmasklist.items.html
  MatchesMask masks/matchesmask.html
  MatchesMaskList masks/matchesmasklist.html
 FileUtil fileutil/index.html
  UTF8FileHeader fileutil/utf8fileheader.html
  FilenamesCaseSensitive fileutil/filenamescasesensitive.html
  FilenamesLiteral fileutil/filenamesliteral.html
  PascalFileExt fileutil/pascalfileext.html
  AllDirectoryEntriesMask fileutil/alldirectoryentriesmask.html
  TSearchFileInPathFlag fileutil/tsearchfileinpathflag.html
  TSearchFileInPathFlags fileutil/tsearchfileinpathflags.html
  TFileFoundEvent fileutil/tfilefoundevent.html
  TDirectoryFoundEvent fileutil/tdirectoryfoundevent.html
  TCopyFileFlag fileutil/tcopyfileflag.html
  TCopyFileFlags fileutil/tcopyfileflags.html
  TFileIterator fileutil/tfileiterator.html
   Stop fileutil/tfileiterator.stop.html
   IsDirectory fileutil/tfileiterator.isdirectory.html
   FileName fileutil/tfileiterator.filename.html
   FileInfo fileutil/tfileiterator.fileinfo.html
   Level fileutil/tfileiterator.level.html
   Path fileutil/tfileiterator.path.html
   Searching fileutil/tfileiterator.searching.html
  TFileSearcher fileutil/tfilesearcher.html
   DoDirectoryEnter fileutil/tfilesearcher.dodirectoryenter.html
   DoDirectoryFound fileutil/tfilesearcher.dodirectoryfound.html
   DoFileFound fileutil/tfilesearcher.dofilefound.html
   Create fileutil/tfilesearcher.create.html
   Search fileutil/tfilesearcher.search.html
   MaskSeparator fileutil/tfilesearcher.maskseparator.html
   FollowSymLink fileutil/tfilesearcher.followsymlink.html
   OnDirectoryFound fileutil/tfilesearcher.ondirectoryfound.html
   OnFileFound fileutil/tfilesearcher.onfilefound.html
  CompareFilenames fileutil/comparefilenames.html
  CompareFilenamesIgnoreCase fileutil/comparefilenamesignorecase.html
  FilenameIsAbsolute fileutil/filenameisabsolute.html
  FilenameIsWinAbsolute fileutil/filenameiswinabsolute.html
  FilenameIsUnixAbsolute fileutil/filenameisunixabsolute.html
  CheckIfFileIsExecutable fileutil/checkiffileisexecutable.html
  CheckIfFileIsSymlink fileutil/checkiffileissymlink.html
  FileIsReadable fileutil/fileisreadable.html
  FileIsWritable fileutil/fileiswritable.html
  FileIsText fileutil/fileistext.html
  FileIsExecutable fileutil/fileisexecutable.html
  FileIsSymlink fileutil/fileissymlink.html
  FileIsHardLink fileutil/fileishardlink.html
  FileSize fileutil/filesize.html
  GetFileDescription fileutil/getfiledescription.html
  ReadAllLinks fileutil/readalllinks.html
  TryReadAllLinks fileutil/tryreadalllinks.html
  DirPathExists fileutil/dirpathexists.html
  ForceDirectory fileutil/forcedirectory.html
  DeleteDirectory fileutil/deletedirectory.html
  ProgramDirectory fileutil/programdirectory.html
  DirectoryIsWritable fileutil/directoryiswritable.html
  ExtractFileNameOnly fileutil/extractfilenameonly.html
  ExtractFileNameWithoutExt fileutil/extractfilenamewithoutext.html
  CompareFileExt fileutil/comparefileext.html
  FilenameIsPascalUnit fileutil/filenameispascalunit.html
  AppendPathDelim fileutil/appendpathdelim.html
  ChompPathDelim fileutil/chomppathdelim.html
  TrimFilename fileutil/trimfilename.html
  CleanAndExpandFilename fileutil/cleanandexpandfilename.html
  CleanAndExpandDirectory fileutil/cleanandexpanddirectory.html
  CreateAbsoluteSearchPath fileutil/createabsolutesearchpath.html
  CreateRelativePath fileutil/createrelativepath.html
  CreateAbsolutePath fileutil/createabsolutepath.html
  FileIsInPath fileutil/fileisinpath.html
  FileIsInDirectory fileutil/fileisindirectory.html
  GetAllFilesMask fileutil/getallfilesmask.html
  GetExeExt fileutil/getexeext.html
  SearchFileInPath fileutil/searchfileinpath.html
  SearchAllFilesInPath fileutil/searchallfilesinpath.html
  FindDiskFilename fileutil/finddiskfilename.html
  FindDiskFileCaseInsensitive fileutil/finddiskfilecaseinsensitive.html
  FindDefaultExecutablePath fileutil/finddefaultexecutablepath.html
  FindAllFiles fileutil/findallfiles.html
  FindAllDirectories fileutil/findalldirectories.html
  CopyFile fileutil/copyfile.html
  CopyDirTree fileutil/copydirtree.html
  ReadFileToString fileutil/readfiletostring.html
  GetTempFilename fileutil/gettempfilename.html
  NeedRTLAnsi fileutil/needrtlansi.html
  SetNeedRTLAnsi fileutil/setneedrtlansi.html
  UTF8ToSys fileutil/utf8tosys.html
  SysToUTF8 fileutil/systoutf8.html
  ConsoleToUTF8 fileutil/consoletoutf8.html
  UTF8ToConsole fileutil/utf8toconsole.html
  FileExistsUTF8 fileutil/fileexistsutf8.html
  FileAgeUTF8 fileutil/fileageutf8.html
  DirectoryExistsUTF8 fileutil/directoryexistsutf8.html
  ExpandFileNameUTF8 fileutil/expandfilenameutf8.html
  ExpandUNCFileNameUTF8 fileutil/expanduncfilenameutf8.html
  ExtractShortPathNameUTF8 fileutil/extractshortpathnameutf8.html
  FindFirstUTF8 fileutil/findfirstutf8.html
  FindNextUTF8 fileutil/findnextutf8.html
  FindCloseUTF8 fileutil/findcloseutf8.html
  FileSetDateUTF8 fileutil/filesetdateutf8.html
  FileGetAttrUTF8 fileutil/filegetattrutf8.html
  FileSetAttrUTF8 fileutil/filesetattrutf8.html
  DeleteFileUTF8 fileutil/deletefileutf8.html
  RenameFileUTF8 fileutil/renamefileutf8.html
  FileSearchUTF8 fileutil/filesearchutf8.html
  FileIsReadOnlyUTF8 fileutil/fileisreadonlyutf8.html
  GetCurrentDirUTF8 fileutil/getcurrentdirutf8.html
  SetCurrentDirUTF8 fileutil/setcurrentdirutf8.html
  CreateDirUTF8 fileutil/createdirutf8.html
  RemoveDirUTF8 fileutil/removedirutf8.html
  ForceDirectoriesUTF8 fileutil/forcedirectoriesutf8.html
  FileOpenUTF8 fileutil/fileopenutf8.html
  FileCreateUTF8 fileutil/filecreateutf8.html
  ParamStrUTF8 fileutil/paramstrutf8.html
  GetEnvironmentStringUTF8 fileutil/getenvironmentstringutf8.html
  GetEnvironmentVariableUTF8 fileutil/getenvironmentvariableutf8.html
  GetAppConfigDirUTF8 fileutil/getappconfigdirutf8.html
  GetAppConfigFileUTF8 fileutil/getappconfigfileutf8.html
  SysErrorMessageUTF8 fileutil/syserrormessageutf8.html
 lazutf8classes lazutf8classes/index.html
  TFileStreamUTF8 lazutf8classes/tfilestreamutf8.html
   Create lazutf8classes/tfilestreamutf8.create.html
   Destroy lazutf8classes/tfilestreamutf8.destroy.html
   FileName lazutf8classes/tfilestreamutf8.filename.html
  TStringListUTF8 lazutf8classes/tstringlistutf8.html
   DoCompareText lazutf8classes/tstringlistutf8.docomparetext.html
   LoadFromFile lazutf8classes/tstringlistutf8.loadfromfile.html
   SaveToFile lazutf8classes/tstringlistutf8.savetofile.html
  LoadStringsFromFileUTF8 lazutf8classes/loadstringsfromfileutf8.html
  SaveStringsToFileUTF8 lazutf8classes/savestringstofileutf8.html
  CompareStringListItemsUTF8LowerCase lazutf8classes/comparestringlistitemsutf8lowercase.html
 LConvEncoding lconvencoding/index.html
  EncodingUTF8 lconvencoding/encodingutf8.html
  EncodingAnsi lconvencoding/encodingansi.html
  EncodingUTF8BOM lconvencoding/encodingutf8bom.html
  EncodingUCS2LE lconvencoding/encodingucs2le.html
  EncodingUCS2BE lconvencoding/encodingucs2be.html
  UTF8BOM lconvencoding/utf8bom.html
  UTF16BEBOM lconvencoding/utf16bebom.html
  UTF16LEBOM lconvencoding/utf16lebom.html
  UTF32BEBOM lconvencoding/utf32bebom.html
  UTF32LEBOM lconvencoding/utf32lebom.html
  TConvertEncodingFunction lconvencoding/tconvertencodingfunction.html
  TCharToUTF8Table lconvencoding/tchartoutf8table.html
  TUnicodeToCharID lconvencoding/tunicodetocharid.html
  GuessEncoding lconvencoding/guessencoding.html
  ConvertEncoding lconvencoding/convertencoding.html
  GetDefaultTextEncoding lconvencoding/getdefaulttextencoding.html
  GetConsoleTextEncoding lconvencoding/getconsoletextencoding.html
  NormalizeEncoding lconvencoding/normalizeencoding.html
  UTF8BOMToUTF8 lconvencoding/utf8bomtoutf8.html
  ISO_8859_1ToUTF8 lconvencoding/iso_8859_1toutf8.html
  ISO_8859_15ToUTF8 lconvencoding/iso_8859_15toutf8.html
  ISO_8859_2ToUTF8 lconvencoding/iso_8859_2toutf8.html
  CP1250ToUTF8 lconvencoding/cp1250toutf8.html
  CP1251ToUTF8 lconvencoding/cp1251toutf8.html
  CP1252ToUTF8 lconvencoding/cp1252toutf8.html
  CP1253ToUTF8 lconvencoding/cp1253toutf8.html
  CP1254ToUTF8 lconvencoding/cp1254toutf8.html
  CP1255ToUTF8 lconvencoding/cp1255toutf8.html
  CP1256ToUTF8 lconvencoding/cp1256toutf8.html
  CP1257ToUTF8 lconvencoding/cp1257toutf8.html
  CP1258ToUTF8 lconvencoding/cp1258toutf8.html
  CP437ToUTF8 lconvencoding/cp437toutf8.html
  CP850ToUTF8 lconvencoding/cp850toutf8.html
  CP852ToUTF8 lconvencoding/cp852toutf8.html
  CP866ToUTF8 lconvencoding/cp866toutf8.html
  CP874ToUTF8 lconvencoding/cp874toutf8.html
  KOI8ToUTF8 lconvencoding/koi8toutf8.html
  SingleByteToUTF8 lconvencoding/singlebytetoutf8.html
  UCS2LEToUTF8 lconvencoding/ucs2letoutf8.html
  UCS2BEToUTF8 lconvencoding/ucs2betoutf8.html
  UTF8ToUTF8BOM lconvencoding/utf8toutf8bom.html
  UTF8ToISO_8859_1 lconvencoding/utf8toiso_8859_1.html
  UTF8ToISO_8859_15 lconvencoding/utf8toiso_8859_15.html
  UTF8ToISO_8859_2 lconvencoding/utf8toiso_8859_2.html
  UTF8ToCP1250 lconvencoding/utf8tocp1250.html
  UTF8ToCP1251 lconvencoding/utf8tocp1251.html
  UTF8ToCP1252 lconvencoding/utf8tocp1252.html
  UTF8ToCP1253 lconvencoding/utf8tocp1253.html
  UTF8ToCP1254 lconvencoding/utf8tocp1254.html
  UTF8ToCP1255 lconvencoding/utf8tocp1255.html
  UTF8ToCP1256 lconvencoding/utf8tocp1256.html
  UTF8ToCP1257 lconvencoding/utf8tocp1257.html
  UTF8ToCP1258 lconvencoding/utf8tocp1258.html
  UTF8ToCP437 lconvencoding/utf8tocp437.html
  UTF8ToCP850 lconvencoding/utf8tocp850.html
  UTF8ToCP852 lconvencoding/utf8tocp852.html
  UTF8ToCP866 lconvencoding/utf8tocp866.html
  UTF8ToCP874 lconvencoding/utf8tocp874.html
  UTF8ToKOI8 lconvencoding/utf8tokoi8.html
  UTF8ToSingleByte lconvencoding/utf8tosinglebyte.html
  UTF8ToUCS2LE lconvencoding/utf8toucs2le.html
  UTF8ToUCS2BE lconvencoding/utf8toucs2be.html
  CP932ToUTF8 lconvencoding/cp932toutf8.html
  CP936ToUTF8 lconvencoding/cp936toutf8.html
  CP949ToUTF8 lconvencoding/cp949toutf8.html
  CP950ToUTF8 lconvencoding/cp950toutf8.html
  DBCSToUTF8 lconvencoding/dbcstoutf8.html
  UTF8ToCP932 lconvencoding/utf8tocp932.html
  UTF8ToCP936 lconvencoding/utf8tocp936.html
  UTF8ToCP949 lconvencoding/utf8tocp949.html
  UTF8ToCP950 lconvencoding/utf8tocp950.html
  UTF8ToDBCS lconvencoding/utf8todbcs.html
  GetSupportedEncodings lconvencoding/getsupportedencodings.html
  ConvertAnsiToUTF8 lconvencoding/convertansitoutf8.html
  ConvertUTF8ToAnsi lconvencoding/convertutf8toansi.html
 paswstring paswstring/index.html
  SetPasWidestringManager paswstring/setpaswidestringmanager.html
 LazLogger lazlogger/index.html
  PLazLoggerLogGroup lazlogger/plazloggerloggroup.html
  TLazLoggerFileHandle lazlogger/tlazloggerfilehandle.html
   Create lazlogger/tlazloggerfilehandle.create.html
   Destroy lazlogger/tlazloggerfilehandle.destroy.html
   OpenFile lazlogger/tlazloggerfilehandle.openfile.html
   CloseFile lazlogger/tlazloggerfilehandle.closefile.html
   WriteToFile lazlogger/tlazloggerfilehandle.writetofile.html
   WriteLnToFile lazlogger/tlazloggerfilehandle.writelntofile.html
   LogName lazlogger/tlazloggerfilehandle.logname.html
   UseStdOut lazlogger/tlazloggerfilehandle.usestdout.html
   CloseLogFileBetweenWrites lazlogger/tlazloggerfilehandle.closelogfilebetweenwrites.html
   WriteTarget lazlogger/tlazloggerfilehandle.writetarget.html
   ActiveLogText lazlogger/tlazloggerfilehandle.activelogtext.html
  TLazLoggerFile lazlogger/tlazloggerfile.html
   DoInit lazlogger/tlazloggerfile.doinit.html
   DoFinsh lazlogger/tlazloggerfile.dofinsh.html
   IncreaseIndent lazlogger/tlazloggerfile.increaseindent.html
   DecreaseIndent lazlogger/tlazloggerfile.decreaseindent.html
   IndentChanged lazlogger/tlazloggerfile.indentchanged.html
   CreateIndent lazlogger/tlazloggerfile.createindent.html
   DoDbgOut lazlogger/tlazloggerfile.dodbgout.html
   DoDebugLn lazlogger/tlazloggerfile.dodebugln.html
   DoDebuglnStack lazlogger/tlazloggerfile.dodebuglnstack.html
   FileHandle lazlogger/tlazloggerfile.filehandle.html
   Create 
   Destroy lazlogger/tlazloggerfile.destroy.html
   Assign 
   ParamForLogFileName lazlogger/tlazloggerfile.paramforlogfilename.html
   EnvironmentForLogFileName lazlogger/tlazloggerfile.environmentforlogfilename.html
   OnDebugLn lazlogger/tlazloggerfile.ondebugln.html
   OnDbgOut lazlogger/tlazloggerfile.ondbgout.html
   LogName lazlogger/tlazloggerfile.logname.html
   UseStdOut lazlogger/tlazloggerfile.usestdout.html
   CloseLogFileBetweenWrites lazlogger/tlazloggerfile.closelogfilebetweenwrites.html
  DebuglnStack lazlogger/debuglnstack.html
  DbgOut lazlogger/dbgout.html
  DebugLn lazlogger/debugln.html
  DebugLnEnter lazlogger/debuglnenter.html
  DebugLnExit lazlogger/debuglnexit.html
  DbgS lazlogger/dbgs.html
  DbgSJoin lazlogger/dbgsjoin.html
  DbgSName lazlogger/dbgsname.html
  dbgObjMem lazlogger/dbgobjmem.html
  dbghex lazlogger/dbghex.html
  dbgMemRange lazlogger/dbgmemrange.html
  dbgMemStream lazlogger/dbgmemstream.html
  DbgStr lazlogger/dbgstr.html
  DbgWideStr lazlogger/dbgwidestr.html
  ConvertLineEndings lazlogger/convertlineendings.html
  ReplaceSubstring lazlogger/replacesubstring.html
  GetDebugLogger lazlogger/getdebuglogger.html
  SetDebugLogger lazlogger/setdebuglogger.html
 LazLoggerBase lazloggerbase/index.html
  TLazLoggerLogGroupFlag lazloggerbase/tlazloggerloggroupflag.html
  TLazLoggerLogGroupFlags lazloggerbase/tlazloggerloggroupflags.html
  TLazLoggerLogGroup lazloggerbase/tlazloggerloggroup.html
  PLazLoggerLogGroup lazloggerbase/plazloggerloggroup.html
  TLazLoggerWriteTarget lazloggerbase/tlazloggerwritetarget.html
  TLazLoggerWriteEvent lazloggerbase/tlazloggerwriteevent.html
  TLazLoggerWidgetSetWriteEvent lazloggerbase/tlazloggerwidgetsetwriteevent.html
  TLazDebugLoggerCreator lazloggerbase/tlazdebugloggercreator.html
  TLazLoggerLogGroupList lazloggerbase/tlazloggerloggrouplist.html
   Add lazloggerbase/tlazloggerloggrouplist.add.html
   FindOrAdd lazloggerbase/tlazloggerloggrouplist.findoradd.html
   Remove lazloggerbase/tlazloggerloggrouplist.remove.html
   Create lazloggerbase/tlazloggerloggrouplist.create.html
   Destroy lazloggerbase/tlazloggerloggrouplist.destroy.html
   Assign lazloggerbase/tlazloggerloggrouplist.assign.html
   IndexOf lazloggerbase/tlazloggerloggrouplist.indexof.html
   Find lazloggerbase/tlazloggerloggrouplist.find.html
   Count lazloggerbase/tlazloggerloggrouplist.count.html
   Item lazloggerbase/tlazloggerloggrouplist.item.html
  TLazLogger lazloggerbase/tlazlogger.html
   DoInit lazloggerbase/tlazlogger.doinit.html
   DoFinsh lazloggerbase/tlazlogger.dofinsh.html
   IncreaseIndent lazloggerbase/tlazlogger.increaseindent.html
   DecreaseIndent lazloggerbase/tlazlogger.decreaseindent.html
   IndentChanged lazloggerbase/tlazlogger.indentchanged.html
   DoDbgOut lazloggerbase/tlazlogger.dodbgout.html
   DoDebugLn lazloggerbase/tlazlogger.dodebugln.html
   DoDebuglnStack lazloggerbase/tlazlogger.dodebuglnstack.html
   ArgsToString lazloggerbase/tlazlogger.argstostring.html
   IsInitialized lazloggerbase/tlazlogger.isinitialized.html
   Create lazloggerbase/tlazlogger.create.html
   Destroy lazloggerbase/tlazlogger.destroy.html
   Assign lazloggerbase/tlazlogger.assign.html
   Init lazloggerbase/tlazlogger.init.html
   Finish lazloggerbase/tlazlogger.finish.html
   NestLvlIndent lazloggerbase/tlazlogger.nestlvlindent.html
   MaxNestPrefixLen lazloggerbase/tlazlogger.maxnestprefixlen.html
   RegisterLogGroup lazloggerbase/tlazlogger.registerloggroup.html
   FindOrRegisterLogGroup lazloggerbase/tlazlogger.findorregisterloggroup.html
   LogGroupList lazloggerbase/tlazlogger.loggrouplist.html
   UseGlobalLogGroupList lazloggerbase/tlazlogger.usegloballoggrouplist.html
   DebuglnStack lazloggerbase/tlazlogger.debuglnstack.html
   DbgOut lazloggerbase/tlazlogger.dbgout.html
   DebugLn lazloggerbase/tlazlogger.debugln.html
   DebugLnEnter lazloggerbase/tlazlogger.debuglnenter.html
   DebugLnExit lazloggerbase/tlazlogger.debuglnexit.html
  TLazLoggerWithGroupParam lazloggerbase/tlazloggerwithgroupparam.html
   Create lazloggerbase/tlazloggerwithgroupparam.create.html
   Assign lazloggerbase/tlazloggerwithgroupparam.assign.html
   RegisterLogGroup lazloggerbase/tlazloggerwithgroupparam.registerloggroup.html
   FindOrRegisterLogGroup lazloggerbase/tlazloggerwithgroupparam.findorregisterloggroup.html
   ParamForEnabledLogGroups lazloggerbase/tlazloggerwithgroupparam.paramforenabledloggroups.html
  TLazLoggerNoOutput lazloggerbase/tlazloggernooutput.html
  DebuglnStack lazloggerbase/debuglnstack.html
  DbgOut lazloggerbase/dbgout.html
  DebugLn lazloggerbase/debugln.html
  DebugLnEnter lazloggerbase/debuglnenter.html
  DebugLnExit lazloggerbase/debuglnexit.html
  DbgS lazloggerbase/dbgs.html
  DbgSJoin lazloggerbase/dbgsjoin.html
  DbgSName lazloggerbase/dbgsname.html
  dbgObjMem lazloggerbase/dbgobjmem.html
  dbghex lazloggerbase/dbghex.html
  dbgMemRange lazloggerbase/dbgmemrange.html
  dbgMemStream lazloggerbase/dbgmemstream.html
  ConvertLineEndings lazloggerbase/convertlineendings.html
  GetParamByNameCount lazloggerbase/getparambynamecount.html
  GetParamByName lazloggerbase/getparambyname.html
  GetDebugLoggerGroups lazloggerbase/getdebugloggergroups.html
  SetDebugLoggerGroups lazloggerbase/setdebugloggergroups.html
  GetDebugLogger lazloggerbase/getdebuglogger.html
  GetExistingDebugLogger lazloggerbase/getexistingdebuglogger.html
  SetDebugLogger lazloggerbase/setdebuglogger.html
  RecreateDebugLogger lazloggerbase/recreatedebuglogger.html
  LazDebugLoggerCreator lazloggerbase/lazdebugloggercreator.html
  OnWidgetSetDebugLn lazloggerbase/onwidgetsetdebugln.html
  OnWidgetSetDbgOut lazloggerbase/onwidgetsetdbgout.html
 LazClasses lazclasses/index.html
  TFreeNotifyingObject lazclasses/tfreenotifyingobject.html
   Create lazclasses/tfreenotifyingobject.create.html
   Destroy lazclasses/tfreenotifyingobject.destroy.html
   AddFreeeNotification lazclasses/tfreenotifyingobject.addfreeenotification.html
   RemoveFreeeNotification lazclasses/tfreenotifyingobject.removefreeenotification.html
  TRefCountedObject lazclasses/trefcountedobject.html
   DoFree lazclasses/trefcountedobject.dofree.html
   RefCount lazclasses/trefcountedobject.refcount.html
   Create lazclasses/trefcountedobject.create.html
   Destroy lazclasses/trefcountedobject.destroy.html
   AddReference lazclasses/trefcountedobject.addreference.html
   ReleaseReference lazclasses/trefcountedobject.releasereference.html
  TRefCntObjList lazclasses/trefcntobjlist.html
   Notify lazclasses/trefcntobjlist.notify.html
  ReleaseRefAndNil lazclasses/releaserefandnil.html
 LazDbgLog lazdbglog/index.html
  MemSizeString lazdbglog/memsizestring.html
  MemSizeFPList lazdbglog/memsizefplist.html
  GetStringRefCount lazdbglog/getstringrefcount.html
 LazFileUtils lazfileutils/index.html
  TInvalidateFileStateCacheEvent lazfileutils/tinvalidatefilestatecacheevent.html
  CompareFilenames lazfileutils/comparefilenames.html
  CompareFilenamesIgnoreCase lazfileutils/comparefilenamesignorecase.html
  CompareFileExt lazfileutils/comparefileext.html
  CompareFilenameStarts lazfileutils/comparefilenamestarts.html
  CompareFilenamesP lazfileutils/comparefilenamesp.html
  DirPathExists lazfileutils/dirpathexists.html
  DirectoryIsWritable lazfileutils/directoryiswritable.html
  ExtractFileNameOnly lazfileutils/extractfilenameonly.html
  FilenameIsAbsolute lazfileutils/filenameisabsolute.html
  FilenameIsWinAbsolute lazfileutils/filenameiswinabsolute.html
  FilenameIsUnixAbsolute lazfileutils/filenameisunixabsolute.html
  ForceDirectory lazfileutils/forcedirectory.html
  CheckIfFileIsExecutable lazfileutils/checkiffileisexecutable.html
  FileIsExecutable lazfileutils/fileisexecutable.html
  FileIsReadable lazfileutils/fileisreadable.html
  FileIsWritable lazfileutils/fileiswritable.html
  FileIsText lazfileutils/fileistext.html
  FilenameIsTrimmed lazfileutils/filenameistrimmed.html
  TrimFilename lazfileutils/trimfilename.html
  ExpandDots lazfileutils/expanddots.html
  CleanAndExpandFilename lazfileutils/cleanandexpandfilename.html
  CleanAndExpandDirectory lazfileutils/cleanandexpanddirectory.html
  TrimAndExpandFilename lazfileutils/trimandexpandfilename.html
  TrimAndExpandDirectory lazfileutils/trimandexpanddirectory.html
  CreateRelativePath lazfileutils/createrelativepath.html
  FileIsInPath lazfileutils/fileisinpath.html
  AppendPathDelim lazfileutils/appendpathdelim.html
  ChompPathDelim lazfileutils/chomppathdelim.html
  CreateAbsoluteSearchPath lazfileutils/createabsolutesearchpath.html
  CreateRelativeSearchPath lazfileutils/createrelativesearchpath.html
  MinimizeSearchPath lazfileutils/minimizesearchpath.html
  FindPathInSearchPath lazfileutils/findpathinsearchpath.html
  FileExistsUTF8 lazfileutils/fileexistsutf8.html
  FileAgeUTF8 lazfileutils/fileageutf8.html
  DirectoryExistsUTF8 lazfileutils/directoryexistsutf8.html
  ExpandFileNameUTF8 lazfileutils/expandfilenameutf8.html
  FindFirstUTF8 lazfileutils/findfirstutf8.html
  FindNextUTF8 lazfileutils/findnextutf8.html
  FindCloseUTF8 lazfileutils/findcloseutf8.html
  FileSetDateUTF8 lazfileutils/filesetdateutf8.html
  FileGetAttrUTF8 lazfileutils/filegetattrutf8.html
  FileSetAttrUTF8 lazfileutils/filesetattrutf8.html
  DeleteFileUTF8 lazfileutils/deletefileutf8.html
  RenameFileUTF8 lazfileutils/renamefileutf8.html
  FileSearchUTF8 lazfileutils/filesearchutf8.html
  FileIsReadOnlyUTF8 lazfileutils/fileisreadonlyutf8.html
  GetCurrentDirUTF8 lazfileutils/getcurrentdirutf8.html
  SetCurrentDirUTF8 lazfileutils/setcurrentdirutf8.html
  CreateDirUTF8 lazfileutils/createdirutf8.html
  RemoveDirUTF8 lazfileutils/removedirutf8.html
  ForceDirectoriesUTF8 lazfileutils/forcedirectoriesutf8.html
  IsUNCPath lazfileutils/isuncpath.html
  ExtractUNCVolume lazfileutils/extractuncvolume.html
  SplitCmdLineParams lazfileutils/splitcmdlineparams.html
  InvalidateFileStateCache lazfileutils/invalidatefilestatecache.html
  OnInvalidateFileStateCache lazfileutils/oninvalidatefilestatecache.html
 LazFileCache lazfilecache/index.html
  LUInvalidChangeStamp lazfilecache/luinvalidchangestamp.html
  LUInvalidChangeStamp64 lazfilecache/luinvalidchangestamp64.html
  TFileStateCacheItemFlag lazfilecache/tfilestatecacheitemflag.html
  TFileStateCacheItemFlags lazfilecache/tfilestatecacheitemflags.html
  TOnChangeFileStateTimeStamp lazfilecache/tonchangefilestatetimestamp.html
  TOnFileExistsCached lazfilecache/tonfileexistscached.html
  TOnFileAgeCached lazfilecache/tonfileagecached.html
  TFileStateCacheItem lazfilecache/tfilestatecacheitem.html
   Create lazfilecache/tfilestatecacheitem.create.html
   CalcMemSize lazfilecache/tfilestatecacheitem.calcmemsize.html
   Filename lazfilecache/tfilestatecacheitem.filename.html
   Flags lazfilecache/tfilestatecacheitem.flags.html
   TestedFlags lazfilecache/tfilestatecacheitem.testedflags.html
   TimeStamp lazfilecache/tfilestatecacheitem.timestamp.html
   Age lazfilecache/tfilestatecacheitem.age.html
  TFileStateCache lazfilecache/tfilestatecache.html
   Create lazfilecache/tfilestatecache.create.html
   Destroy lazfilecache/tfilestatecache.destroy.html
   Lock lazfilecache/tfilestatecache.lock.html
   Unlock lazfilecache/tfilestatecache.unlock.html
   Locked lazfilecache/tfilestatecache.locked.html
   IncreaseTimeStamp lazfilecache/tfilestatecache.increasetimestamp.html
   FileExistsCached lazfilecache/tfilestatecache.fileexistscached.html
   DirPathExistsCached lazfilecache/tfilestatecache.dirpathexistscached.html
   DirectoryIsWritableCached lazfilecache/tfilestatecache.directoryiswritablecached.html
   FileIsExecutableCached lazfilecache/tfilestatecache.fileisexecutablecached.html
   FileIsReadableCached lazfilecache/tfilestatecache.fileisreadablecached.html
   FileIsWritableCached lazfilecache/tfilestatecache.fileiswritablecached.html
   FileIsTextCached lazfilecache/tfilestatecache.fileistextcached.html
   FileAgeCached lazfilecache/tfilestatecache.fileagecached.html
   FindFile lazfilecache/tfilestatecache.findfile.html
   Check lazfilecache/tfilestatecache.check.html
   AddChangeTimeStampHandler lazfilecache/tfilestatecache.addchangetimestamphandler.html
   RemoveChangeTimeStampHandler lazfilecache/tfilestatecache.removechangetimestamphandler.html
   CalcMemSize lazfilecache/tfilestatecache.calcmemsize.html
   TimeStamp lazfilecache/tfilestatecache.timestamp.html
  FileExistsCached lazfilecache/fileexistscached.html
  DirPathExistsCached lazfilecache/dirpathexistscached.html
  DirectoryIsWritableCached lazfilecache/directoryiswritablecached.html
  FileIsExecutableCached lazfilecache/fileisexecutablecached.html
  FileIsReadableCached lazfilecache/fileisreadablecached.html
  FileIsWritableCached lazfilecache/fileiswritablecached.html
  FileIsTextCached lazfilecache/fileistextcached.html
  FileAgeCached lazfilecache/fileagecached.html
  InvalidateFileStateCache lazfilecache/invalidatefilestatecache.html
  CompareFileStateItems lazfilecache/comparefilestateitems.html
  CompareFilenameWithFileStateCacheItem lazfilecache/comparefilenamewithfilestatecacheitem.html
  LUIncreaseChangeStamp lazfilecache/luincreasechangestamp.html
  LUIncreaseChangeStamp64 lazfilecache/luincreasechangestamp64.html
  FileStateCache lazfilecache/filestatecache.html
  OnFileExistsCached lazfilecache/onfileexistscached.html
  OnFileAgeCached lazfilecache/onfileagecached.html
 LazUtils lazutils/index.html
 laz2_DOM laz2_dom/index.html
  INDEX_SIZE_ERR laz2_dom/index_size_err.html
  DOMSTRING_SIZE_ERR laz2_dom/domstring_size_err.html
  HIERARCHY_REQUEST_ERR laz2_dom/hierarchy_request_err.html
  WRONG_DOCUMENT_ERR laz2_dom/wrong_document_err.html
  INVALID_CHARACTER_ERR laz2_dom/invalid_character_err.html
  NO_DATA_ALLOWED_ERR laz2_dom/no_data_allowed_err.html
  NO_MODIFICATION_ALLOWED_ERR laz2_dom/no_modification_allowed_err.html
  NOT_FOUND_ERR laz2_dom/not_found_err.html
  NOT_SUPPORTED_ERR laz2_dom/not_supported_err.html
  INUSE_ATTRIBUTE_ERR laz2_dom/inuse_attribute_err.html
  INVALID_STATE_ERR laz2_dom/invalid_state_err.html
  SYNTAX_ERR laz2_dom/syntax_err.html
  INVALID_MODIFICATION_ERR laz2_dom/invalid_modification_err.html
  NAMESPACE_ERR laz2_dom/namespace_err.html
  INVALID_ACCESS_ERR laz2_dom/invalid_access_err.html
  ELEMENT_NODE laz2_dom/element_node.html
  ATTRIBUTE_NODE laz2_dom/attribute_node.html
  TEXT_NODE laz2_dom/text_node.html
  CDATA_SECTION_NODE laz2_dom/cdata_section_node.html
  ENTITY_REFERENCE_NODE laz2_dom/entity_reference_node.html
  ENTITY_NODE laz2_dom/entity_node.html
  PROCESSING_INSTRUCTION_NODE laz2_dom/processing_instruction_node.html
  COMMENT_NODE laz2_dom/comment_node.html
  DOCUMENT_NODE laz2_dom/document_node.html
  DOCUMENT_TYPE_NODE laz2_dom/document_type_node.html
  DOCUMENT_FRAGMENT_NODE laz2_dom/document_fragment_node.html
  NOTATION_NODE laz2_dom/notation_node.html
  stduri_xml laz2_dom/stduri_xml.html
  stduri_xmlns laz2_dom/stduri_xmlns.html
  PNodePoolArray laz2_dom/pnodepoolarray.html
  TNodePoolArray laz2_dom/tnodepoolarray.html
  TSetOfChar laz2_dom/tsetofchar.html
  DOMString laz2_dom/domstring.html
  DOMPChar laz2_dom/dompchar.html
  DOMChar laz2_dom/domchar.html
  PDOMString laz2_dom/pdomstring.html
  TNodeFlagEnum laz2_dom/tnodeflagenum.html
  TNodeFlags laz2_dom/tnodeflags.html
  TDOMNodeClass laz2_dom/tdomnodeclass.html
  TFilterResult laz2_dom/tfilterresult.html
  TNamespaces laz2_dom/tnamespaces.html
  TNamespaceInfo laz2_dom/tnamespaceinfo.html
  TAttrDataType laz2_dom/tattrdatatype.html
  TAttrDefault laz2_dom/tattrdefault.html
  PExtent laz2_dom/pextent.html
  TExtent laz2_dom/textent.html
  EDOMError laz2_dom/edomerror.html
   Code laz2_dom/edomerror.code.html
   Create laz2_dom/edomerror.create.html
  EDOMIndexSize laz2_dom/edomindexsize.html
   Create laz2_dom/edomindexsize.create.html
  EDOMHierarchyRequest laz2_dom/edomhierarchyrequest.html
   Create laz2_dom/edomhierarchyrequest.create.html
  EDOMWrongDocument laz2_dom/edomwrongdocument.html
   Create laz2_dom/edomwrongdocument.create.html
  EDOMNotFound laz2_dom/edomnotfound.html
   Create laz2_dom/edomnotfound.create.html
  EDOMNotSupported laz2_dom/edomnotsupported.html
   Create laz2_dom/edomnotsupported.create.html
  EDOMInUseAttribute laz2_dom/edominuseattribute.html
   Create laz2_dom/edominuseattribute.create.html
  EDOMInvalidState laz2_dom/edominvalidstate.html
   Create laz2_dom/edominvalidstate.create.html
  EDOMSyntax laz2_dom/edomsyntax.html
   Create laz2_dom/edomsyntax.create.html
  EDOMInvalidModification laz2_dom/edominvalidmodification.html
   Create laz2_dom/edominvalidmodification.create.html
  EDOMNamespace laz2_dom/edomnamespace.html
   Create laz2_dom/edomnamespace.create.html
  EDOMInvalidAccess laz2_dom/edominvalidaccess.html
   Create laz2_dom/edominvalidaccess.create.html
  TDOMNodeEnumerator laz2_dom/tdomnodeenumerator.html
   Create laz2_dom/tdomnodeenumerator.create.html
   MoveNext laz2_dom/tdomnodeenumerator.movenext.html
   Current laz2_dom/tdomnodeenumerator.current.html
  TDOMNodeAllChildEnumerator laz2_dom/tdomnodeallchildenumerator.html
   Create laz2_dom/tdomnodeallchildenumerator.create.html
   MoveNext laz2_dom/tdomnodeallchildenumerator.movenext.html
   Current laz2_dom/tdomnodeallchildenumerator.current.html
   GetEnumerator laz2_dom/tdomnodeallchildenumerator.getenumerator.html
  TDOMNode laz2_dom/tdomnode.html
   FPool laz2_dom/tdomnode.fpool.html
   FFlags laz2_dom/tdomnode.fflags.html
   FParentNode laz2_dom/tdomnode.fparentnode.html
   FPreviousSibling laz2_dom/tdomnode.fprevioussibling.html
   FNextSibling laz2_dom/tdomnode.fnextsibling.html
   FOwnerDocument laz2_dom/tdomnode.fownerdocument.html
   GetNodeName laz2_dom/tdomnode.getnodename.html
   GetNodeValue laz2_dom/tdomnode.getnodevalue.html
   SetNodeValue laz2_dom/tdomnode.setnodevalue.html
   GetFirstChild laz2_dom/tdomnode.getfirstchild.html
   GetLastChild laz2_dom/tdomnode.getlastchild.html
   GetAttributes laz2_dom/tdomnode.getattributes.html
   GetRevision laz2_dom/tdomnode.getrevision.html
   GetNodeType laz2_dom/tdomnode.getnodetype.html
   GetTextContent laz2_dom/tdomnode.gettextcontent.html
   SetTextContent laz2_dom/tdomnode.settextcontent.html
   GetLocalName laz2_dom/tdomnode.getlocalname.html
   GetNamespaceURI laz2_dom/tdomnode.getnamespaceuri.html
   GetPrefix laz2_dom/tdomnode.getprefix.html
   SetPrefix laz2_dom/tdomnode.setprefix.html
   GetOwnerDocument laz2_dom/tdomnode.getownerdocument.html
   GetBaseURI laz2_dom/tdomnode.getbaseuri.html
   SetReadOnly laz2_dom/tdomnode.setreadonly.html
   Changing laz2_dom/tdomnode.changing.html
   Create laz2_dom/tdomnode.create.html
   Destroy laz2_dom/tdomnode.destroy.html
   FreeInstance laz2_dom/tdomnode.freeinstance.html
   GetChildNodes laz2_dom/tdomnode.getchildnodes.html
   GetChildCount laz2_dom/tdomnode.getchildcount.html
   NodeName laz2_dom/tdomnode.nodename.html
   NodeValue laz2_dom/tdomnode.nodevalue.html
   NodeType laz2_dom/tdomnode.nodetype.html
   ParentNode laz2_dom/tdomnode.parentnode.html
   FirstChild laz2_dom/tdomnode.firstchild.html
   LastChild laz2_dom/tdomnode.lastchild.html
   ChildNodes laz2_dom/tdomnode.childnodes.html
   PreviousSibling laz2_dom/tdomnode.previoussibling.html
   NextSibling laz2_dom/tdomnode.nextsibling.html
   Attributes laz2_dom/tdomnode.attributes.html
   OwnerDocument laz2_dom/tdomnode.ownerdocument.html
   GetEnumerator laz2_dom/tdomnode.getenumerator.html
   GetEnumeratorAllChildren laz2_dom/tdomnode.getenumeratorallchildren.html
   GetNextNode laz2_dom/tdomnode.getnextnode.html
   GetNextNodeSkipChildren laz2_dom/tdomnode.getnextnodeskipchildren.html
   GetPreviousNode laz2_dom/tdomnode.getpreviousnode.html
   GetLastLeaf laz2_dom/tdomnode.getlastleaf.html
   GetLevel laz2_dom/tdomnode.getlevel.html
   InsertBefore laz2_dom/tdomnode.insertbefore.html
   ReplaceChild laz2_dom/tdomnode.replacechild.html
   DetachChild laz2_dom/tdomnode.detachchild.html
   RemoveChild laz2_dom/tdomnode.removechild.html
   AppendChild laz2_dom/tdomnode.appendchild.html
   HasChildNodes laz2_dom/tdomnode.haschildnodes.html
   CloneNode laz2_dom/tdomnode.clonenode.html
   IsSupported laz2_dom/tdomnode.issupported.html
   HasAttributes laz2_dom/tdomnode.hasattributes.html
   Normalize laz2_dom/tdomnode.normalize.html
   NamespaceURI laz2_dom/tdomnode.namespaceuri.html
   LocalName laz2_dom/tdomnode.localname.html
   Prefix laz2_dom/tdomnode.prefix.html
   TextContent laz2_dom/tdomnode.textcontent.html
   LookupPrefix laz2_dom/tdomnode.lookupprefix.html
   LookupNamespaceURI laz2_dom/tdomnode.lookupnamespaceuri.html
   IsDefaultNamespace laz2_dom/tdomnode.isdefaultnamespace.html
   baseURI laz2_dom/tdomnode.baseuri.html
   FindNode laz2_dom/tdomnode.findnode.html
   CompareName laz2_dom/tdomnode.comparename.html
   Flags laz2_dom/tdomnode.flags.html
  TDOMNode_WithChildren laz2_dom/tdomnode_withchildren.html
   FFirstChild laz2_dom/tdomnode_withchildren.ffirstchild.html
   FLastChild laz2_dom/tdomnode_withchildren.flastchild.html
   FChildNodes laz2_dom/tdomnode_withchildren.fchildnodes.html
   GetFirstChild laz2_dom/tdomnode_withchildren.getfirstchild.html
   GetLastChild laz2_dom/tdomnode_withchildren.getlastchild.html
   CloneChildren laz2_dom/tdomnode_withchildren.clonechildren.html
   FreeChildren laz2_dom/tdomnode_withchildren.freechildren.html
   GetTextContent laz2_dom/tdomnode_withchildren.gettextcontent.html
   SetTextContent laz2_dom/tdomnode_withchildren.settextcontent.html
   Destroy laz2_dom/tdomnode_withchildren.destroy.html
   InsertBefore laz2_dom/tdomnode_withchildren.insertbefore.html
   ReplaceChild laz2_dom/tdomnode_withchildren.replacechild.html
   DetachChild laz2_dom/tdomnode_withchildren.detachchild.html
   HasChildNodes laz2_dom/tdomnode_withchildren.haschildnodes.html
   GetChildCount laz2_dom/tdomnode_withchildren.getchildcount.html
   FindNode laz2_dom/tdomnode_withchildren.findnode.html
   InternalAppend laz2_dom/tdomnode_withchildren.internalappend.html
  TDOMNodeList laz2_dom/tdomnodelist.html
   FNode laz2_dom/tdomnodelist.fnode.html
   FRevision laz2_dom/tdomnodelist.frevision.html
   FList laz2_dom/tdomnodelist.flist.html
   GetCount laz2_dom/tdomnodelist.getcount.html
   GetItem laz2_dom/tdomnodelist.getitem.html
   NodeFilter laz2_dom/tdomnodelist.nodefilter.html
   BuildList laz2_dom/tdomnodelist.buildlist.html
   Create laz2_dom/tdomnodelist.create.html
   Destroy laz2_dom/tdomnodelist.destroy.html
   Item laz2_dom/tdomnodelist.item.html
   Count laz2_dom/tdomnodelist.count.html
   Length laz2_dom/tdomnodelist.length.html
  TDOMElementList laz2_dom/tdomelementlist.html
   filter laz2_dom/tdomelementlist.filter.html
   FNSIndexFilter laz2_dom/tdomelementlist.fnsindexfilter.html
   localNameFilter laz2_dom/tdomelementlist.localnamefilter.html
   FMatchNS laz2_dom/tdomelementlist.fmatchns.html
   FMatchAnyNS laz2_dom/tdomelementlist.fmatchanyns.html
   UseFilter laz2_dom/tdomelementlist.usefilter.html
   NodeFilter laz2_dom/tdomelementlist.nodefilter.html
   Create laz2_dom/tdomelementlist.create.html
  TDOMNamedNodeMap laz2_dom/tdomnamednodemap.html
   FOwner laz2_dom/tdomnamednodemap.fowner.html
   FNodeType laz2_dom/tdomnamednodemap.fnodetype.html
   FSortedList laz2_dom/tdomnamednodemap.fsortedlist.html
   FPosList laz2_dom/tdomnamednodemap.fposlist.html
   GetPosItem laz2_dom/tdomnamednodemap.getpositem.html
   GetSortedItem laz2_dom/tdomnamednodemap.getsorteditem.html
   GetLength laz2_dom/tdomnamednodemap.getlength.html
   FindSorted laz2_dom/tdomnamednodemap.findsorted.html
   DeleteSorted laz2_dom/tdomnamednodemap.deletesorted.html
   RestoreDefault laz2_dom/tdomnamednodemap.restoredefault.html
   InternalRemove laz2_dom/tdomnamednodemap.internalremove.html
   ValidateInsert laz2_dom/tdomnamednodemap.validateinsert.html
   Create laz2_dom/tdomnamednodemap.create.html
   Destroy laz2_dom/tdomnamednodemap.destroy.html
   GetNamedItem laz2_dom/tdomnamednodemap.getnameditem.html
   SetNamedItem laz2_dom/tdomnamednodemap.setnameditem.html
   RemoveNamedItem laz2_dom/tdomnamednodemap.removenameditem.html
   getNamedItemNS laz2_dom/tdomnamednodemap.getnameditemns.html
   setNamedItemNS laz2_dom/tdomnamednodemap.setnameditemns.html
   removeNamedItemNS laz2_dom/tdomnamednodemap.removenameditemns.html
   Item laz2_dom/tdomnamednodemap.item.html
   SortedItem laz2_dom/tdomnamednodemap.sorteditem.html
   Length laz2_dom/tdomnamednodemap.length.html
  TDOMCharacterData laz2_dom/tdomcharacterdata.html
   GetLength laz2_dom/tdomcharacterdata.getlength.html
   GetNodeValue laz2_dom/tdomcharacterdata.getnodevalue.html
   SetNodeValue laz2_dom/tdomcharacterdata.setnodevalue.html
   Data laz2_dom/tdomcharacterdata.data.html
   Length laz2_dom/tdomcharacterdata.length.html
   SubstringData laz2_dom/tdomcharacterdata.substringdata.html
   AppendData laz2_dom/tdomcharacterdata.appenddata.html
   InsertData laz2_dom/tdomcharacterdata.insertdata.html
   DeleteData laz2_dom/tdomcharacterdata.deletedata.html
   ReplaceData laz2_dom/tdomcharacterdata.replacedata.html
  TDOMImplementation laz2_dom/tdomimplementation.html
   HasFeature laz2_dom/tdomimplementation.hasfeature.html
   CreateDocumentType laz2_dom/tdomimplementation.createdocumenttype.html
   CreateDocument laz2_dom/tdomimplementation.createdocument.html
  TDOMDocumentFragment laz2_dom/tdomdocumentfragment.html
   GetNodeType laz2_dom/tdomdocumentfragment.getnodetype.html
   GetNodeName laz2_dom/tdomdocumentfragment.getnodename.html
   CloneNode laz2_dom/tdomdocumentfragment.clonenode.html
  TDOMDocument laz2_dom/tdomdocument.html
   FIDList laz2_dom/tdomdocument.fidlist.html
   FRevision laz2_dom/tdomdocument.frevision.html
   FXML11 laz2_dom/tdomdocument.fxml11.html
   FImplementation laz2_dom/tdomdocument.fimplementation.html
   FNamespaces laz2_dom/tdomdocument.fnamespaces.html
   FNames laz2_dom/tdomdocument.fnames.html
   FEmptyNode laz2_dom/tdomdocument.femptynode.html
   FNodeLists laz2_dom/tdomdocument.fnodelists.html
   FMaxPoolSize laz2_dom/tdomdocument.fmaxpoolsize.html
   FPools laz2_dom/tdomdocument.fpools.html
   FDocumentURI laz2_dom/tdomdocument.fdocumenturi.html
   GetDocumentElement laz2_dom/tdomdocument.getdocumentelement.html
   GetDocType laz2_dom/tdomdocument.getdoctype.html
   GetNodeType laz2_dom/tdomdocument.getnodetype.html
   GetNodeName laz2_dom/tdomdocument.getnodename.html
   GetTextContent laz2_dom/tdomdocument.gettextcontent.html
   GetOwnerDocument laz2_dom/tdomdocument.getownerdocument.html
   SetTextContent laz2_dom/tdomdocument.settextcontent.html
   RemoveID laz2_dom/tdomdocument.removeid.html
   GetChildNodeList laz2_dom/tdomdocument.getchildnodelist.html
   GetElementList laz2_dom/tdomdocument.getelementlist.html
   NodeListDestroyed laz2_dom/tdomdocument.nodelistdestroyed.html
   Alloc laz2_dom/tdomdocument.alloc.html
   IndexOfNS laz2_dom/tdomdocument.indexofns.html
   InsertBefore laz2_dom/tdomdocument.insertbefore.html
   ReplaceChild laz2_dom/tdomdocument.replacechild.html
   DocType laz2_dom/tdomdocument.doctype.html
   Impl laz2_dom/tdomdocument.impl.html
   DocumentElement laz2_dom/tdomdocument.documentelement.html
   CreateElement laz2_dom/tdomdocument.createelement.html
   CreateElementBuf laz2_dom/tdomdocument.createelementbuf.html
   CreateDocumentFragment laz2_dom/tdomdocument.createdocumentfragment.html
   CreateTextNode laz2_dom/tdomdocument.createtextnode.html
   CreateTextNodeBuf laz2_dom/tdomdocument.createtextnodebuf.html
   CreateComment laz2_dom/tdomdocument.createcomment.html
   CreateCommentBuf laz2_dom/tdomdocument.createcommentbuf.html
   CreateCDATASection laz2_dom/tdomdocument.createcdatasection.html
   CreateProcessingInstruction laz2_dom/tdomdocument.createprocessinginstruction.html
   CreateAttribute laz2_dom/tdomdocument.createattribute.html
   CreateAttributeBuf laz2_dom/tdomdocument.createattributebuf.html
   CreateAttributeDef laz2_dom/tdomdocument.createattributedef.html
   CreateEntityReference laz2_dom/tdomdocument.createentityreference.html
   GetElementsByTagName laz2_dom/tdomdocument.getelementsbytagname.html
   ImportNode laz2_dom/tdomdocument.importnode.html
   CreateElementNS laz2_dom/tdomdocument.createelementns.html
   CreateAttributeNS laz2_dom/tdomdocument.createattributens.html
   GetElementsByTagNameNS laz2_dom/tdomdocument.getelementsbytagnamens.html
   GetElementById laz2_dom/tdomdocument.getelementbyid.html
   documentURI laz2_dom/tdomdocument.documenturi.html
   Create laz2_dom/tdomdocument.create.html
   Destroy laz2_dom/tdomdocument.destroy.html
   AddID laz2_dom/tdomdocument.addid.html
   Names laz2_dom/tdomdocument.names.html
  TXMLDocument laz2_dom/txmldocument.html
   Encoding laz2_dom/txmldocument.encoding.html
   StylesheetType laz2_dom/txmldocument.stylesheettype.html
   StylesheetHRef laz2_dom/txmldocument.stylesheethref.html
   CreateCDATASection laz2_dom/txmldocument.createcdatasection.html
   CreateProcessingInstruction laz2_dom/txmldocument.createprocessinginstruction.html
   CreateEntityReference laz2_dom/txmldocument.createentityreference.html
   XMLVersion laz2_dom/txmldocument.xmlversion.html
  TDOMNode_NS laz2_dom/tdomnode_ns.html
   FNSI laz2_dom/tdomnode_ns.fnsi.html
   GetNodeName laz2_dom/tdomnode_ns.getnodename.html
   GetLocalName laz2_dom/tdomnode_ns.getlocalname.html
   GetNamespaceURI laz2_dom/tdomnode_ns.getnamespaceuri.html
   GetPrefix laz2_dom/tdomnode_ns.getprefix.html
   SetPrefix laz2_dom/tdomnode_ns.setprefix.html
   SetNSI laz2_dom/tdomnode_ns.setnsi.html
   CompareName laz2_dom/tdomnode_ns.comparename.html
   NSI laz2_dom/tdomnode_ns.nsi.html
  TDOMAttr laz2_dom/tdomattr.html
   FOwnerElement laz2_dom/tdomattr.fownerelement.html
   FDataType laz2_dom/tdomattr.fdatatype.html
   GetNodeValue laz2_dom/tdomattr.getnodevalue.html
   GetNodeType laz2_dom/tdomattr.getnodetype.html
   GetSpecified laz2_dom/tdomattr.getspecified.html
   GetIsID laz2_dom/tdomattr.getisid.html
   SetNodeValue laz2_dom/tdomattr.setnodevalue.html
   Destroy laz2_dom/tdomattr.destroy.html
   CloneNode laz2_dom/tdomattr.clonenode.html
   Name laz2_dom/tdomattr.name.html
   Specified laz2_dom/tdomattr.specified.html
   Value laz2_dom/tdomattr.value.html
   OwnerElement laz2_dom/tdomattr.ownerelement.html
   IsID laz2_dom/tdomattr.isid.html
   DataType laz2_dom/tdomattr.datatype.html
  TDOMElement laz2_dom/tdomelement.html
   FAttributes laz2_dom/tdomelement.fattributes.html
   GetNodeType laz2_dom/tdomelement.getnodetype.html
   GetAttributes laz2_dom/tdomelement.getattributes.html
   AttachDefaultAttrs laz2_dom/tdomelement.attachdefaultattrs.html
   InternalLookupPrefix laz2_dom/tdomelement.internallookupprefix.html
   RestoreDefaultAttr laz2_dom/tdomelement.restoredefaultattr.html
   Destroy laz2_dom/tdomelement.destroy.html
   CloneNode laz2_dom/tdomelement.clonenode.html
   IsEmpty laz2_dom/tdomelement.isempty.html
   Normalize laz2_dom/tdomelement.normalize.html
   TagName laz2_dom/tdomelement.tagname.html
   GetAttribute laz2_dom/tdomelement.getattribute.html
   SetAttribute laz2_dom/tdomelement.setattribute.html
   RemoveAttribute laz2_dom/tdomelement.removeattribute.html
   GetAttributeNode laz2_dom/tdomelement.getattributenode.html
   SetAttributeNode laz2_dom/tdomelement.setattributenode.html
   RemoveAttributeNode laz2_dom/tdomelement.removeattributenode.html
   GetElementsByTagName laz2_dom/tdomelement.getelementsbytagname.html
   GetAttributeNS laz2_dom/tdomelement.getattributens.html
   SetAttributeNS laz2_dom/tdomelement.setattributens.html
   RemoveAttributeNS laz2_dom/tdomelement.removeattributens.html
   GetAttributeNodeNS laz2_dom/tdomelement.getattributenodens.html
   SetAttributeNodeNS laz2_dom/tdomelement.setattributenodens.html
   GetElementsByTagNameNS laz2_dom/tdomelement.getelementsbytagnamens.html
   hasAttribute laz2_dom/tdomelement.hasattribute.html
   hasAttributeNS laz2_dom/tdomelement.hasattributens.html
   HasAttributes laz2_dom/tdomelement.hasattributes.html
   AttribStrings laz2_dom/tdomelement.attribstrings.html
  TDOMText laz2_dom/tdomtext.html
   GetNodeType laz2_dom/tdomtext.getnodetype.html
   GetNodeName laz2_dom/tdomtext.getnodename.html
   SetNodeValue laz2_dom/tdomtext.setnodevalue.html
   CloneNode laz2_dom/tdomtext.clonenode.html
   SplitText laz2_dom/tdomtext.splittext.html
   IsElementContentWhitespace laz2_dom/tdomtext.iselementcontentwhitespace.html
  TDOMComment laz2_dom/tdomcomment.html
   GetNodeType laz2_dom/tdomcomment.getnodetype.html
   GetNodeName laz2_dom/tdomcomment.getnodename.html
   CloneNode laz2_dom/tdomcomment.clonenode.html
  TDOMCDATASection laz2_dom/tdomcdatasection.html
   GetNodeType laz2_dom/tdomcdatasection.getnodetype.html
   GetNodeName laz2_dom/tdomcdatasection.getnodename.html
   CloneNode laz2_dom/tdomcdatasection.clonenode.html
  TDOMDocumentType laz2_dom/tdomdocumenttype.html
   FName laz2_dom/tdomdocumenttype.fname.html
   FPublicID laz2_dom/tdomdocumenttype.fpublicid.html
   FSystemID laz2_dom/tdomdocumenttype.fsystemid.html
   FInternalSubset laz2_dom/tdomdocumenttype.finternalsubset.html
   FEntities laz2_dom/tdomdocumenttype.fentities.html
   FNotations laz2_dom/tdomdocumenttype.fnotations.html
   GetEntities laz2_dom/tdomdocumenttype.getentities.html
   GetNotations laz2_dom/tdomdocumenttype.getnotations.html
   GetNodeType laz2_dom/tdomdocumenttype.getnodetype.html
   GetNodeName laz2_dom/tdomdocumenttype.getnodename.html
   Destroy laz2_dom/tdomdocumenttype.destroy.html
   Name laz2_dom/tdomdocumenttype.name.html
   Entities laz2_dom/tdomdocumenttype.entities.html
   Notations laz2_dom/tdomdocumenttype.notations.html
   PublicID laz2_dom/tdomdocumenttype.publicid.html
   SystemID laz2_dom/tdomdocumenttype.systemid.html
   InternalSubset laz2_dom/tdomdocumenttype.internalsubset.html
  TDOMNotation laz2_dom/tdomnotation.html
   FName laz2_dom/tdomnotation.fname.html
   FPublicID laz2_dom/tdomnotation.fpublicid.html
   FSystemID laz2_dom/tdomnotation.fsystemid.html
   GetNodeType laz2_dom/tdomnotation.getnodetype.html
   GetNodeName laz2_dom/tdomnotation.getnodename.html
   CloneNode laz2_dom/tdomnotation.clonenode.html
   PublicID laz2_dom/tdomnotation.publicid.html
   SystemID laz2_dom/tdomnotation.systemid.html
  TDOMEntity laz2_dom/tdomentity.html
   FName laz2_dom/tdomentity.fname.html
   FPublicID laz2_dom/tdomentity.fpublicid.html
   FSystemID laz2_dom/tdomentity.fsystemid.html
   FNotationName laz2_dom/tdomentity.fnotationname.html
   GetNodeType laz2_dom/tdomentity.getnodetype.html
   GetNodeName laz2_dom/tdomentity.getnodename.html
   CloneNode laz2_dom/tdomentity.clonenode.html
   PublicID laz2_dom/tdomentity.publicid.html
   SystemID laz2_dom/tdomentity.systemid.html
   NotationName laz2_dom/tdomentity.notationname.html
  TDOMEntityReference laz2_dom/tdomentityreference.html
   FName laz2_dom/tdomentityreference.fname.html
   GetNodeType laz2_dom/tdomentityreference.getnodetype.html
   GetNodeName laz2_dom/tdomentityreference.getnodename.html
   CloneNode laz2_dom/tdomentityreference.clonenode.html
  TDOMProcessingInstruction laz2_dom/tdomprocessinginstruction.html
   GetNodeType laz2_dom/tdomprocessinginstruction.getnodetype.html
   GetNodeName laz2_dom/tdomprocessinginstruction.getnodename.html
   GetNodeValue laz2_dom/tdomprocessinginstruction.getnodevalue.html
   SetNodeValue laz2_dom/tdomprocessinginstruction.setnodevalue.html
   CloneNode laz2_dom/tdomprocessinginstruction.clonenode.html
   Target laz2_dom/tdomprocessinginstruction.target.html
   Data laz2_dom/tdomprocessinginstruction.data.html
  TDOMAttrDef laz2_dom/tdomattrdef.html
   FExternallyDeclared laz2_dom/tdomattrdef.fexternallydeclared.html
   FDefault laz2_dom/tdomattrdef.fdefault.html
   FTag laz2_dom/tdomattrdef.ftag.html
   FEnumeration laz2_dom/tdomattrdef.fenumeration.html
   AddEnumToken laz2_dom/tdomattrdef.addenumtoken.html
   HasEnumToken laz2_dom/tdomattrdef.hasenumtoken.html
   CloneNode laz2_dom/tdomattrdef.clonenode.html
   Default laz2_dom/tdomattrdef.default.html
   ExternallyDeclared laz2_dom/tdomattrdef.externallydeclared.html
   Tag laz2_dom/tdomattrdef.tag.html
  TNodePool laz2_dom/tnodepool.html
   Create laz2_dom/tnodepool.create.html
   Destroy laz2_dom/tnodepool.destroy.html
   AllocNode laz2_dom/tnodepool.allocnode.html
   FreeNode laz2_dom/tnodepool.freenode.html
  StrToXMLValue laz2_dom/strtoxmlvalue.html
  XMLValueToStr laz2_dom/xmlvaluetostr.html
  EncodeLesserAndGreaterThan laz2_dom/encodelesserandgreaterthan.html
 laz2_xmlutils laz2_xmlutils/index.html
  ns_ASCII laz2_xmlutils/ns_ascii.html
  ns_0200 laz2_xmlutils/ns_0200.html
  ns_0300 laz2_xmlutils/ns_0300.html
  ns_0400 laz2_xmlutils/ns_0400.html
  ns_0500 laz2_xmlutils/ns_0500.html
  ns_0600 laz2_xmlutils/ns_0600.html
  ns_0900 laz2_xmlutils/ns_0900.html
  ns_0A00 laz2_xmlutils/ns_0a00.html
  ns_0B00 laz2_xmlutils/ns_0b00.html
  ns_0C00 laz2_xmlutils/ns_0c00.html
  ns_0D00 laz2_xmlutils/ns_0d00.html
  ns_0E00 laz2_xmlutils/ns_0e00.html
  ns_0F00 laz2_xmlutils/ns_0f00.html
  ns_3000 laz2_xmlutils/ns_3000.html
  namingBitmap laz2_xmlutils/namingbitmap.html
  Xml11HighPages laz2_xmlutils/xml11highpages.html
  NamePages laz2_xmlutils/namepages.html
  TXMLUtilString laz2_xmlutils/txmlutilstring.html
  TXMLUtilChar laz2_xmlutils/txmlutilchar.html
  PXMLUtilChar laz2_xmlutils/pxmlutilchar.html
  PXMLUtilString laz2_xmlutils/pxmlutilstring.html
  PPHashItem laz2_xmlutils/pphashitem.html
  PHashItem laz2_xmlutils/phashitem.html
  THashItem laz2_xmlutils/thashitem.html
  THashItemArray laz2_xmlutils/thashitemarray.html
  PHashItemArray laz2_xmlutils/phashitemarray.html
  THashForEach laz2_xmlutils/thashforeach.html
  TExpHashEntry laz2_xmlutils/texphashentry.html
  TExpHashEntryArray laz2_xmlutils/texphashentryarray.html
  PExpHashEntryArray laz2_xmlutils/pexphashentryarray.html
  TAttributeAction laz2_xmlutils/tattributeaction.html
  TSetOfByte laz2_xmlutils/tsetofbyte.html
  THashTable laz2_xmlutils/thashtable.html
   Create laz2_xmlutils/thashtable.create.html
   Destroy laz2_xmlutils/thashtable.destroy.html
   Clear laz2_xmlutils/thashtable.clear.html
   Find laz2_xmlutils/thashtable.find.html
   FindOrAdd laz2_xmlutils/thashtable.findoradd.html
   Get laz2_xmlutils/thashtable.get.html
   Remove laz2_xmlutils/thashtable.remove.html
   RemoveData laz2_xmlutils/thashtable.removedata.html
   ForEach laz2_xmlutils/thashtable.foreach.html
   Count laz2_xmlutils/thashtable.count.html
  TDblHashArray laz2_xmlutils/tdblhasharray.html
   Init laz2_xmlutils/tdblhasharray.init.html
   Locate laz2_xmlutils/tdblhasharray.locate.html
   Destroy laz2_xmlutils/tdblhasharray.destroy.html
  TBinding laz2_xmlutils/tbinding.html
   uri laz2_xmlutils/tbinding.uri.html
   next laz2_xmlutils/tbinding.next.html
   prevPrefixBinding laz2_xmlutils/tbinding.prevprefixbinding.html
   Prefix laz2_xmlutils/tbinding.prefix.html
  TNSSupport laz2_xmlutils/tnssupport.html
   Create laz2_xmlutils/tnssupport.create.html
   Destroy laz2_xmlutils/tnssupport.destroy.html
   DefineBinding laz2_xmlutils/tnssupport.definebinding.html
   CheckAttribute laz2_xmlutils/tnssupport.checkattribute.html
   IsPrefixBound laz2_xmlutils/tnssupport.isprefixbound.html
   GetPrefix laz2_xmlutils/tnssupport.getprefix.html
   BindPrefix laz2_xmlutils/tnssupport.bindprefix.html
   DefaultNSBinding laz2_xmlutils/tnssupport.defaultnsbinding.html
   StartElement laz2_xmlutils/tnssupport.startelement.html
   EndElement laz2_xmlutils/tnssupport.endelement.html
  IsXmlName laz2_xmlutils/isxmlname.html
  IsXmlNames laz2_xmlutils/isxmlnames.html
  IsXmlNmToken laz2_xmlutils/isxmlnmtoken.html
  IsXmlNmTokens laz2_xmlutils/isxmlnmtokens.html
  IsValidXmlEncoding laz2_xmlutils/isvalidxmlencoding.html
  Xml11NamePages laz2_xmlutils/xml11namepages.html
  NormalizeSpaces laz2_xmlutils/normalizespaces.html
  IsXmlWhiteSpace laz2_xmlutils/isxmlwhitespace.html
  Hash laz2_xmlutils/hash.html
  XUStrLIComp laz2_xmlutils/xustrlicomp.html
  TranslateUTF8Chars laz2_xmlutils/translateutf8chars.html
 Laz2_XMLCfg laz2_xmlcfg/index.html
  TXMLConfig laz2_xmlcfg/txmlconfig.html
   doc laz2_xmlcfg/txmlconfig.doc.html
   FModified laz2_xmlcfg/txmlconfig.fmodified.html
   fDoNotLoadFromFile laz2_xmlcfg/txmlconfig.fdonotloadfromfile.html
   fAutoLoadFromSource laz2_xmlcfg/txmlconfig.fautoloadfromsource.html
   fPathCache laz2_xmlcfg/txmlconfig.fpathcache.html
   fPathNodeCache laz2_xmlcfg/txmlconfig.fpathnodecache.html
   Loaded laz2_xmlcfg/txmlconfig.loaded.html
   ExtendedToStr laz2_xmlcfg/txmlconfig.extendedtostr.html
   StrToExtended laz2_xmlcfg/txmlconfig.strtoextended.html
   ReadXMLFile laz2_xmlcfg/txmlconfig.readxmlfile.html
   WriteXMLFile laz2_xmlcfg/txmlconfig.writexmlfile.html
   FreeDoc laz2_xmlcfg/txmlconfig.freedoc.html
   SetPathNodeCache laz2_xmlcfg/txmlconfig.setpathnodecache.html
   GetPathNodeCache laz2_xmlcfg/txmlconfig.getpathnodecache.html
   InvalidateCacheTilEnd laz2_xmlcfg/txmlconfig.invalidatecachetilend.html
   InternalFindNode laz2_xmlcfg/txmlconfig.internalfindnode.html
   InternalCleanNode laz2_xmlcfg/txmlconfig.internalcleannode.html
   Create laz2_xmlcfg/txmlconfig.create.html
   CreateClean laz2_xmlcfg/txmlconfig.createclean.html
   CreateWithSource laz2_xmlcfg/txmlconfig.createwithsource.html
   Destroy laz2_xmlcfg/txmlconfig.destroy.html
   Clear laz2_xmlcfg/txmlconfig.clear.html
   Flush laz2_xmlcfg/txmlconfig.flush.html
   ReadFromStream laz2_xmlcfg/txmlconfig.readfromstream.html
   WriteToStream laz2_xmlcfg/txmlconfig.writetostream.html
   GetValue laz2_xmlcfg/txmlconfig.getvalue.html
   GetExtendedValue laz2_xmlcfg/txmlconfig.getextendedvalue.html
   SetValue laz2_xmlcfg/txmlconfig.setvalue.html
   SetDeleteValue laz2_xmlcfg/txmlconfig.setdeletevalue.html
   SetExtendedValue laz2_xmlcfg/txmlconfig.setextendedvalue.html
   SetDeleteExtendedValue laz2_xmlcfg/txmlconfig.setdeleteextendedvalue.html
   DeletePath laz2_xmlcfg/txmlconfig.deletepath.html
   DeleteValue laz2_xmlcfg/txmlconfig.deletevalue.html
   FindNode laz2_xmlcfg/txmlconfig.findnode.html
   HasPath laz2_xmlcfg/txmlconfig.haspath.html
   HasChildPaths laz2_xmlcfg/txmlconfig.haschildpaths.html
   Modified laz2_xmlcfg/txmlconfig.modified.html
   InvalidatePathCache laz2_xmlcfg/txmlconfig.invalidatepathcache.html
   Filename laz2_xmlcfg/txmlconfig.filename.html
   Document laz2_xmlcfg/txmlconfig.document.html
   ReadFlags laz2_xmlcfg/txmlconfig.readflags.html
   WriteFlags laz2_xmlcfg/txmlconfig.writeflags.html
  TRttiXMLConfig laz2_xmlcfg/trttixmlconfig.html
   WriteProperty laz2_xmlcfg/trttixmlconfig.writeproperty.html
   ReadProperty laz2_xmlcfg/trttixmlconfig.readproperty.html
   WriteObject laz2_xmlcfg/trttixmlconfig.writeobject.html
   ReadObject laz2_xmlcfg/trttixmlconfig.readobject.html
 laz2_XMLRead laz2_xmlread/index.html
  TErrorSeverity laz2_xmlread/terrorseverity.html
  TXMLReaderFlag laz2_xmlread/txmlreaderflag.html
  TXMLReaderFlags laz2_xmlread/txmlreaderflags.html
  TXMLContextAction laz2_xmlread/txmlcontextaction.html
  TXMLErrorEvent laz2_xmlread/txmlerrorevent.html
  TDecoder laz2_xmlread/tdecoder.html
  TGetDecoderProc laz2_xmlread/tgetdecoderproc.html
  EXMLReadError laz2_xmlread/exmlreaderror.html
   Severity laz2_xmlread/exmlreaderror.severity.html
   ErrorMessage laz2_xmlread/exmlreaderror.errormessage.html
   Line laz2_xmlread/exmlreaderror.line.html
   LinePos laz2_xmlread/exmlreaderror.linepos.html
   LineCol laz2_xmlread/exmlreaderror.linecol.html
  TDOMParseOptions laz2_xmlread/tdomparseoptions.html
   Validate laz2_xmlread/tdomparseoptions.validate.html
   PreserveWhitespace laz2_xmlread/tdomparseoptions.preservewhitespace.html
   ExpandEntities laz2_xmlread/tdomparseoptions.expandentities.html
   IgnoreComments laz2_xmlread/tdomparseoptions.ignorecomments.html
   CDSectionsAsText laz2_xmlread/tdomparseoptions.cdsectionsastext.html
   ResolveExternals laz2_xmlread/tdomparseoptions.resolveexternals.html
   Namespaces laz2_xmlread/tdomparseoptions.namespaces.html
   DisallowDoctype laz2_xmlread/tdomparseoptions.disallowdoctype.html
   MaxChars laz2_xmlread/tdomparseoptions.maxchars.html
   CanonicalForm laz2_xmlread/tdomparseoptions.canonicalform.html
  TXMLInputSource laz2_xmlread/txmlinputsource.html
   Create laz2_xmlread/txmlinputsource.create.html
   Stream laz2_xmlread/txmlinputsource.stream.html
   StringData laz2_xmlread/txmlinputsource.stringdata.html
   BaseURI laz2_xmlread/txmlinputsource.baseuri.html
   SystemID laz2_xmlread/txmlinputsource.systemid.html
   PublicID laz2_xmlread/txmlinputsource.publicid.html
  TDOMParser laz2_xmlread/tdomparser.html
   Create laz2_xmlread/tdomparser.create.html
   Destroy laz2_xmlread/tdomparser.destroy.html
   Parse laz2_xmlread/tdomparser.parse.html
   ParseUri laz2_xmlread/tdomparser.parseuri.html
   ParseWithContext laz2_xmlread/tdomparser.parsewithcontext.html
   Options laz2_xmlread/tdomparser.options.html
   OnError laz2_xmlread/tdomparser.onerror.html
  ReadXMLFile laz2_xmlread/readxmlfile.html
  ReadXMLFragment laz2_xmlread/readxmlfragment.html
  ReadDTDFile laz2_xmlread/readdtdfile.html
  RegisterDecoder laz2_xmlread/registerdecoder.html
 laz2_XMLWrite laz2_xmlwrite/index.html
  TXMLWriterFlag laz2_xmlwrite/txmlwriterflag.html
  TXMLWriterFlags laz2_xmlwrite/txmlwriterflags.html
  WriteXMLFile laz2_xmlwrite/writexmlfile.html
  WriteXML laz2_xmlwrite/writexml.html
 Laz_DOM laz_dom/index.html
  TDOMImplementation laz_dom/tdomimplementation.html
  TDOMDocumentFragment laz_dom/tdomdocumentfragment.html
  TDOMDocument laz_dom/tdomdocument.html
  TDOMNode laz_dom/tdomnode.html
  TDOMNodeList laz_dom/tdomnodelist.html
  TDOMNamedNodeMap laz_dom/tdomnamednodemap.html
  TDOMCharacterData laz_dom/tdomcharacterdata.html
  TDOMAttr laz_dom/tdomattr.html
  TDOMElement laz_dom/tdomelement.html
  TDOMText laz_dom/tdomtext.html
  TDOMComment laz_dom/tdomcomment.html
  TDOMCDATASection laz_dom/tdomcdatasection.html
  TDOMDocumentType laz_dom/tdomdocumenttype.html
  TDOMNotation laz_dom/tdomnotation.html
  TDOMEntity laz_dom/tdomentity.html
  TDOMEntityReference laz_dom/tdomentityreference.html
  TDOMProcessingInstruction laz_dom/tdomprocessinginstruction.html
  DOMString laz_dom/domstring.html
  DOMPChar laz_dom/dompchar.html
  EDOMError laz_dom/edomerror.html
 Laz_XMLCfg laz_xmlcfg/index.html
  TXMLConfig laz_xmlcfg/txmlconfig.html
  TRttiXMLConfig laz_xmlcfg/trttixmlconfig.html
 Laz_XMLRead laz_xmlread/index.html
  xrfOldXMLRead laz_xmlread/xrfoldxmlread.html
  EXMLReadError laz_xmlread/exmlreaderror.html
  ReadXMLFile laz_xmlread/readxmlfile.html
  ReadXMLFragment laz_xmlread/readxmlfragment.html
  ReadDTDFile laz_xmlread/readdtdfile.html
 Laz_XMLStreaming laz_xmlstreaming/index.html
  TXMLObjectWriterStackElType laz_xmlstreaming/txmlobjectwriterstackeltype.html
  TXMLObjectWriterClass laz_xmlstreaming/txmlobjectwriterclass.html
  TXMLObjectReaderClass laz_xmlstreaming/txmlobjectreaderclass.html
  TXMLObjectWriterStackEl laz_xmlstreaming/txmlobjectwriterstackel.html
   Element laz_xmlstreaming/txmlobjectwriterstackel.element.html
   Parent laz_xmlstreaming/txmlobjectwriterstackel.parent.html
   ElemType laz_xmlstreaming/txmlobjectwriterstackel.elemtype.html
   PropertyName laz_xmlstreaming/txmlobjectwriterstackel.propertyname.html
  TXMLObjectWriter laz_xmlstreaming/txmlobjectwriter.html
   GetPropertyElement laz_xmlstreaming/txmlobjectwriter.getpropertyelement.html
   Create laz_xmlstreaming/txmlobjectwriter.create.html
   BeginCollection laz_xmlstreaming/txmlobjectwriter.begincollection.html
   BeginComponent laz_xmlstreaming/txmlobjectwriter.begincomponent.html
   BeginList laz_xmlstreaming/txmlobjectwriter.beginlist.html
   EndList laz_xmlstreaming/txmlobjectwriter.endlist.html
   BeginProperty laz_xmlstreaming/txmlobjectwriter.beginproperty.html
   EndProperty laz_xmlstreaming/txmlobjectwriter.endproperty.html
   WriteBinary laz_xmlstreaming/txmlobjectwriter.writebinary.html
   WriteBoolean laz_xmlstreaming/txmlobjectwriter.writeboolean.html
   WriteFloat laz_xmlstreaming/txmlobjectwriter.writefloat.html
   WriteSingle laz_xmlstreaming/txmlobjectwriter.writesingle.html
   WriteCurrency laz_xmlstreaming/txmlobjectwriter.writecurrency.html
   WriteDate laz_xmlstreaming/txmlobjectwriter.writedate.html
   WriteIdent laz_xmlstreaming/txmlobjectwriter.writeident.html
   WriteInteger laz_xmlstreaming/txmlobjectwriter.writeinteger.html
   WriteMethodName laz_xmlstreaming/txmlobjectwriter.writemethodname.html
   WriteSet laz_xmlstreaming/txmlobjectwriter.writeset.html
   WriteString laz_xmlstreaming/txmlobjectwriter.writestring.html
   WriteWideString laz_xmlstreaming/txmlobjectwriter.writewidestring.html
   WriteUInt64 laz_xmlstreaming/txmlobjectwriter.writeuint64.html
   WriteUnicodeString laz_xmlstreaming/txmlobjectwriter.writeunicodestring.html
   WriteVariant laz_xmlstreaming/txmlobjectwriter.writevariant.html
   Write laz_xmlstreaming/txmlobjectwriter.write.html
   Doc laz_xmlstreaming/txmlobjectwriter.doc.html
  TXMLObjectReader laz_xmlstreaming/txmlobjectreader.html
   Create laz_xmlstreaming/txmlobjectreader.create.html
   Destroy laz_xmlstreaming/txmlobjectreader.destroy.html
   GetRootClassName laz_xmlstreaming/txmlobjectreader.getrootclassname.html
   NextValue laz_xmlstreaming/txmlobjectreader.nextvalue.html
   ReadValue laz_xmlstreaming/txmlobjectreader.readvalue.html
   BeginRootComponent laz_xmlstreaming/txmlobjectreader.beginrootcomponent.html
   BeginComponent laz_xmlstreaming/txmlobjectreader.begincomponent.html
   BeginProperty laz_xmlstreaming/txmlobjectreader.beginproperty.html
   ReadBinary laz_xmlstreaming/txmlobjectreader.readbinary.html
   ReadFloat laz_xmlstreaming/txmlobjectreader.readfloat.html
   ReadSingle laz_xmlstreaming/txmlobjectreader.readsingle.html
   ReadCurrency laz_xmlstreaming/txmlobjectreader.readcurrency.html
   ReadDate laz_xmlstreaming/txmlobjectreader.readdate.html
   ReadIdent laz_xmlstreaming/txmlobjectreader.readident.html
   ReadInt8 laz_xmlstreaming/txmlobjectreader.readint8.html
   ReadInt16 laz_xmlstreaming/txmlobjectreader.readint16.html
   ReadInt32 laz_xmlstreaming/txmlobjectreader.readint32.html
   ReadInt64 laz_xmlstreaming/txmlobjectreader.readint64.html
   ReadSet laz_xmlstreaming/txmlobjectreader.readset.html
   ReadStr laz_xmlstreaming/txmlobjectreader.readstr.html
   ReadString laz_xmlstreaming/txmlobjectreader.readstring.html
   ReadWideString laz_xmlstreaming/txmlobjectreader.readwidestring.html
   ReadUnicodeString laz_xmlstreaming/txmlobjectreader.readunicodestring.html
   SkipComponent laz_xmlstreaming/txmlobjectreader.skipcomponent.html
   SkipValue laz_xmlstreaming/txmlobjectreader.skipvalue.html
   Read laz_xmlstreaming/txmlobjectreader.read.html
   Doc laz_xmlstreaming/txmlobjectreader.doc.html
   Element laz_xmlstreaming/txmlobjectreader.element.html
   ElementPosition laz_xmlstreaming/txmlobjectreader.elementposition.html
  WriteComponentToXMLStream laz_xmlstreaming/writecomponenttoxmlstream.html
 Laz_XMLWrite laz_xmlwrite/index.html
  xwfOldXMLWrite laz_xmlwrite/xwfoldxmlwrite.html
  WriteXMLFile laz_xmlwrite/writexmlfile.html
  WriteXML laz_xmlwrite/writexml.html
 LazFreeType lazfreetype/index.html
  TT_Load_Scale_Glyph lazfreetype/tt_load_scale_glyph.html
  TT_Load_Hint_Glyph lazfreetype/tt_load_hint_glyph.html
  TT_Load_Debug lazfreetype/tt_load_debug.html
  TT_Load_Default lazfreetype/tt_load_default.html
  TT_Init_FreeType lazfreetype/tt_init_freetype.html
  TT_Done_FreeType lazfreetype/tt_done_freetype.html
  TT_Set_Raster_Palette lazfreetype/tt_set_raster_palette.html
  TT_Open_Face lazfreetype/tt_open_face.html
  TT_Open_Collection lazfreetype/tt_open_collection.html
  TT_Get_Face_Properties lazfreetype/tt_get_face_properties.html
  TT_Set_Face_Pointer lazfreetype/tt_set_face_pointer.html
  TT_Get_Face_Pointer lazfreetype/tt_get_face_pointer.html
  TT_Close_Face lazfreetype/tt_close_face.html
  TT_New_Instance lazfreetype/tt_new_instance.html
  TT_Set_Instance_Resolutions lazfreetype/tt_set_instance_resolutions.html
  TT_Set_Instance_PointSize lazfreetype/tt_set_instance_pointsize.html
  TT_Set_Instance_CharSize lazfreetype/tt_set_instance_charsize.html
  TT_Set_Instance_CharSizes lazfreetype/tt_set_instance_charsizes.html
  TT_Set_Instance_PixelSizes lazfreetype/tt_set_instance_pixelsizes.html
  TT_Set_Instance_Transforms lazfreetype/tt_set_instance_transforms.html
  TT_Get_Instance_Metrics lazfreetype/tt_get_instance_metrics.html
  TT_Set_Instance_Pointer lazfreetype/tt_set_instance_pointer.html
  TT_Get_Instance_Pointer lazfreetype/tt_get_instance_pointer.html
  TT_Done_Instance lazfreetype/tt_done_instance.html
  TT_New_Glyph lazfreetype/tt_new_glyph.html
  TT_Done_Glyph lazfreetype/tt_done_glyph.html
  TT_Load_Glyph lazfreetype/tt_load_glyph.html
  TT_Get_Glyph_Outline lazfreetype/tt_get_glyph_outline.html
  TT_Get_Glyph_Metrics lazfreetype/tt_get_glyph_metrics.html
  TT_Get_Glyph_Big_Metrics lazfreetype/tt_get_glyph_big_metrics.html
  TT_Get_Glyph_Bitmap lazfreetype/tt_get_glyph_bitmap.html
  TT_Get_Glyph_Pixmap lazfreetype/tt_get_glyph_pixmap.html
  TT_Get_Glyph_Pixmap_HQ lazfreetype/tt_get_glyph_pixmap_hq.html
  TT_Render_Directly_Glyph_Gray lazfreetype/tt_render_directly_glyph_gray.html
  TT_Render_Directly_Glyph_HQ lazfreetype/tt_render_directly_glyph_hq.html
  TT_Translate_Outline lazfreetype/tt_translate_outline.html
  TT_Transform_Outline lazfreetype/tt_transform_outline.html
  TT_Transform_Vector lazfreetype/tt_transform_vector.html
  TT_Get_Outline_Bitmap lazfreetype/tt_get_outline_bitmap.html
  TT_Get_Outline_Pixmap lazfreetype/tt_get_outline_pixmap.html
  TT_Get_Outline_Pixmap_HQ lazfreetype/tt_get_outline_pixmap_hq.html
  TT_Render_Directly_Outline_Gray lazfreetype/tt_render_directly_outline_gray.html
  TT_Render_Directly_Outline_HQ lazfreetype/tt_render_directly_outline_hq.html
  TT_Get_Outline_BBox lazfreetype/tt_get_outline_bbox.html
  TT_New_Outline lazfreetype/tt_new_outline.html
  TT_Copy_Outline lazfreetype/tt_copy_outline.html
  TT_Clone_Outline lazfreetype/tt_clone_outline.html
  TT_Done_Outline lazfreetype/tt_done_outline.html
  TT_Get_CharMap_Count lazfreetype/tt_get_charmap_count.html
  TT_Get_CharMap_ID lazfreetype/tt_get_charmap_id.html
  TT_Get_CharMap lazfreetype/tt_get_charmap.html
  TT_Char_Index lazfreetype/tt_char_index.html
  TT_Get_Name_Count lazfreetype/tt_get_name_count.html
  TT_Get_Name_ID lazfreetype/tt_get_name_id.html
  TT_Get_Name_String lazfreetype/tt_get_name_string.html
  TT_Get_Font_Data lazfreetype/tt_get_font_data.html
 TTTypes tttypes/index.html
  TT_Flag_On_Curve tttypes/tt_flag_on_curve.html
  TT_Flow_Down tttypes/tt_flow_down.html
  TT_Flow_Up tttypes/tt_flow_up.html
  TT_Err_Ok tttypes/tt_err_ok.html
  TT_Err_Invalid_Face_Handle tttypes/tt_err_invalid_face_handle.html
  TT_Err_Invalid_Instance_Handle tttypes/tt_err_invalid_instance_handle.html
  TT_Err_Invalid_Glyph_Handle tttypes/tt_err_invalid_glyph_handle.html
  TT_Err_Invalid_CharMap_Handle tttypes/tt_err_invalid_charmap_handle.html
  TT_Err_Invalid_Result_Address tttypes/tt_err_invalid_result_address.html
  TT_Err_Invalid_Glyph_Index tttypes/tt_err_invalid_glyph_index.html
  TT_Err_Invalid_Argument tttypes/tt_err_invalid_argument.html
  TT_Err_Could_Not_Open_File tttypes/tt_err_could_not_open_file.html
  TT_Err_File_Is_Not_Collection tttypes/tt_err_file_is_not_collection.html
  TT_Err_Table_Missing tttypes/tt_err_table_missing.html
  TT_Err_Invalid_Horiz_Metrics tttypes/tt_err_invalid_horiz_metrics.html
  TT_Err_Invalid_Vert_Metrics tttypes/tt_err_invalid_vert_metrics.html
  TT_Err_Invalid_CharMap_Format tttypes/tt_err_invalid_charmap_format.html
  TT_Err_Invalid_File_Format tttypes/tt_err_invalid_file_format.html
  TT_Err_File_Error tttypes/tt_err_file_error.html
  TT_Err_Invalid_Engine tttypes/tt_err_invalid_engine.html
  TT_Err_Too_Many_Extensions tttypes/tt_err_too_many_extensions.html
  TT_Err_Extensions_Unsupported tttypes/tt_err_extensions_unsupported.html
  TT_Err_Invalid_Extension_Id tttypes/tt_err_invalid_extension_id.html
  TT_Err_No_Vertical_Data tttypes/tt_err_no_vertical_data.html
  TT_Err_Max_Profile_Missing tttypes/tt_err_max_profile_missing.html
  TT_Err_Header_Table_Missing tttypes/tt_err_header_table_missing.html
  TT_Err_Horiz_Header_Missing tttypes/tt_err_horiz_header_missing.html
  TT_Err_Locations_Missing tttypes/tt_err_locations_missing.html
  TT_Err_Name_Table_Missing tttypes/tt_err_name_table_missing.html
  TT_Err_CMap_Table_Missing tttypes/tt_err_cmap_table_missing.html
  TT_Err_Hmtx_Table_Missing tttypes/tt_err_hmtx_table_missing.html
  TT_Err_OS2_Table_Missing tttypes/tt_err_os2_table_missing.html
  TT_Err_Post_Table_Missing tttypes/tt_err_post_table_missing.html
  TT_Err_Out_Of_Memory tttypes/tt_err_out_of_memory.html
  TT_Err_Invalid_File_Offset tttypes/tt_err_invalid_file_offset.html
  TT_Err_Invalid_File_Read tttypes/tt_err_invalid_file_read.html
  TT_Err_Invalid_Frame_Access tttypes/tt_err_invalid_frame_access.html
  TT_Err_Too_Many_Points tttypes/tt_err_too_many_points.html
  TT_Err_Too_Many_Contours tttypes/tt_err_too_many_contours.html
  TT_Err_Invalid_Composite tttypes/tt_err_invalid_composite.html
  TT_Err_Too_Many_Ins tttypes/tt_err_too_many_ins.html
  TT_Err_Invalid_Opcode tttypes/tt_err_invalid_opcode.html
  TT_Err_Too_Few_Arguments tttypes/tt_err_too_few_arguments.html
  TT_Err_Stack_Overflow tttypes/tt_err_stack_overflow.html
  TT_Err_Code_Overflow tttypes/tt_err_code_overflow.html
  TT_Err_Bad_Argument tttypes/tt_err_bad_argument.html
  TT_Err_Divide_By_Zero tttypes/tt_err_divide_by_zero.html
  TT_Err_Storage_Overflow tttypes/tt_err_storage_overflow.html
  TT_Err_Cvt_Overflow tttypes/tt_err_cvt_overflow.html
  TT_Err_Invalid_Reference tttypes/tt_err_invalid_reference.html
  TT_Err_Invalid_Distance tttypes/tt_err_invalid_distance.html
  TT_Err_Interpolate_Twilight tttypes/tt_err_interpolate_twilight.html
  TT_Err_Debug_Opcode tttypes/tt_err_debug_opcode.html
  TT_Err_ENDF_In_Exec_Stream tttypes/tt_err_endf_in_exec_stream.html
  TT_Err_Out_Of_CodeRanges tttypes/tt_err_out_of_coderanges.html
  TT_Err_Nested_DEFs tttypes/tt_err_nested_defs.html
  TT_Err_Invalid_CodeRange tttypes/tt_err_invalid_coderange.html
  TT_Err_Invalid_Displacement tttypes/tt_err_invalid_displacement.html
  TT_Err_Execution_Too_Long tttypes/tt_err_execution_too_long.html
  TT_Err_Too_Many_FuncDefs tttypes/tt_err_too_many_funcdefs.html
  TT_Err_Too_Many_InsDefs tttypes/tt_err_too_many_insdefs.html
  TT_Err_Nested_Frame_Access tttypes/tt_err_nested_frame_access.html
  TT_Err_Invalid_Cache_List tttypes/tt_err_invalid_cache_list.html
  TT_Err_Could_Not_Find_Context tttypes/tt_err_could_not_find_context.html
  TT_Err_UNlisted_Object tttypes/tt_err_unlisted_object.html
  TT_Err_Raster_Pool_Overflow tttypes/tt_err_raster_pool_overflow.html
  TT_Err_Raster_Negative_Height tttypes/tt_err_raster_negative_height.html
  TT_Err_Invalid_Value tttypes/tt_err_invalid_value.html
  TT_Err_Raster_Not_Initialised tttypes/tt_err_raster_not_initialised.html
  Success tttypes/success.html
  Failure tttypes/failure.html
  TError tttypes/terror.html
  TT_Int tttypes/tt_int.html
  TT_Long tttypes/tt_long.html
  TT_ULong tttypes/tt_ulong.html
  TT_Short tttypes/tt_short.html
  TT_UShort tttypes/tt_ushort.html
  TT_Fixed tttypes/tt_fixed.html
  TT_FWord tttypes/tt_fword.html
  TT_UFWord tttypes/tt_ufword.html
  TT_F2Dot14 tttypes/tt_f2dot14.html
  TT_F26Dot6 tttypes/tt_f26dot6.html
  TT_Pos tttypes/tt_pos.html
  TT_UnitVector tttypes/tt_unitvector.html
  TT_Vector tttypes/tt_vector.html
  TT_Matrix tttypes/tt_matrix.html
  TT_BBox tttypes/tt_bbox.html
  TT_Error tttypes/tt_error.html
  TT_Points_Table tttypes/tt_points_table.html
  TT_Points tttypes/tt_points.html
  TT_Coordinates tttypes/tt_coordinates.html
  TT_PCoordinates tttypes/tt_pcoordinates.html
  TT_TouchTable tttypes/tt_touchtable.html
  TT_PTouchTable tttypes/tt_ptouchtable.html
  TT_ConStarts tttypes/tt_constarts.html
  TT_PConStarts tttypes/tt_pconstarts.html
  TT_Outline tttypes/tt_outline.html
  TT_Glyph_Metrics tttypes/tt_glyph_metrics.html
  TT_Big_Glyph_Metrics tttypes/tt_big_glyph_metrics.html
  TDirectRenderingFunction tttypes/tdirectrenderingfunction.html
  TT_Instance_Metrics tttypes/tt_instance_metrics.html
  TT_Raster_Map tttypes/tt_raster_map.html
  TT_Header tttypes/tt_header.html
  TT_Horizontal_Header tttypes/tt_horizontal_header.html
  TT_Vertical_Header tttypes/tt_vertical_header.html
  TT_OS2 tttypes/tt_os2.html
  TT_Postscript tttypes/tt_postscript.html
  TT_Face_Properties tttypes/tt_face_properties.html
  TT_Stream tttypes/tt_stream.html
  TT_Face tttypes/tt_face.html
  TT_Instance tttypes/tt_instance.html
  TT_Glyph tttypes/tt_glyph.html
  TT_CharMap tttypes/tt_charmap.html
  TT_Gray_Palette tttypes/tt_gray_palette.html
  PTT_Gray_Palette tttypes/ptt_gray_palette.html
  UShort tttypes/ushort.html
  Short tttypes/short.html
  Long tttypes/long.html
  ULong tttypes/ulong.html
  Int tttypes/int.html
  TByteArray tttypes/tbytearray.html
  PByte tttypes/pbyte.html
  TShortArray tttypes/tshortarray.html
  PShort tttypes/pshort.html
  TUShortArray tttypes/tushortarray.html
  PUShort tttypes/pushort.html
  TStorage tttypes/tstorage.html
  PStorage tttypes/pstorage.html
  PLong tttypes/plong.html
  PULong tttypes/pulong.html
  TCoordinates tttypes/tcoordinates.html
  PCoordinates tttypes/pcoordinates.html
  PTouchTable tttypes/ptouchtable.html
  TVecRecord tttypes/tvecrecord.html
  TFreeTypeCustomRasterizer tttypes/tfreetypecustomrasterizer.html
   Render_Glyph tttypes/tfreetypecustomrasterizer.render_glyph.html
   Render_Gray_Glyph tttypes/tfreetypecustomrasterizer.render_gray_glyph.html
   Render_Gray_Glyph_HQ tttypes/tfreetypecustomrasterizer.render_gray_glyph_hq.html
   Render_Directly_Gray_Glyph tttypes/tfreetypecustomrasterizer.render_directly_gray_glyph.html
   Render_Directly_Gray_Glyph_HQ tttypes/tfreetypecustomrasterizer.render_directly_gray_glyph_hq.html
   Set_Raster_Palette tttypes/tfreetypecustomrasterizer.set_raster_palette.html
 TTCache ttcache/index.html
  PList_Element ttcache/plist_element.html
  TList_Element ttcache/tlist_element.html
  TSingle_List ttcache/tsingle_list.html
  TConstructor ttcache/tconstructor.html
  TDestructor ttcache/tdestructor.html
  PCache_Class ttcache/pcache_class.html
  TCache_Class ttcache/tcache_class.html
  PCache ttcache/pcache.html
  TCache ttcache/tcache.html
  Cache_Create ttcache/cache_create.html
  Cache_Destroy ttcache/cache_destroy.html
  Cache_New ttcache/cache_new.html
  Cache_Done ttcache/cache_done.html
  Element_New ttcache/element_new.html
  Element_Done ttcache/element_done.html
  TTCache_Init ttcache/ttcache_init.html
  TTCache_Done ttcache/ttcache_done.html
 TTCalc ttcalc/index.html
  Int16 ttcalc/int16.html
  Word16 ttcalc/word16.html
  Int32 ttcalc/int32.html
  Word32 ttcalc/word32.html
  MulDiv ttcalc/muldiv.html
  MulDiv_Round ttcalc/muldiv_round.html
  MulTo64 ttcalc/multo64.html
  Div64by32 ttcalc/div64by32.html
  Order64 ttcalc/order64.html
  Order32 ttcalc/order32.html
  Sqrt32 ttcalc/sqrt32.html
  Sqrt64 ttcalc/sqrt64.html
 TTCMap ttcmap/index.html
  TCMap0 ttcmap/tcmap0.html
  TCMap2SubHeader ttcmap/tcmap2subheader.html
  TCMap2SubHeaders ttcmap/tcmap2subheaders.html
  PCMap2SubHeaders ttcmap/pcmap2subheaders.html
  TCMap2 ttcmap/tcmap2.html
  TCMap4Segment ttcmap/tcmap4segment.html
  TCMap4Segments ttcmap/tcmap4segments.html
  PCMap4Segments ttcmap/pcmap4segments.html
  TCMap4 ttcmap/tcmap4.html
  TCMap6 ttcmap/tcmap6.html
  PCMapTable ttcmap/pcmaptable.html
  TCMapTable ttcmap/tcmaptable.html
  TCMapTables ttcmap/tcmaptables.html
  PCMapTables ttcmap/pcmaptables.html
  CharMap_Load ttcmap/charmap_load.html
  CharMap_Free ttcmap/charmap_free.html
  CharMap_Index ttcmap/charmap_index.html
 TTDebug ttdebug/index.html
 TTObjs ttobjs/index.html
  Default_GraphicsState ttobjs/default_graphicsstate.html
  MaxCodeRanges ttobjs/maxcoderanges.html
  TT_CodeRange_Font ttobjs/tt_coderange_font.html
  TT_CodeRange_Cvt ttobjs/tt_coderange_cvt.html
  TT_CodeRange_Glyph ttobjs/tt_coderange_glyph.html
  CvtFlag_None ttobjs/cvtflag_none.html
  CvtFlag_X ttobjs/cvtflag_x.html
  CvtFlag_Y ttobjs/cvtflag_y.html
  CvtFlag_Both ttobjs/cvtflag_both.html
  PGraphicsState ttobjs/pgraphicsstate.html
  TGraphicsState ttobjs/tgraphicsstate.html
  TCodeRange ttobjs/tcoderange.html
  PCodeRange ttobjs/pcoderange.html
  TCodeRangeTable ttobjs/tcoderangetable.html
  PDefRecord ttobjs/pdefrecord.html
  TDefRecord ttobjs/tdefrecord.html
  PDefArray ttobjs/pdefarray.html
  TDefArray ttobjs/tdefarray.html
  TCallRecord ttobjs/tcallrecord.html
  TCallStack ttobjs/tcallstack.html
  PCallStack ttobjs/pcallstack.html
  PGlyph_Zone ttobjs/pglyph_zone.html
  TGlyph_Zone ttobjs/tglyph_zone.html
  TRound_Function ttobjs/tround_function.html
  TMove_Function ttobjs/tmove_function.html
  TProject_Function ttobjs/tproject_function.html
  TFunc_Get_CVT ttobjs/tfunc_get_cvt.html
  TFunc_Set_CVT ttobjs/tfunc_set_cvt.html
  PGlyph_Transform ttobjs/pglyph_transform.html
  TGlyph_Transform ttobjs/tglyph_transform.html
  PSubglyph_Record ttobjs/psubglyph_record.html
  TSubglyph_Record ttobjs/tsubglyph_record.html
  TSubglyph_Stack ttobjs/tsubglyph_stack.html
  PSubglyph_Stack ttobjs/psubglyph_stack.html
  TIns_Metrics ttobjs/tins_metrics.html
  PFace ttobjs/pface.html
  PInstance ttobjs/pinstance.html
  PExec_Context ttobjs/pexec_context.html
 TTError tterror/index.html
  Err_Ras_None tterror/err_ras_none.html
  Err_Ras_NotIni tterror/err_ras_notini.html
  Err_Ras_Overflow tterror/err_ras_overflow.html
  Err_Ras_Neg_H tterror/err_ras_neg_h.html
  Err_Ras_Invalid tterror/err_ras_invalid.html
  Err_Ras_Invalid_Contours tterror/err_ras_invalid_contours.html
  Check_Error tterror/check_error.html
  Panic1 tterror/panic1.html
  Trace1 tterror/trace1.html
  error tterror/error.html
 TTTables tttables/index.html
  Gasp_GridFit tttables/gasp_gridfit.html
  Gasp_DoGray tttables/gasp_dogray.html
  PTTCHeader tttables/pttcheader.html
  TTTCHeader tttables/tttcheader.html
  PTableDir tttables/ptabledir.html
  TTableDir tttables/ttabledir.html
  TTableDirEntry tttables/ttabledirentry.html
  TTableDirEntries tttables/ttabledirentries.html
  PTableDirEntries tttables/ptabledirentries.html
  TCMapDir tttables/tcmapdir.html
  TCMapDirEntry tttables/tcmapdirentry.html
  TCMapDirEntries tttables/tcmapdirentries.html
  PCMapDirEntries tttables/pcmapdirentries.html
  TMaxProfile tttables/tmaxprofile.html
  TGaspRange tttables/tgasprange.html
  TGaspRanges tttables/tgaspranges.html
  PGaspRanges tttables/pgaspranges.html
  TGasp tttables/tgasp.html
  TLongMetrics tttables/tlongmetrics.html
  TTableLongMetrics tttables/ttablelongmetrics.html
  PTableLongMetrics tttables/ptablelongmetrics.html
  TShortMetrics tttables/tshortmetrics.html
  TTableShortMetrics tttables/ttableshortmetrics.html
  PTableShortMetrics tttables/ptableshortmetrics.html
  TName_Record tttables/tname_record.html
  PName_Record tttables/pname_record.html
  TName_Records tttables/tname_records.html
  PName_Records tttables/pname_records.html
  PName_Table tttables/pname_table.html
  TName_Table tttables/tname_table.html
  PHdmx_Record tttables/phdmx_record.html
  THdmx_Record tttables/thdmx_record.html
  THdmx_Records tttables/thdmx_records.html
  PHdmx_Records tttables/phdmx_records.html
  THdmx tttables/thdmx.html
 DictionaryStringList dictionarystringlist/index.html
  TDictionaryStringList dictionarystringlist/tdictionarystringlist.html
   InsertItem dictionarystringlist/tdictionarystringlist.insertitem.html
   Create dictionarystringlist/tdictionarystringlist.create.html
   Destroy dictionarystringlist/tdictionarystringlist.destroy.html
   Assign dictionarystringlist/tdictionarystringlist.assign.html
   Clear dictionarystringlist/tdictionarystringlist.clear.html
   Delete dictionarystringlist/tdictionarystringlist.delete.html
   Add dictionarystringlist/tdictionarystringlist.add.html
   AddObject dictionarystringlist/tdictionarystringlist.addobject.html
   Contains dictionarystringlist/tdictionarystringlist.contains.html
   Find dictionarystringlist/tdictionarystringlist.find.html
   IndexOf dictionarystringlist/tdictionarystringlist.indexof.html
 EasyLazFreeType easylazfreetype/index.html
  FreeTypeInformationStr easylazfreetype/freetypeinformationstr.html
  FreeTypeMinPointSize easylazfreetype/freetypeminpointsize.html
  TGlyphRenderQuality easylazfreetype/tglyphrenderquality.html
  ArrayOfSingle easylazfreetype/arrayofsingle.html
  TCharPosition easylazfreetype/tcharposition.html
  ArrayOfCharPosition easylazfreetype/arrayofcharposition.html
  TFreeTypeAlignment easylazfreetype/tfreetypealignment.html
  TFreeTypeAlignments easylazfreetype/tfreetypealignments.html
  TFreeTypeInformation easylazfreetype/tfreetypeinformation.html
  TFreeTypeStyle easylazfreetype/tfreetypestyle.html
  TFreeTypeStyles easylazfreetype/tfreetypestyles.html
  TFreeTypeWordBreakHandler easylazfreetype/tfreetypewordbreakhandler.html
  TFontCollectionItemDestroyListener easylazfreetype/tfontcollectionitemdestroylistener.html
  ArrayOfFontCollectionItemDestroyListener easylazfreetype/arrayoffontcollectionitemdestroylistener.html
  TOnRenderTextHandler easylazfreetype/tonrendertexthandler.html
  ArrayOfString easylazfreetype/arrayofstring.html
  TCustomFontCollectionItem easylazfreetype/tcustomfontcollectionitem.html
   GetBold easylazfreetype/tcustomfontcollectionitem.getbold.html
   GetInformation easylazfreetype/tcustomfontcollectionitem.getinformation.html
   GetItalic easylazfreetype/tcustomfontcollectionitem.getitalic.html
   GetStyleCount easylazfreetype/tcustomfontcollectionitem.getstylecount.html
   GetStyles easylazfreetype/tcustomfontcollectionitem.getstyles.html
   GetFilename easylazfreetype/tcustomfontcollectionitem.getfilename.html
   GetVersionNumber easylazfreetype/tcustomfontcollectionitem.getversionnumber.html
   GetStyle easylazfreetype/tcustomfontcollectionitem.getstyle.html
   NotifyDestroy easylazfreetype/tcustomfontcollectionitem.notifydestroy.html
   HasStyle easylazfreetype/tcustomfontcollectionitem.hasstyle.html
   CreateFont easylazfreetype/tcustomfontcollectionitem.createfont.html
   QueryFace easylazfreetype/tcustomfontcollectionitem.queryface.html
   ReleaseFace easylazfreetype/tcustomfontcollectionitem.releaseface.html
   Styles easylazfreetype/tcustomfontcollectionitem.styles.html
   Italic easylazfreetype/tcustomfontcollectionitem.italic.html
   Bold easylazfreetype/tcustomfontcollectionitem.bold.html
   Filename easylazfreetype/tcustomfontcollectionitem.filename.html
   Information easylazfreetype/tcustomfontcollectionitem.information.html
   VersionNumber easylazfreetype/tcustomfontcollectionitem.versionnumber.html
   Style easylazfreetype/tcustomfontcollectionitem.style.html
   StyleCount easylazfreetype/tcustomfontcollectionitem.stylecount.html
  IFreeTypeFontEnumerator easylazfreetype/ifreetypefontenumerator.html
   MoveNext easylazfreetype/ifreetypefontenumerator.movenext.html
   GetCurrent easylazfreetype/ifreetypefontenumerator.getcurrent.html
   Current easylazfreetype/ifreetypefontenumerator.current.html
  TCustomFamilyCollectionItem easylazfreetype/tcustomfamilycollectionitem.html
   GetFontByIndex easylazfreetype/tcustomfamilycollectionitem.getfontbyindex.html
   GetStyle easylazfreetype/tcustomfamilycollectionitem.getstyle.html
   GetStyles easylazfreetype/tcustomfamilycollectionitem.getstyles.html
   GetFamilyName easylazfreetype/tcustomfamilycollectionitem.getfamilyname.html
   GetFontCount easylazfreetype/tcustomfamilycollectionitem.getfontcount.html
   GetStyleCount easylazfreetype/tcustomfamilycollectionitem.getstylecount.html
   GetFont easylazfreetype/tcustomfamilycollectionitem.getfont.html
   GetFontIndex easylazfreetype/tcustomfamilycollectionitem.getfontindex.html
   HasStyle easylazfreetype/tcustomfamilycollectionitem.hasstyle.html
   FamilyName easylazfreetype/tcustomfamilycollectionitem.familyname.html
   Font easylazfreetype/tcustomfamilycollectionitem.font.html
   FontCount easylazfreetype/tcustomfamilycollectionitem.fontcount.html
   Style easylazfreetype/tcustomfamilycollectionitem.style.html
   StyleCount easylazfreetype/tcustomfamilycollectionitem.stylecount.html
   Styles easylazfreetype/tcustomfamilycollectionitem.styles.html
  IFreeTypeFamilyEnumerator easylazfreetype/ifreetypefamilyenumerator.html
   MoveNext easylazfreetype/ifreetypefamilyenumerator.movenext.html
   GetCurrent easylazfreetype/ifreetypefamilyenumerator.getcurrent.html
   Current easylazfreetype/ifreetypefamilyenumerator.current.html
  TCustomFreeTypeFontCollection easylazfreetype/tcustomfreetypefontcollection.html
   GetFont easylazfreetype/tcustomfreetypefontcollection.getfont.html
   GetFamily easylazfreetype/tcustomfreetypefontcollection.getfamily.html
   GetFamilyCount easylazfreetype/tcustomfreetypefontcollection.getfamilycount.html
   GetFontCount easylazfreetype/tcustomfreetypefontcollection.getfontcount.html
   Create easylazfreetype/tcustomfreetypefontcollection.create.html
   Clear easylazfreetype/tcustomfreetypefontcollection.clear.html
   BeginUpdate easylazfreetype/tcustomfreetypefontcollection.beginupdate.html
   AddFolder easylazfreetype/tcustomfreetypefontcollection.addfolder.html
   AddFile easylazfreetype/tcustomfreetypefontcollection.addfile.html
   AddStream easylazfreetype/tcustomfreetypefontcollection.addstream.html
   EndUpdate easylazfreetype/tcustomfreetypefontcollection.endupdate.html
   FontFileEnumerator easylazfreetype/tcustomfreetypefontcollection.fontfileenumerator.html
   FamilyEnumerator easylazfreetype/tcustomfreetypefontcollection.familyenumerator.html
   FontFileCount easylazfreetype/tcustomfreetypefontcollection.fontfilecount.html
   FontFile easylazfreetype/tcustomfreetypefontcollection.fontfile.html
   FamilyCount easylazfreetype/tcustomfreetypefontcollection.familycount.html
   Family easylazfreetype/tcustomfreetypefontcollection.family.html
  TFreeTypeRenderableFont easylazfreetype/tfreetyperenderablefont.html
   FWordBreakHandler easylazfreetype/tfreetyperenderablefont.fwordbreakhandler.html
   FOnRenderText easylazfreetype/tfreetyperenderablefont.fonrendertext.html
   GetClearType easylazfreetype/tfreetyperenderablefont.getcleartype.html
   SetClearType easylazfreetype/tfreetyperenderablefont.setcleartype.html
   GetLineFullHeight easylazfreetype/tfreetyperenderablefont.getlinefullheight.html
   GetAscent easylazfreetype/tfreetyperenderablefont.getascent.html
   GetDescent easylazfreetype/tfreetyperenderablefont.getdescent.html
   GetLineSpacing easylazfreetype/tfreetyperenderablefont.getlinespacing.html
   DefaultWordBreakHandler easylazfreetype/tfreetyperenderablefont.defaultwordbreakhandler.html
   GetHinted easylazfreetype/tfreetyperenderablefont.gethinted.html
   SetHinted easylazfreetype/tfreetyperenderablefont.sethinted.html
   UnderlineDecoration easylazfreetype/tfreetyperenderablefont.underlinedecoration.html
   StrikeOutDecoration easylazfreetype/tfreetyperenderablefont.strikeoutdecoration.html
   TextWidth easylazfreetype/tfreetyperenderablefont.textwidth.html
   TextHeight easylazfreetype/tfreetyperenderablefont.textheight.html
   CharWidthFromUnicode easylazfreetype/tfreetyperenderablefont.charwidthfromunicode.html
   SplitText easylazfreetype/tfreetyperenderablefont.splittext.html
   GetTextSize easylazfreetype/tfreetyperenderablefont.gettextsize.html
   RenderText easylazfreetype/tfreetyperenderablefont.rendertext.html
   ClearType easylazfreetype/tfreetyperenderablefont.cleartype.html
   Ascent easylazfreetype/tfreetyperenderablefont.ascent.html
   Descent easylazfreetype/tfreetyperenderablefont.descent.html
   LineSpacing easylazfreetype/tfreetyperenderablefont.linespacing.html
   LineFullHeight easylazfreetype/tfreetyperenderablefont.linefullheight.html
   Hinted easylazfreetype/tfreetyperenderablefont.hinted.html
   OnWordBreak easylazfreetype/tfreetyperenderablefont.onwordbreak.html
   OnRenderText easylazfreetype/tfreetyperenderablefont.onrendertext.html
  TFreeTypeDrawer easylazfreetype/tfreetypedrawer.html
   DrawText easylazfreetype/tfreetypedrawer.drawtext.html
   DrawTextWordBreak easylazfreetype/tfreetypedrawer.drawtextwordbreak.html
   DrawTextRect easylazfreetype/tfreetypedrawer.drawtextrect.html
  TFreeTypeFont easylazfreetype/tfreetypefont.html
   FFace easylazfreetype/tfreetypefont.fface.html
   FFaceItem easylazfreetype/tfreetypefont.ffaceitem.html
   FFaceLoaded easylazfreetype/tfreetypefont.ffaceloaded.html
   FInstance easylazfreetype/tfreetypefont.finstance.html
   FInstanceCreated easylazfreetype/tfreetypefont.finstancecreated.html
   FGlyphTable easylazfreetype/tfreetypefont.fglyphtable.html
   FCharMap easylazfreetype/tfreetypefont.fcharmap.html
   FCharmapOk easylazfreetype/tfreetypefont.fcharmapok.html
   FAscentValue easylazfreetype/tfreetypefont.fascentvalue.html
   FDescentValue easylazfreetype/tfreetypefont.fdescentvalue.html
   FLineGapValue easylazfreetype/tfreetypefont.flinegapvalue.html
   FLargeLineGapValue easylazfreetype/tfreetypefont.flargelinegapvalue.html
   GetClearType easylazfreetype/tfreetypefont.getcleartype.html
   SetClearType easylazfreetype/tfreetypefont.setcleartype.html
   GetLineFullHeight easylazfreetype/tfreetypefont.getlinefullheight.html
   GetAscent easylazfreetype/tfreetypefont.getascent.html
   GetDescent easylazfreetype/tfreetypefont.getdescent.html
   GetLineSpacing easylazfreetype/tfreetypefont.getlinespacing.html
   SetHinted easylazfreetype/tfreetypefont.sethinted.html
   GetHinted easylazfreetype/tfreetypefont.gethinted.html
   OnDestroyFontItem easylazfreetype/tfreetypefont.ondestroyfontitem.html
   FetchNames easylazfreetype/tfreetypefont.fetchnames.html
   GetCollection easylazfreetype/tfreetypefont.getcollection.html
   Quality easylazfreetype/tfreetypefont.quality.html
   SmallLinePadding easylazfreetype/tfreetypefont.smalllinepadding.html
   Create easylazfreetype/tfreetypefont.create.html
   Destroy easylazfreetype/tfreetypefont.destroy.html
   AccessFromStream easylazfreetype/tfreetypefont.accessfromstream.html
   RenderText easylazfreetype/tfreetypefont.rendertext.html
   SetNameAndStyle easylazfreetype/tfreetypefont.setnameandstyle.html
   TextWidth easylazfreetype/tfreetypefont.textwidth.html
   TextHeight easylazfreetype/tfreetypefont.textheight.html
   CharWidthFromUnicode easylazfreetype/tfreetypefont.charwidthfromunicode.html
   CharsWidth easylazfreetype/tfreetypefont.charswidth.html
   CharsPosition easylazfreetype/tfreetypefont.charsposition.html
   Name easylazfreetype/tfreetypefont.name.html
   DPI easylazfreetype/tfreetypefont.dpi.html
   SizeInPoints easylazfreetype/tfreetypefont.sizeinpoints.html
   SizeInPixels easylazfreetype/tfreetypefont.sizeinpixels.html
   Glyph easylazfreetype/tfreetypefont.glyph.html
   GlyphCount easylazfreetype/tfreetypefont.glyphcount.html
   CharIndex easylazfreetype/tfreetypefont.charindex.html
   Hinted easylazfreetype/tfreetypefont.hinted.html
   WidthFactor easylazfreetype/tfreetypefont.widthfactor.html
   LineFullHeight easylazfreetype/tfreetypefont.linefullheight.html
   Information easylazfreetype/tfreetypefont.information.html
   VersionNumber easylazfreetype/tfreetypefont.versionnumber.html
   Family easylazfreetype/tfreetypefont.family.html
   Collection easylazfreetype/tfreetypefont.collection.html
   StyleAsString easylazfreetype/tfreetypefont.styleasstring.html
   Style easylazfreetype/tfreetypefont.style.html
  TFreeTypeGlyph easylazfreetype/tfreetypeglyph.html
   Create easylazfreetype/tfreetypeglyph.create.html
   RenderDirectly easylazfreetype/tfreetypeglyph.renderdirectly.html
   Destroy easylazfreetype/tfreetypeglyph.destroy.html
   Loaded easylazfreetype/tfreetypeglyph.loaded.html
   Data easylazfreetype/tfreetypeglyph.data.html
   Index easylazfreetype/tfreetypeglyph.index.html
   Bounds easylazfreetype/tfreetypeglyph.bounds.html
   BoundsWithOffset easylazfreetype/tfreetypeglyph.boundswithoffset.html
   Advance easylazfreetype/tfreetypeglyph.advance.html
  TFreeTypeRasterMap easylazfreetype/tfreetyperastermap.html
   map easylazfreetype/tfreetyperastermap.map.html
   FRasterizer easylazfreetype/tfreetyperastermap.frasterizer.html
   GetHeight easylazfreetype/tfreetyperastermap.getheight.html
   GetWidth easylazfreetype/tfreetyperastermap.getwidth.html
   GetScanLine easylazfreetype/tfreetyperastermap.getscanline.html
   Init easylazfreetype/tfreetyperastermap.init.html
   Create easylazfreetype/tfreetyperastermap.create.html
   Clear easylazfreetype/tfreetyperastermap.clear.html
   Fill easylazfreetype/tfreetyperastermap.fill.html
   RenderGlyph easylazfreetype/tfreetyperastermap.renderglyph.html
   ScanMoveTo easylazfreetype/tfreetyperastermap.scanmoveto.html
   Destroy easylazfreetype/tfreetyperastermap.destroy.html
   Width easylazfreetype/tfreetyperastermap.width.html
   Height easylazfreetype/tfreetyperastermap.height.html
   ScanLine easylazfreetype/tfreetyperastermap.scanline.html
  TFreeTypeMonochromeMap easylazfreetype/tfreetypemonochromemap.html
   Init easylazfreetype/tfreetypemonochromemap.init.html
   RenderGlyph easylazfreetype/tfreetypemonochromemap.renderglyph.html
   ScanMoveTo easylazfreetype/tfreetypemonochromemap.scanmoveto.html
   ScanNextPixel easylazfreetype/tfreetypemonochromemap.scannextpixel.html
   GetPixel easylazfreetype/tfreetypemonochromemap.getpixel.html
   SetPixel easylazfreetype/tfreetypemonochromemap.setpixel.html
   GetPixelsInRect easylazfreetype/tfreetypemonochromemap.getpixelsinrect.html
   GetPixelsInHorizline easylazfreetype/tfreetypemonochromemap.getpixelsinhorizline.html
   TogglePixel easylazfreetype/tfreetypemonochromemap.togglepixel.html
  TFreeTypeGrayscaleMap easylazfreetype/tfreetypegrayscalemap.html
   Init easylazfreetype/tfreetypegrayscalemap.init.html
   RenderQuality easylazfreetype/tfreetypegrayscalemap.renderquality.html
   RenderGlyph easylazfreetype/tfreetypegrayscalemap.renderglyph.html
   ScanMoveTo easylazfreetype/tfreetypegrayscalemap.scanmoveto.html
   ScanNextPixel easylazfreetype/tfreetypegrayscalemap.scannextpixel.html
   GetPixel easylazfreetype/tfreetypegrayscalemap.getpixel.html
   SetPixel easylazfreetype/tfreetypegrayscalemap.setpixel.html
   XorPixel easylazfreetype/tfreetypegrayscalemap.xorpixel.html
  StylesToArray easylazfreetype/stylestoarray.html
  FontCollection easylazfreetype/fontcollection.html
 TTRASTER ttraster/index.html
  Function_Sweep_Init ttraster/function_sweep_init.html
  Function_Sweep_Span ttraster/function_sweep_span.html
  Function_Sweep_Step ttraster/function_sweep_step.html
  TFreeTypeRasterizer ttraster/tfreetyperasterizer.html
   Render_Glyph ttraster/tfreetyperasterizer.render_glyph.html
   Render_Gray_Glyph ttraster/tfreetyperasterizer.render_gray_glyph.html
   Render_Gray_Glyph_HQ ttraster/tfreetyperasterizer.render_gray_glyph_hq.html
   Render_Directly_Gray_Glyph ttraster/tfreetyperasterizer.render_directly_gray_glyph.html
   Render_Directly_Gray_Glyph_HQ ttraster/tfreetyperasterizer.render_directly_gray_glyph_hq.html
   Set_Raster_Palette ttraster/tfreetyperasterizer.set_raster_palette.html
   Create ttraster/tfreetyperasterizer.create.html
   Destroy ttraster/tfreetyperasterizer.destroy.html
  IncludeFullGrainMin ttraster/includefullgrainmin.html
  IncludeFullGrainMax ttraster/includefullgrainmax.html
  TTRaster_Init ttraster/ttraster_init.html
  TTRaster_Done ttraster/ttraster_done.html
  TTGetDefaultRasterizer ttraster/ttgetdefaultrasterizer.html
 TTProfile ttprofile/index.html
  PoolMaxCapacity ttprofile/poolmaxcapacity.html
  PoolIdleCapacity ttprofile/poolidlecapacity.html
  TCurveDirection ttprofile/tcurvedirection.html
  TPoint ttprofile/tpoint.html
  TBezierStack ttprofile/tbezierstack.html
  PBezierStack ttprofile/pbezierstack.html
  TRenderPool ttprofile/trenderpool.html
   Precision ttprofile/trenderpool.precision.html
   PrecisionHalf ttprofile/trenderpool.precisionhalf.html
   BezierPrecision ttprofile/trenderpool.bezierprecision.html
   BoundsMinY ttprofile/trenderpool.boundsminy.html
   BoundsMaxY ttprofile/trenderpool.boundsmaxy.html
   scaleShift ttprofile/trenderpool.scaleshift.html
   Bezier_Down ttprofile/trenderpool.bezier_down.html
   Bezier_State ttprofile/trenderpool.bezier_state.html
   Bezier_To ttprofile/trenderpool.bezier_to.html
   Bezier_Up ttprofile/trenderpool.bezier_up.html
   CEILING ttprofile/trenderpool.ceiling.html
   DecomposeCurve ttprofile/trenderpool.decomposecurve.html
   FLOOR ttprofile/trenderpool.floor.html
   FRAC ttprofile/trenderpool.frac.html
   GetCapacity ttprofile/trenderpool.getcapacity.html
   Line_Down ttprofile/trenderpool.line_down.html
   Line_To ttprofile/trenderpool.line_to.html
   Line_Up ttprofile/trenderpool.line_up.html
   Move_To ttprofile/trenderpool.move_to.html
   PushBezier ttprofile/trenderpool.pushbezier.html
   SCALED ttprofile/trenderpool.scaled.html
   Split_Bezier ttprofile/trenderpool.split_bezier.html
   TRUNC ttprofile/trenderpool.trunc.html
   RequireCapacity ttprofile/trenderpool.requirecapacity.html
   PushValue ttprofile/trenderpool.pushvalue.html
   Capacity ttprofile/trenderpool.capacity.html
   Joint ttprofile/trenderpool.joint.html
   Fresh ttprofile/trenderpool.fresh.html
   cProfile ttprofile/trenderpool.cprofile.html
   ProfileColl ttprofile/trenderpool.profilecoll.html
   LastX ttprofile/trenderpool.lastx.html
   LastY ttprofile/trenderpool.lasty.html
   CurveDir ttprofile/trenderpool.curvedir.html
   Arcs ttprofile/trenderpool.arcs.html
   CurArc ttprofile/trenderpool.curarc.html
   data ttprofile/trenderpool.data.html
   position ttprofile/trenderpool.position.html
   Create ttprofile/trenderpool.create.html
   Destroy ttprofile/trenderpool.destroy.html
   SetPrecision ttprofile/trenderpool.setprecision.html
   SetBounds ttprofile/trenderpool.setbounds.html
   SetScaleShift ttprofile/trenderpool.setscaleshift.html
   Clear ttprofile/trenderpool.clear.html
   ReduceCapacity ttprofile/trenderpool.reducecapacity.html
   Convert_Glyph ttprofile/trenderpool.convert_glyph.html
  TProfile ttprofile/tprofile.html
   Pool ttprofile/tprofile.pool.html
   Flow ttprofile/tprofile.flow.html
   Height ttprofile/tprofile.height.html
   Start ttprofile/tprofile.start.html
   Offset ttprofile/tprofile.offset.html
   X ttprofile/tprofile.x.html
   nextInContour ttprofile/tprofile.nextincontour.html
   nextInColl ttprofile/tprofile.nextincoll.html
   nextInList ttprofile/tprofile.nextinlist.html
   prevInList ttprofile/tprofile.previnlist.html
   Create ttprofile/tprofile.create.html
  TProfileCollection ttprofile/tprofilecollection.html
   Remove_Profile ttprofile/tprofilecollection.remove_profile.html
   Pool ttprofile/tprofilecollection.pool.html
   prevProfile ttprofile/tprofilecollection.prevprofile.html
   fProfile ttprofile/tprofilecollection.fprofile.html
   gProfile ttprofile/tprofilecollection.gprofile.html
   nProfs ttprofile/tprofilecollection.nprofs.html
   Create ttprofile/tprofilecollection.create.html
   Clear ttprofile/tprofilecollection.clear.html
   New_Profile ttprofile/tprofilecollection.new_profile.html
   End_Profile ttprofile/tprofilecollection.end_profile.html
   Destroy ttprofile/tprofilecollection.destroy.html
  ProfileList_Init ttprofile/profilelist_init.html
  ProfileList_InsertFirstElement ttprofile/profilelist_insertfirstelement.html
  ProfileList_AppendToList ttprofile/profilelist_appendtolist.html
  ProfileList_Remove ttprofile/profilelist_remove.html
  ProfileList_SortByX ttprofile/profilelist_sortbyx.html
  ProfileList_SortByStart ttprofile/profilelist_sortbystart.html
  ProfileList_Count ttprofile/profilelist_count.html
  ProfileList_Split ttprofile/profilelist_split.html
 laz2_xpath laz2_xpath/index.html
  TXPathToken laz2_xpath/txpathtoken.html
  TXPathKeyword laz2_xpath/txpathkeyword.html
  TXPathNodeArray laz2_xpath/txpathnodearray.html
  TXPathMathOp laz2_xpath/txpathmathop.html
  TXPathCompareOp laz2_xpath/txpathcompareop.html
  TXPathBooleanOp laz2_xpath/txpathbooleanop.html
  TNodeSet laz2_xpath/tnodeset.html
  TAxis laz2_xpath/taxis.html
  TNodeTestType laz2_xpath/tnodetesttype.html
  TXPathNSResolver laz2_xpath/txpathnsresolver.html
  TXPathVarList laz2_xpath/txpathvarlist.html
  TXPathFunction laz2_xpath/txpathfunction.html
  TXPathExprNode laz2_xpath/txpathexprnode.html
   EvalPredicate laz2_xpath/txpathexprnode.evalpredicate.html
   Evaluate laz2_xpath/txpathexprnode.evaluate.html
  TXPathConstantNode laz2_xpath/txpathconstantnode.html
   Create laz2_xpath/txpathconstantnode.create.html
   Destroy laz2_xpath/txpathconstantnode.destroy.html
   Evaluate laz2_xpath/txpathconstantnode.evaluate.html
  TXPathVariableNode laz2_xpath/txpathvariablenode.html
   Create laz2_xpath/txpathvariablenode.create.html
   Evaluate laz2_xpath/txpathvariablenode.evaluate.html
  TXPathFunctionNode laz2_xpath/txpathfunctionnode.html
   Create laz2_xpath/txpathfunctionnode.create.html
   Destroy laz2_xpath/txpathfunctionnode.destroy.html
   Evaluate laz2_xpath/txpathfunctionnode.evaluate.html
  TXPathNegationNode laz2_xpath/txpathnegationnode.html
   Create laz2_xpath/txpathnegationnode.create.html
   Destroy laz2_xpath/txpathnegationnode.destroy.html
   Evaluate laz2_xpath/txpathnegationnode.evaluate.html
  TXPathBinaryNode laz2_xpath/txpathbinarynode.html
   FOperand1 laz2_xpath/txpathbinarynode.foperand1.html
   FOperand2 laz2_xpath/txpathbinarynode.foperand2.html
   Destroy laz2_xpath/txpathbinarynode.destroy.html
  TXPathMathOpNode laz2_xpath/txpathmathopnode.html
   Create laz2_xpath/txpathmathopnode.create.html
   Evaluate laz2_xpath/txpathmathopnode.evaluate.html
  TXPathCompareNode laz2_xpath/txpathcomparenode.html
   Create laz2_xpath/txpathcomparenode.create.html
   Evaluate laz2_xpath/txpathcomparenode.evaluate.html
  TXPathBooleanOpNode laz2_xpath/txpathbooleanopnode.html
   Create laz2_xpath/txpathbooleanopnode.create.html
   Evaluate laz2_xpath/txpathbooleanopnode.evaluate.html
  TXPathUnionNode laz2_xpath/txpathunionnode.html
   Create laz2_xpath/txpathunionnode.create.html
   Evaluate laz2_xpath/txpathunionnode.evaluate.html
  TXPathFilterNode laz2_xpath/txpathfilternode.html
   Create laz2_xpath/txpathfilternode.create.html
   Destroy laz2_xpath/txpathfilternode.destroy.html
   Evaluate laz2_xpath/txpathfilternode.evaluate.html
  TStep laz2_xpath/tstep.html
   Axis laz2_xpath/tstep.axis.html
   NodeTestType laz2_xpath/tstep.nodetesttype.html
   NodeTestString laz2_xpath/tstep.nodeteststring.html
   NSTestString laz2_xpath/tstep.nsteststring.html
   Create laz2_xpath/tstep.create.html
   Evaluate laz2_xpath/tstep.evaluate.html
  EXPathEvaluationError laz2_xpath/expathevaluationerror.html
  TXPathVariable laz2_xpath/txpathvariable.html
   FRefCount laz2_xpath/txpathvariable.frefcount.html
   Error laz2_xpath/txpathvariable.error.html
   TypeName laz2_xpath/txpathvariable.typename.html
   Release laz2_xpath/txpathvariable.release.html
   AsNodeSet laz2_xpath/txpathvariable.asnodeset.html
   AsBoolean laz2_xpath/txpathvariable.asboolean.html
   AsNumber laz2_xpath/txpathvariable.asnumber.html
   AsText laz2_xpath/txpathvariable.astext.html
  TXPathNodeSetVariable laz2_xpath/txpathnodesetvariable.html
   Create laz2_xpath/txpathnodesetvariable.create.html
   Destroy laz2_xpath/txpathnodesetvariable.destroy.html
   TypeName laz2_xpath/txpathnodesetvariable.typename.html
   AsNodeSet laz2_xpath/txpathnodesetvariable.asnodeset.html
   AsText laz2_xpath/txpathnodesetvariable.astext.html
   AsBoolean laz2_xpath/txpathnodesetvariable.asboolean.html
   AsNumber laz2_xpath/txpathnodesetvariable.asnumber.html
   Value laz2_xpath/txpathnodesetvariable.value.html
  TXPathBooleanVariable laz2_xpath/txpathbooleanvariable.html
   Create laz2_xpath/txpathbooleanvariable.create.html
   TypeName laz2_xpath/txpathbooleanvariable.typename.html
   AsBoolean laz2_xpath/txpathbooleanvariable.asboolean.html
   AsNumber laz2_xpath/txpathbooleanvariable.asnumber.html
   AsText laz2_xpath/txpathbooleanvariable.astext.html
   Value laz2_xpath/txpathbooleanvariable.value.html
  TXPathNumberVariable laz2_xpath/txpathnumbervariable.html
   Create laz2_xpath/txpathnumbervariable.create.html
   TypeName laz2_xpath/txpathnumbervariable.typename.html
   AsBoolean laz2_xpath/txpathnumbervariable.asboolean.html
   AsNumber laz2_xpath/txpathnumbervariable.asnumber.html
   AsText laz2_xpath/txpathnumbervariable.astext.html
   Value laz2_xpath/txpathnumbervariable.value.html
  TXPathStringVariable laz2_xpath/txpathstringvariable.html
   Create laz2_xpath/txpathstringvariable.create.html
   TypeName laz2_xpath/txpathstringvariable.typename.html
   AsBoolean laz2_xpath/txpathstringvariable.asboolean.html
   AsNumber laz2_xpath/txpathstringvariable.asnumber.html
   AsText laz2_xpath/txpathstringvariable.astext.html
   Value laz2_xpath/txpathstringvariable.value.html
  TXPathScanner laz2_xpath/txpathscanner.html
   Create laz2_xpath/txpathscanner.create.html
   NextToken laz2_xpath/txpathscanner.nexttoken.html
   PeekToken laz2_xpath/txpathscanner.peektoken.html
   SkipToken laz2_xpath/txpathscanner.skiptoken.html
   CurToken laz2_xpath/txpathscanner.curtoken.html
   CurTokenString laz2_xpath/txpathscanner.curtokenstring.html
  TXPathContext laz2_xpath/txpathcontext.html
   ContextNode laz2_xpath/txpathcontext.contextnode.html
   ContextPosition laz2_xpath/txpathcontext.contextposition.html
   ContextSize laz2_xpath/txpathcontext.contextsize.html
   Create laz2_xpath/txpathcontext.create.html
  TXPathEnvironment laz2_xpath/txpathenvironment.html
   xpLast laz2_xpath/txpathenvironment.xplast.html
   xpPosition laz2_xpath/txpathenvironment.xpposition.html
   xpCount laz2_xpath/txpathenvironment.xpcount.html
   xpId laz2_xpath/txpathenvironment.xpid.html
   xpLocalName laz2_xpath/txpathenvironment.xplocalname.html
   xpNamespaceURI laz2_xpath/txpathenvironment.xpnamespaceuri.html
   xpName laz2_xpath/txpathenvironment.xpname.html
   xpString laz2_xpath/txpathenvironment.xpstring.html
   xpConcat laz2_xpath/txpathenvironment.xpconcat.html
   xpStartsWith laz2_xpath/txpathenvironment.xpstartswith.html
   xpContains laz2_xpath/txpathenvironment.xpcontains.html
   xpSubstringBefore laz2_xpath/txpathenvironment.xpsubstringbefore.html
   xpSubstringAfter laz2_xpath/txpathenvironment.xpsubstringafter.html
   xpSubstring laz2_xpath/txpathenvironment.xpsubstring.html
   xpStringLength laz2_xpath/txpathenvironment.xpstringlength.html
   xpNormalizeSpace laz2_xpath/txpathenvironment.xpnormalizespace.html
   xpTranslate laz2_xpath/txpathenvironment.xptranslate.html
   xpBoolean laz2_xpath/txpathenvironment.xpboolean.html
   xpNot laz2_xpath/txpathenvironment.xpnot.html
   xpTrue laz2_xpath/txpathenvironment.xptrue.html
   xpFalse laz2_xpath/txpathenvironment.xpfalse.html
   xpLang laz2_xpath/txpathenvironment.xplang.html
   xpNumber laz2_xpath/txpathenvironment.xpnumber.html
   xpSum laz2_xpath/txpathenvironment.xpsum.html
   xpFloor laz2_xpath/txpathenvironment.xpfloor.html
   xpCeiling laz2_xpath/txpathenvironment.xpceiling.html
   xpRound laz2_xpath/txpathenvironment.xpround.html
   Create laz2_xpath/txpathenvironment.create.html
   Destroy laz2_xpath/txpathenvironment.destroy.html
   GetFunctionIndex laz2_xpath/txpathenvironment.getfunctionindex.html
   GetVariableIndex laz2_xpath/txpathenvironment.getvariableindex.html
   AddFunction laz2_xpath/txpathenvironment.addfunction.html
   AddVariable laz2_xpath/txpathenvironment.addvariable.html
   RemoveFunction laz2_xpath/txpathenvironment.removefunction.html
   RemoveVariable laz2_xpath/txpathenvironment.removevariable.html
   FunctionCount laz2_xpath/txpathenvironment.functioncount.html
   VariableCount laz2_xpath/txpathenvironment.variablecount.html
   Functions laz2_xpath/txpathenvironment.functions.html
   FunctionsByName laz2_xpath/txpathenvironment.functionsbyname.html
   Variables laz2_xpath/txpathenvironment.variables.html
   VariablesByName laz2_xpath/txpathenvironment.variablesbyname.html
  TXPathExpression laz2_xpath/txpathexpression.html
   Create laz2_xpath/txpathexpression.create.html
   Destroy laz2_xpath/txpathexpression.destroy.html
   Evaluate laz2_xpath/txpathexpression.evaluate.html
  EvaluationError laz2_xpath/evaluationerror.html
  EvaluateXPathExpression laz2_xpath/evaluatexpathexpression.html
 LazConfigStorage lazconfigstorage/index.html
  ConfigMemStorageFormatVersion lazconfigstorage/configmemstorageformatversion.html
  TConfigStorageClass lazconfigstorage/tconfigstorageclass.html
  TConfigMemStorageModification lazconfigstorage/tconfigmemstoragemodification.html
  TConfigStorage lazconfigstorage/tconfigstorage.html
   GetFullPathValue lazconfigstorage/tconfigstorage.getfullpathvalue.html
   SetFullPathValue lazconfigstorage/tconfigstorage.setfullpathvalue.html
   SetDeleteFullPathValue lazconfigstorage/tconfigstorage.setdeletefullpathvalue.html
   DeleteFullPath lazconfigstorage/tconfigstorage.deletefullpath.html
   DeleteFullPathValue lazconfigstorage/tconfigstorage.deletefullpathvalue.html
   WriteProperty lazconfigstorage/tconfigstorage.writeproperty.html
   ReadProperty lazconfigstorage/tconfigstorage.readproperty.html
   Create lazconfigstorage/tconfigstorage.create.html
   Destroy lazconfigstorage/tconfigstorage.destroy.html
   Clear lazconfigstorage/tconfigstorage.clear.html
   GetValue lazconfigstorage/tconfigstorage.getvalue.html
   SetValue lazconfigstorage/tconfigstorage.setvalue.html
   SetDeleteValue lazconfigstorage/tconfigstorage.setdeletevalue.html
   DeletePath lazconfigstorage/tconfigstorage.deletepath.html
   DeleteValue lazconfigstorage/tconfigstorage.deletevalue.html
   CurrentBasePath lazconfigstorage/tconfigstorage.currentbasepath.html
   ExtendPath lazconfigstorage/tconfigstorage.extendpath.html
   AppendBasePath lazconfigstorage/tconfigstorage.appendbasepath.html
   UndoAppendBasePath lazconfigstorage/tconfigstorage.undoappendbasepath.html
   WriteToDisk lazconfigstorage/tconfigstorage.writetodisk.html
   GetFilename lazconfigstorage/tconfigstorage.getfilename.html
   WriteObject lazconfigstorage/tconfigstorage.writeobject.html
   ReadObject lazconfigstorage/tconfigstorage.readobject.html
  TConfigMemStorageNode lazconfigstorage/tconfigmemstoragenode.html
   Name lazconfigstorage/tconfigmemstoragenode.name.html
   Value lazconfigstorage/tconfigmemstoragenode.value.html
   Parent lazconfigstorage/tconfigmemstoragenode.parent.html
   Children lazconfigstorage/tconfigmemstoragenode.children.html
   ClearChilds lazconfigstorage/tconfigmemstoragenode.clearchilds.html
   Create lazconfigstorage/tconfigmemstoragenode.create.html
   Destroy lazconfigstorage/tconfigmemstoragenode.destroy.html
  TConfigMemStorage lazconfigstorage/tconfigmemstorage.html
   DeleteFullPath lazconfigstorage/tconfigmemstorage.deletefullpath.html
   DeleteFullPathValue lazconfigstorage/tconfigmemstorage.deletefullpathvalue.html
   GetFullPathValue lazconfigstorage/tconfigmemstorage.getfullpathvalue.html
   SetDeleteFullPathValue lazconfigstorage/tconfigmemstorage.setdeletefullpathvalue.html
   SetFullPathValue lazconfigstorage/tconfigmemstorage.setfullpathvalue.html
   Root lazconfigstorage/tconfigmemstorage.root.html
   GetFilename lazconfigstorage/tconfigmemstorage.getfilename.html
   WriteToDisk lazconfigstorage/tconfigmemstorage.writetodisk.html
   Destroy lazconfigstorage/tconfigmemstorage.destroy.html
   Clear lazconfigstorage/tconfigmemstorage.clear.html
   SaveToConfig lazconfigstorage/tconfigmemstorage.savetoconfig.html
   LoadFromConfig lazconfigstorage/tconfigmemstorage.loadfromconfig.html
   WriteDebugReport lazconfigstorage/tconfigmemstorage.writedebugreport.html
  LoadStringToStringTree lazconfigstorage/loadstringtostringtree.html
  SaveStringToStringTree lazconfigstorage/savestringtostringtree.html
  CompareConfigMemStorageNames lazconfigstorage/compareconfigmemstoragenames.html
  CompareConfigMemStorageNodes lazconfigstorage/compareconfigmemstoragenodes.html
  ComparePCharWithConfigMemStorageNode lazconfigstorage/comparepcharwithconfigmemstoragenode.html
 LazFreeTypeFontCollection lazfreetypefontcollection/index.html
  TFontCollectionItem lazfreetypefontcollection/tfontcollectionitem.html
   GetFilename lazfreetypefontcollection/tfontcollectionitem.getfilename.html
   GetBold lazfreetypefontcollection/tfontcollectionitem.getbold.html
   GetInformation lazfreetypefontcollection/tfontcollectionitem.getinformation.html
   GetItalic lazfreetypefontcollection/tfontcollectionitem.getitalic.html
   GetStyleCount lazfreetypefontcollection/tfontcollectionitem.getstylecount.html
   GetStyles lazfreetypefontcollection/tfontcollectionitem.getstyles.html
   GetStyle lazfreetypefontcollection/tfontcollectionitem.getstyle.html
   GetVersionNumber lazfreetypefontcollection/tfontcollectionitem.getversionnumber.html
   NotifyDestroy lazfreetypefontcollection/tfontcollectionitem.notifydestroy.html
   Init lazfreetypefontcollection/tfontcollectionitem.init.html
   Create lazfreetypefontcollection/tfontcollectionitem.create.html
   Destroy lazfreetypefontcollection/tfontcollectionitem.destroy.html
   HasStyle lazfreetypefontcollection/tfontcollectionitem.hasstyle.html
   Information lazfreetypefontcollection/tfontcollectionitem.information.html
   VersionNumber lazfreetypefontcollection/tfontcollectionitem.versionnumber.html
   CreateFont lazfreetypefontcollection/tfontcollectionitem.createfont.html
   QueryFace lazfreetypefontcollection/tfontcollectionitem.queryface.html
   ReleaseFace lazfreetypefontcollection/tfontcollectionitem.releaseface.html
   UsePostscriptStyle lazfreetypefontcollection/tfontcollectionitem.usepostscriptstyle.html
  TFamilyCollectionItem lazfreetypefontcollection/tfamilycollectionitem.html
   GetFontByIndex lazfreetypefontcollection/tfamilycollectionitem.getfontbyindex.html
   GetFontByStyles lazfreetypefontcollection/tfamilycollectionitem.getfontbystyles.html
   GetFontIndexByStyles lazfreetypefontcollection/tfamilycollectionitem.getfontindexbystyles.html
   GetStyle lazfreetypefontcollection/tfamilycollectionitem.getstyle.html
   AddStyle lazfreetypefontcollection/tfamilycollectionitem.addstyle.html
   GetStyles lazfreetypefontcollection/tfamilycollectionitem.getstyles.html
   GetFamilyName lazfreetypefontcollection/tfamilycollectionitem.getfamilyname.html
   GetFontCount lazfreetypefontcollection/tfamilycollectionitem.getfontcount.html
   GetStyleCount lazfreetypefontcollection/tfamilycollectionitem.getstylecount.html
   Create lazfreetypefontcollection/tfamilycollectionitem.create.html
   AddFont lazfreetypefontcollection/tfamilycollectionitem.addfont.html
   GetFont lazfreetypefontcollection/tfamilycollectionitem.getfont.html
   GetFontIndex lazfreetypefontcollection/tfamilycollectionitem.getfontindex.html
   HasStyle lazfreetypefontcollection/tfamilycollectionitem.hasstyle.html
  TFreeTypeFontCollection lazfreetypefontcollection/tfreetypefontcollection.html
   GetFont lazfreetypefontcollection/tfreetypefontcollection.getfont.html
   GetFamily lazfreetypefontcollection/tfreetypefontcollection.getfamily.html
   GetFamilyCount lazfreetypefontcollection/tfreetypefontcollection.getfamilycount.html
   GetFontCount lazfreetypefontcollection/tfreetypefontcollection.getfontcount.html
   Create lazfreetypefontcollection/tfreetypefontcollection.create.html
   Clear lazfreetypefontcollection/tfreetypefontcollection.clear.html
   BeginUpdate lazfreetypefontcollection/tfreetypefontcollection.beginupdate.html
   AddFolder lazfreetypefontcollection/tfreetypefontcollection.addfolder.html
   AddFile lazfreetypefontcollection/tfreetypefontcollection.addfile.html
   AddStream lazfreetypefontcollection/tfreetypefontcollection.addstream.html
   EndUpdate lazfreetypefontcollection/tfreetypefontcollection.endupdate.html
   Destroy lazfreetypefontcollection/tfreetypefontcollection.destroy.html
   FontFileEnumerator lazfreetypefontcollection/tfreetypefontcollection.fontfileenumerator.html
   FamilyEnumerator lazfreetypefontcollection/tfreetypefontcollection.familyenumerator.html
  SetDefaultFreeTypeFontCollection lazfreetypefontcollection/setdefaultfreetypefontcollection.html
 LazLoggerDummy lazloggerdummy/index.html
  TLazLoggerLogGroupFlag lazloggerdummy/tlazloggerloggroupflag.html
  TLazLoggerLogGroupFlags lazloggerdummy/tlazloggerloggroupflags.html
  TLazLoggerLogGroup lazloggerdummy/tlazloggerloggroup.html
  PLazLoggerLogGroup lazloggerdummy/plazloggerloggroup.html
  TLazLoggerWriteEvent lazloggerdummy/tlazloggerwriteevent.html
  TLazDebugLoggerCreator lazloggerdummy/tlazdebugloggercreator.html
  TLazLoggerLogGroupList lazloggerdummy/tlazloggerloggrouplist.html
   Assign lazloggerdummy/tlazloggerloggrouplist.assign.html
   IndexOf lazloggerdummy/tlazloggerloggrouplist.indexof.html
   Find lazloggerdummy/tlazloggerloggrouplist.find.html
   Count lazloggerdummy/tlazloggerloggrouplist.count.html
   Item lazloggerdummy/tlazloggerloggrouplist.item.html
  TLazLogger lazloggerdummy/tlazlogger.html
   Assign lazloggerdummy/tlazlogger.assign.html
   Init lazloggerdummy/tlazlogger.init.html
   Finish lazloggerdummy/tlazlogger.finish.html
   NestLvlIndent lazloggerdummy/tlazlogger.nestlvlindent.html
   MaxNestPrefixLen lazloggerdummy/tlazlogger.maxnestprefixlen.html
   RegisterLogGroup lazloggerdummy/tlazlogger.registerloggroup.html
   FindOrRegisterLogGroup lazloggerdummy/tlazlogger.findorregisterloggroup.html
   LogGroupList lazloggerdummy/tlazlogger.loggrouplist.html
   UseGlobalLogGroupList lazloggerdummy/tlazlogger.usegloballoggrouplist.html
   DebuglnStack lazloggerdummy/tlazlogger.debuglnstack.html
   DbgOut lazloggerdummy/tlazlogger.dbgout.html
   DebugLn lazloggerdummy/tlazlogger.debugln.html
   DebugLnEnter lazloggerdummy/tlazlogger.debuglnenter.html
   DebugLnExit lazloggerdummy/tlazlogger.debuglnexit.html
  DebuglnStack lazloggerdummy/debuglnstack.html
  DbgOut lazloggerdummy/dbgout.html
  DebugLn lazloggerdummy/debugln.html
  DebugLnEnter lazloggerdummy/debuglnenter.html
  DebugLnExit lazloggerdummy/debuglnexit.html
  DbgS lazloggerdummy/dbgs.html
  DbgSJoin lazloggerdummy/dbgsjoin.html
  DbgSName lazloggerdummy/dbgsname.html
  dbgObjMem lazloggerdummy/dbgobjmem.html
  dbghex lazloggerdummy/dbghex.html
  dbgMemRange lazloggerdummy/dbgmemrange.html
  dbgMemStream lazloggerdummy/dbgmemstream.html
  GetDebugLoggerGroups lazloggerdummy/getdebugloggergroups.html
  SetDebugLoggerGroups lazloggerdummy/setdebugloggergroups.html
  GetDebugLogger lazloggerdummy/getdebuglogger.html
  GetExistingDebugLogger lazloggerdummy/getexistingdebuglogger.html
  SetDebugLogger lazloggerdummy/setdebuglogger.html
  RecreateDebugLogger lazloggerdummy/recreatedebuglogger.html
  LazDebugLoggerCreator lazloggerdummy/lazdebugloggercreator.html
  OnWidgetSetDebugLn lazloggerdummy/onwidgetsetdebugln.html
  OnWidgetSetDbgOut lazloggerdummy/onwidgetsetdbgout.html
 TTFile ttfile/index.html
  TFreeTypeStream ttfile/tfreetypestream.html
   Create ttfile/tfreetypestream.create.html
   Destroy ttfile/tfreetypestream.destroy.html
   Activate ttfile/tfreetypestream.activate.html
   Deactivate ttfile/tfreetypestream.deactivate.html
   SeekFile ttfile/tfreetypestream.seekfile.html
   SkipFile ttfile/tfreetypestream.skipfile.html
   ReadFile ttfile/tfreetypestream.readfile.html
   ReadAtFile ttfile/tfreetypestream.readatfile.html
   AccessFrame ttfile/tfreetypestream.accessframe.html
   CheckAndAccessFrame ttfile/tfreetypestream.checkandaccessframe.html
   ForgetFrame ttfile/tfreetypestream.forgetframe.html
   GET_Byte ttfile/tfreetypestream.get_byte.html
   GET_Char ttfile/tfreetypestream.get_char.html
   GET_Short ttfile/tfreetypestream.get_short.html
   GET_UShort ttfile/tfreetypestream.get_ushort.html
   GET_Long ttfile/tfreetypestream.get_long.html
   GET_ULong ttfile/tfreetypestream.get_ulong.html
   GET_Tag4 ttfile/tfreetypestream.get_tag4.html
   Open ttfile/tfreetypestream.open.html
   Name ttfile/tfreetypestream.name.html
   Base ttfile/tfreetypestream.base.html
   Position ttfile/tfreetypestream.position.html
   Used ttfile/tfreetypestream.used.html
  TTFile_Init ttfile/ttfile_init.html
  TTFile_Done ttfile/ttfile_done.html
  TT_Open_Stream ttfile/tt_open_stream.html
  TT_Close_Stream ttfile/tt_close_stream.html
  TT_Use_Stream ttfile/tt_use_stream.html
  TT_Flush_Stream ttfile/tt_flush_stream.html
  TT_Done_Stream ttfile/tt_done_stream.html
  TT_Stream_Size ttfile/tt_stream_size.html
 TTGLoad ttgload/index.html
  Load_TrueType_Glyph ttgload/load_truetype_glyph.html
  TT_Get_Metrics ttgload/tt_get_metrics.html
  Get_Advance_Widths ttgload/get_advance_widths.html
 TTInterp ttinterp/index.html
  Run_Ins ttinterp/run_ins.html
 TTLoad ttload/index.html
  LookUp_TrueType_Table ttload/lookup_truetype_table.html
  Load_TrueType_Directory ttload/load_truetype_directory.html
  Load_TrueType_MaxProfile ttload/load_truetype_maxprofile.html
  Load_TrueType_Header ttload/load_truetype_header.html
  Load_TrueType_Locations ttload/load_truetype_locations.html
  Load_TrueType_CVT ttload/load_truetype_cvt.html
  Load_TrueType_CMap ttload/load_truetype_cmap.html
  Load_TrueType_Gasp ttload/load_truetype_gasp.html
  Load_TrueType_Names ttload/load_truetype_names.html
  Load_TrueType_Programs ttload/load_truetype_programs.html
  Load_trueType_Postscript ttload/load_truetype_postscript.html
  Load_TrueType_OS2 ttload/load_truetype_os2.html
  Load_TrueType_HDMX ttload/load_truetype_hdmx.html
  Load_TrueType_Metrics_Header ttload/load_truetype_metrics_header.html
  Load_TrueType_Any ttload/load_truetype_any.html
 TTMemory ttmemory/index.html
  Font_Pool_Allocated ttmemory/font_pool_allocated.html
  TMarkRecord ttmemory/tmarkrecord.html
  Alloc ttmemory/alloc.html
  Free ttmemory/free.html
  TTMemory_Init ttmemory/ttmemory_init.html
  TTMemory_Done ttmemory/ttmemory_done.html

:classes
#lazutils.LazMethodList.TMethodList #rtl.System.TObject
1VFItems
1VFCount
1MGetItems
1MSetItems
3MDestroy
3MCount
3MNextDownIndex
3MIndexOf
3MDelete
3MRemove
3MAdd
3MInsert
3MMove
3MRemoveAllMethodsOfObject
3MCallNotifyEvents
3PItems rw
#lazutils.AvgLvlTree.TAvgLvlTreeNode #rtl.System.TObject
3VParent
3VLeft
3VRight
3VBalance
3VData
3MSuccessor
3MPrecessor
3MTreeDepth
3MConsistencyCheck
3MGetCount
#lazutils.AvgLvlTree.TAvgLvlTreeNodeEnumerator #rtl.System.TObject
2VFCurrent
2VFLowToHigh
2VFTree
3MCreate
3MGetEnumerator
3MMoveNext
3PCurrent r
3PLowToHigh r
#lazutils.AvgLvlTree.TAvgLvlTree #rtl.System.TObject
2VfRoot
2VFCount
2VFNodeClass
2VFOnCompare
2VFOnObjectCompare
2MBalanceAfterInsert
2MBalanceAfterDelete
2MDeletingNode
2MFindInsertPos
2MInit
2MNodeAdded
2MRotateLeft
2MRotateRight
2MSwitchPositionWithSuccessor
2MSetOnCompare
2MSetOnObjectCompare
2MSetCompares
3MCreate
3MCreateObjectCompare
3MDestroy
3POnCompare rw
3POnObjectCompare rw
3PNodeClass rw
3MAdd
3MDelete
3MRemove
3MRemovePointer
3MMoveDataLeftMost
3MMoveDataRightMost
3MClear
3MFreeAndClear
3MFreeAndDelete
3PRoot r
3PCount r
3MCompare
3MFind
3MFindKey
3MFindNearestKey
3MFindSuccessor
3MFindPrecessor
3MFindLowest
3MFindHighest
3MFindNearest
3MFindPointer
3MFindLeftMost
3MFindRightMost
3MFindLeftMostKey
3MFindRightMostKey
3MFindLeftMostSameKey
3MFindRightMostSameKey
3MGetEnumerator
3MGetEnumeratorHighToLow
3MConsistencyCheck
3MWriteReportToStream
3MNodeToReportStr
3MReportAsString
#lazutils.AvgLvlTree.TIndexedAVLTreeNode #lazutils.AvgLvlTree.TAvgLvlTreeNode
3VLeftCount
#lazutils.AvgLvlTree.TIndexedAVLTree #lazutils.AvgLvlTree.TAvgLvlTree
1MGetItems
2VfLastIndex
2VfLastNode
2MDeletingNode
2MInit
2MNodeAdded
2MRotateLeft
2MRotateRight
2MSwitchPositionWithSuccessor
3MGetNodeAtIndex
3MNodeToIndex
3MIndexOf
3PItems r
3MConsistencyCheck
3MNodeToReportStr
#lazutils.AvgLvlTree.TPointerToPointerTree #rtl.System.TObject
1VFItems
1MGetCount
1MGetValues
1MSetValues
1MFindNode
1MGetNode
3MCreate
3MDestroy
3MClear
3MRemove
3MContains
3MGetFirst
3MGetLast
3MGetNext
3MGetPrev
3PCount r
3PValues rw
3PTree r
#lazutils.AvgLvlTree.TCustomStringMapEnumerator #rtl.System.TObject
2VFTree
2VFCurrent
3MCreate
3MMoveNext
#lazutils.AvgLvlTree.TCustomStringMap #rtl.System.TObject
1VFCompareKeyItemFunc
1VFTree
1VFCaseSensitive
1MGetCompareItemsFunc
2MDisposeItem
2MItemsAreEqual
2MCreateCopy
3MCreate
3MDestroy
3MClear
3MContains
3MGetNames
3MRemove
3PCaseSensitive r
3PTree r
3MFindNode
3MCount
3MEquals
3MAssign
3PCompareItemsFunc r
3PCompareKeyItemFunc r
3MSetCompareFuncs
#lazutils.AvgLvlTree.TStringMapEnumerator #lazutils.AvgLvlTree.TCustomStringMapEnumerator
1MGetCurrent
3PCurrent r
#lazutils.AvgLvlTree.TStringMap #lazutils.AvgLvlTree.TCustomStringMap
1MGetValues
1MSetValues
3MAdd
3MGetEnumerator
3PValues rw
#lazutils.AvgLvlTree.TStringToStringTreeEnumerator #lazutils.AvgLvlTree.TCustomStringMapEnumerator
1MGetCurrent
3PCurrent r
#lazutils.AvgLvlTree.TStringToStringTree #lazutils.AvgLvlTree.TCustomStringMap
1MGetValues
1MSetValues
2MDisposeItem
2MItemsAreEqual
2MCreateCopy
2MGetNode
3MGetString
3MAdd
3MAddNameValues
3MAddValues
3MAddNames
3MDelete
3PValues rw
3MAsText
3MAssign
3MGetEnumerator
3MGetFirst
3MGetLast
3MGetNext
3MGetPrev
#lazutils.AvgLvlTree.TStringToPointerTreeEnumerator #lazutils.AvgLvlTree.TCustomStringMapEnumerator
1MGetCurrent
3PCurrent r
#lazutils.AvgLvlTree.TStringToPointerTree #lazutils.AvgLvlTree.TCustomStringMap
1VFFreeValues
1MGetValues
1MSetValues
2MDisposeItem
2MItemsAreEqual
2MCreateCopy
3MGetData
3PValues rw
3MGetEnumerator
3PFreeValues rw
#lazutils.Masks.TMask #rtl.System.TObject
1VFMask
1VfCaseSensitive
3MCreate
3MDestroy
3MMatches
#lazutils.Masks.TParseStringList #rtl.Classes.TStringList
3MCreate
#lazutils.Masks.TMaskList #rtl.System.TObject
1VFMasks
1MGetCount
1MGetItem
3MCreate
3MDestroy
3MMatches
3PCount r
3PItems r
#lazutils.FileUtil.TFileIterator #rtl.System.TObject
1VFPath
1VFLevel
1VFFileInfo
1VFSearching
1MGetFileName
3MStop
3MIsDirectory
3PFileName r
3PFileInfo r
3PLevel r
3PPath r
3PSearching r
#lazutils.FileUtil.TFileSearcher #lazutils.FileUtil.TFileIterator
1VFMaskSeparator
1VFFollowSymLink
1VFOnFileFound
1VFOnDirectoryFound
1MRaiseSearchingError
2MDoDirectoryEnter
2MDoDirectoryFound
2MDoFileFound
3MCreate
3MSearch
3PMaskSeparator rw
3PFollowSymLink rw
3POnDirectoryFound rw
3POnFileFound rw
#lazutils.lazutf8classes.TFileStreamUTF8 #rtl.Classes.THandleStream
1VFFileName
3MCreate
3MDestroy
3PFileName r
#lazutils.lazutf8classes.TStringListUTF8 #rtl.Classes.TStringList
2MDoCompareText
3MLoadFromFile
3MSaveToFile
#lazutils.LazLogger.TLazLoggerFileHandle #rtl.System.TObject
1VFActiveLogText
1VFCloseLogFileBetweenWrites
1VFLogName
1VFLogText
1VFLogTextInUse
1VFLogTextFailed
1VFUseStdOut
1MDoOpenFile
1MDoCloseFile
1MGetWriteTarget
1MSetCloseLogFileBetweenWrites
1MSetLogName
3MCreate
3MDestroy
3MOpenFile
3MCloseFile
3MWriteToFile
3MWriteLnToFile
3PLogName rw
3PUseStdOut rw
3PCloseLogFileBetweenWrites rw
3PWriteTarget r
3PActiveLogText r
#lazutils.LazLogger.TLazLoggerFile #lazutils.LazLoggerBase.TLazLoggerWithGroupParam
1VFFileHandle
1VFOnDbgOut
1VFOnDebugLn
1VFEnvironmentForLogFileName
1VFParamForLogFileName
1VFGetLogFileNameDone
1VFDebugNestLvl
1VFDebugIndent
1VFDebugNestAtBOL
1MGetFileHandle
1MSetEnvironmentForLogFileName
1MSetFileHandle
1MSetParamForLogFileName
1MGetLogFileName
1MGetCloseLogFileBetweenWrites
1MGetLogName
1MGetUseStdOut
1MSetCloseLogFileBetweenWrites
1MSetLogName
1MSetUseStdOut
2MDoInit
2MDoFinsh
2MIncreaseIndent
2MDecreaseIndent
2MIndentChanged
2MCreateIndent
2MDoDbgOut
2MDoDebugLn
2MDoDebuglnStack
2PFileHandle rw
3MCreate
3MDestroy
3MAssign
3PParamForLogFileName rw
3PEnvironmentForLogFileName rw
3POnDebugLn rw
3POnDbgOut rw
3PLogName rw
3PUseStdOut rw
3PCloseLogFileBetweenWrites rw
#lazutils.LazLoggerBase.TLazLoggerLogGroupList #lazutils.LazClasses.TRefCountedObject
1VFList
1MClear
1MGetItem
1MNewItem
2MAdd
2MFindOrAdd
2MRemove
3MCreate
3MDestroy
3MAssign
3MIndexOf
3MFind
3MCount
3PItem r
#lazutils.LazLoggerBase.TLazLogger #lazutils.LazClasses.TRefCountedObject
1VFIsInitialized
1VFMaxNestPrefixLen
1VFNestLvlIndent
1VFLogGroupList
1VFUseGlobalLogGroupList
1MSetMaxNestPrefixLen
1MSetNestLvlIndent
1MGetLogGroupList
1MSetUseGlobalLogGroupList
2MDoInit
2MDoFinsh
2MIncreaseIndent
2MDecreaseIndent
2MIndentChanged
2MDoDbgOut
2MDoDebugLn
2MDoDebuglnStack
2MArgsToString
2PIsInitialized r
3MCreate
3MDestroy
3MAssign
3MInit
3MFinish
3PNestLvlIndent rw
3PMaxNestPrefixLen rw
3MRegisterLogGroup
3MFindOrRegisterLogGroup
3PLogGroupList r
3PUseGlobalLogGroupList rw
3MDebuglnStack
3MDbgOut
3MDebugLn
3MDebugLnEnter
3MDebugLnExit
#lazutils.LazLoggerBase.TLazLoggerWithGroupParam #lazutils.LazLoggerBase.TLazLogger
1VFLogAllDefaultDisabled
1VFLogDefaultEnabled
1VFLogParamParsed
1VFParamForEnabledLogGroups
1MSetParamForEnabledLogGroups
1MParseParamForEnabledLogGroups
3MCreate
3MAssign
3MRegisterLogGroup
3MFindOrRegisterLogGroup
3PParamForEnabledLogGroups rw
#lazutils.LazLoggerBase.TLazLoggerNoOutput #lazutils.LazLoggerBase.TLazLogger
#lazutils.LazClasses.TFreeNotifyingObject #rtl.System.TObject
1VFFreeNotificationList
3MCreate
3MDestroy
3MAddFreeeNotification
3MRemoveFreeeNotification
#lazutils.LazClasses.TRefCountedObject #lazutils.LazClasses.TFreeNotifyingObject
1VFRefCount
2MDoFree
2PRefCount r
3MCreate
3MDestroy
3MAddReference
3MReleaseReference
#lazutils.LazClasses.TRefCntObjList #rtl.Classes.TList
2MNotify
#lazutils.LazFileCache.TFileStateCacheItem #rtl.System.TObject
1VFAge
1VFFilename
1VFFlags
1VFTestedFlags
1VFTimeStamp
3MCreate
3MCalcMemSize
3PFilename r
3PFlags r
3PTestedFlags r
3PTimeStamp r
3PAge r
#lazutils.LazFileCache.TFileStateCache #rtl.System.TObject
1VFFiles
1VFTimeStamp
1VFLockCount
1VFChangeTimeStampHandler
1MSetFlag
3MCreate
3MDestroy
3MLock
3MUnlock
3MLocked
3MIncreaseTimeStamp
3MFileExistsCached
3MDirPathExistsCached
3MDirectoryIsWritableCached
3MFileIsExecutableCached
3MFileIsReadableCached
3MFileIsWritableCached
3MFileIsTextCached
3MFileAgeCached
3MFindFile
3MCheck
3MAddChangeTimeStampHandler
3MRemoveChangeTimeStampHandler
3MCalcMemSize
3PTimeStamp r
#lazutils.laz2_DOM.EDOMError #rtl.sysutils.Exception
3VCode
3MCreate
#lazutils.laz2_DOM.EDOMIndexSize #lazutils.laz2_DOM.EDOMError
3MCreate
#lazutils.laz2_DOM.EDOMHierarchyRequest #lazutils.laz2_DOM.EDOMError
3MCreate
#lazutils.laz2_DOM.EDOMWrongDocument #lazutils.laz2_DOM.EDOMError
3MCreate
#lazutils.laz2_DOM.EDOMNotFound #lazutils.laz2_DOM.EDOMError
3MCreate
#lazutils.laz2_DOM.EDOMNotSupported #lazutils.laz2_DOM.EDOMError
3MCreate
#lazutils.laz2_DOM.EDOMInUseAttribute #lazutils.laz2_DOM.EDOMError
3MCreate
#lazutils.laz2_DOM.EDOMInvalidState #lazutils.laz2_DOM.EDOMError
3MCreate
#lazutils.laz2_DOM.EDOMSyntax #lazutils.laz2_DOM.EDOMError
3MCreate
#lazutils.laz2_DOM.EDOMInvalidModification #lazutils.laz2_DOM.EDOMError
3MCreate
#lazutils.laz2_DOM.EDOMNamespace #lazutils.laz2_DOM.EDOMError
3MCreate
#lazutils.laz2_DOM.EDOMInvalidAccess #lazutils.laz2_DOM.EDOMError
3MCreate
#lazutils.laz2_DOM.TDOMNodeEnumerator #rtl.System.TObject
1VFNode
1VFCurrent
3MCreate
3MMoveNext
3PCurrent r
#lazutils.laz2_DOM.TDOMNodeAllChildEnumerator #rtl.System.TObject
1VFNode
1VFCurrent
1VFEnd
3MCreate
3MMoveNext
3PCurrent r
3MGetEnumerator
#lazutils.laz2_DOM.TDOMNode #rtl.System.TObject
2VFPool
2VFFlags
2VFParentNode
2VFPreviousSibling
2VFNextSibling
2VFOwnerDocument
2MGetNodeName
2MGetNodeValue
2MSetNodeValue
2MGetFirstChild
2MGetLastChild
2MGetAttributes
2MGetRevision
2MGetNodeType
2MGetTextContent
2MSetTextContent
2MGetLocalName
2MGetNamespaceURI
2MGetPrefix
2MSetPrefix
2MGetOwnerDocument
2MGetBaseURI
2MSetReadOnly
2MChanging
3MCreate
3MDestroy
3MFreeInstance
3MGetChildNodes
3MGetChildCount
3PNodeName r
3PNodeValue rw
3PNodeType r
3PParentNode r
3PFirstChild r
3PLastChild r
3PChildNodes r
3PPreviousSibling r
3PNextSibling r
3PAttributes r
3POwnerDocument r
3MGetEnumerator
3MGetEnumeratorAllChildren
3MGetNextNode
3MGetNextNodeSkipChildren
3MGetPreviousNode
3MGetLastLeaf
3MGetLevel
3MInsertBefore
3MReplaceChild
3MDetachChild
3MRemoveChild
3MAppendChild
3MHasChildNodes
3MCloneNode
3MIsSupported
3MHasAttributes
3MNormalize
3PNamespaceURI r
3PLocalName r
3PPrefix rw
3PTextContent rw
3MLookupPrefix
3MLookupNamespaceURI
3MIsDefaultNamespace
3PbaseURI r
3MFindNode
3MCompareName
3PFlags r
#lazutils.laz2_DOM.TDOMNode_WithChildren #lazutils.laz2_DOM.TDOMNode
2VFFirstChild
2VFLastChild
2VFChildNodes
2MGetFirstChild
2MGetLastChild
2MCloneChildren
2MFreeChildren
2MGetTextContent
2MSetTextContent
3MDestroy
3MInsertBefore
3MReplaceChild
3MDetachChild
3MHasChildNodes
3MGetChildCount
3MFindNode
3MInternalAppend
#lazutils.laz2_DOM.TDOMNodeList #rtl.System.TObject
2VFNode
2VFRevision
2VFList
2MGetCount
2MGetItem
2MNodeFilter
2MBuildList
3MCreate
3MDestroy
3PItem r
3PCount r
3PLength r
#lazutils.laz2_DOM.TDOMElementList #lazutils.laz2_DOM.TDOMNodeList
2Vfilter
2VFNSIndexFilter
2VlocalNameFilter
2VFMatchNS
2VFMatchAnyNS
2VUseFilter
2MNodeFilter
3MCreate
#lazutils.laz2_DOM.TDOMNamedNodeMap #rtl.System.TObject
2VFOwner
2VFNodeType
2VFSortedList
2VFPosList
2MGetPosItem
2MGetSortedItem
2MGetLength
2MFindSorted
2MDeleteSorted
2MRestoreDefault
2MInternalRemove
2MValidateInsert
3MCreate
3MDestroy
3MGetNamedItem
3MSetNamedItem
3MRemoveNamedItem
3MgetNamedItemNS
3MsetNamedItemNS
3MremoveNamedItemNS
3PItem r
3PSortedItem r
3PLength r
#lazutils.laz2_DOM.TDOMCharacterData #lazutils.laz2_DOM.TDOMNode
1VFNodeValue
2MGetLength
2MGetNodeValue
2MSetNodeValue
3PData rw
3PLength r
3MSubstringData
3MAppendData
3MInsertData
3MDeleteData
3MReplaceData
#lazutils.laz2_DOM.TDOMImplementation #rtl.System.TObject
3MHasFeature
3MCreateDocumentType
3MCreateDocument
#lazutils.laz2_DOM.TDOMDocumentFragment #lazutils.laz2_DOM.TDOMNode_WithChildren
2MGetNodeType
2MGetNodeName
3MCloneNode
#lazutils.laz2_DOM.TDOMDocument #lazutils.laz2_DOM.TDOMNode_WithChildren
2VFIDList
2VFRevision
2VFXML11
2VFImplementation
2VFNamespaces
2VFNames
2VFEmptyNode
2VFNodeLists
2VFMaxPoolSize
2VFPools
2VFDocumentURI
2MGetDocumentElement
2MGetDocType
2MGetNodeType
2MGetNodeName
2MGetTextContent
2MGetOwnerDocument
2MSetTextContent
2MRemoveID
2MGetChildNodeList
2MGetElementList
2MNodeListDestroyed
2MAlloc
3MIndexOfNS
3MInsertBefore
3MReplaceChild
3PDocType r
3PImpl r
3PDocumentElement r
3MCreateElement
3MCreateElementBuf
3MCreateDocumentFragment
3MCreateTextNode
3MCreateTextNodeBuf
3MCreateComment
3MCreateCommentBuf
3MCreateCDATASection
3MCreateProcessingInstruction
3MCreateAttribute
3MCreateAttributeBuf
3MCreateAttributeDef
3MCreateEntityReference
3MGetElementsByTagName
3MImportNode
3MCreateElementNS
3MCreateAttributeNS
3MGetElementsByTagNameNS
3MGetElementById
3PdocumentURI rw
3MCreate
3MDestroy
3MAddID
3PNames r
#lazutils.laz2_DOM.TXMLDocument #lazutils.laz2_DOM.TDOMDocument
1VFXMLVersion
1MSetXMLVersion
3VEncoding
3VStylesheetType
3VStylesheetHRef
3MCreateCDATASection
3MCreateProcessingInstruction
3MCreateEntityReference
3PXMLVersion rw
#lazutils.laz2_DOM.TDOMNode_NS #lazutils.laz2_DOM.TDOMNode_WithChildren
2VFNSI
2MGetNodeName
2MGetLocalName
2MGetNamespaceURI
2MGetPrefix
2MSetPrefix
3MSetNSI
3MCompareName
3PNSI r
#lazutils.laz2_DOM.TDOMAttr #lazutils.laz2_DOM.TDOMNode_NS
2VFOwnerElement
2VFDataType
2MGetNodeValue
2MGetNodeType
2MGetSpecified
2MGetIsID
2MSetNodeValue
3MDestroy
3MCloneNode
3PName r
3PSpecified r
3PValue rw
3POwnerElement r
3PIsID r
3PDataType rw
#lazutils.laz2_DOM.TDOMElement #lazutils.laz2_DOM.TDOMNode_NS
2VFAttributes
2MGetNodeType
2MGetAttributes
2MAttachDefaultAttrs
2MInternalLookupPrefix
2MRestoreDefaultAttr
3MDestroy
3MCloneNode
3MIsEmpty
3MNormalize
3PTagName r
3MGetAttribute
3MSetAttribute
3MRemoveAttribute
3MGetAttributeNode
3MSetAttributeNode
3MRemoveAttributeNode
3MGetElementsByTagName
3MGetAttributeNS
3MSetAttributeNS
3MRemoveAttributeNS
3MGetAttributeNodeNS
3MSetAttributeNodeNS
3MGetElementsByTagNameNS
3MhasAttribute
3MhasAttributeNS
3MHasAttributes
3PAttribStrings rw
#lazutils.laz2_DOM.TDOMText #lazutils.laz2_DOM.TDOMCharacterData
2MGetNodeType
2MGetNodeName
2MSetNodeValue
3MCloneNode
3MSplitText
3MIsElementContentWhitespace
#lazutils.laz2_DOM.TDOMComment #lazutils.laz2_DOM.TDOMCharacterData
2MGetNodeType
2MGetNodeName
3MCloneNode
#lazutils.laz2_DOM.TDOMCDATASection #lazutils.laz2_DOM.TDOMText
2MGetNodeType
2MGetNodeName
3MCloneNode
#lazutils.laz2_DOM.TDOMDocumentType #lazutils.laz2_DOM.TDOMNode
2VFName
2VFPublicID
2VFSystemID
2VFInternalSubset
2VFEntities
2VFNotations
2MGetEntities
2MGetNotations
2MGetNodeType
2MGetNodeName
3MDestroy
3PName r
3PEntities r
3PNotations r
3PPublicID r
3PSystemID r
3PInternalSubset r
#lazutils.laz2_DOM.TDOMNotation #lazutils.laz2_DOM.TDOMNode
2VFName
2VFPublicID
2VFSystemID
2MGetNodeType
2MGetNodeName
3MCloneNode
3PPublicID r
3PSystemID r
#lazutils.laz2_DOM.TDOMEntity #lazutils.laz2_DOM.TDOMNode_WithChildren
2VFName
2VFPublicID
2VFSystemID
2VFNotationName
2MGetNodeType
2MGetNodeName
3MCloneNode
3PPublicID r
3PSystemID r
3PNotationName r
#lazutils.laz2_DOM.TDOMEntityReference #lazutils.laz2_DOM.TDOMNode_WithChildren
2VFName
2MGetNodeType
2MGetNodeName
3MCloneNode
#lazutils.laz2_DOM.TDOMProcessingInstruction #lazutils.laz2_DOM.TDOMNode
1VFTarget
1VFNodeValue
2MGetNodeType
2MGetNodeName
2MGetNodeValue
2MSetNodeValue
3MCloneNode
3PTarget r
3PData rw
#lazutils.laz2_DOM.TDOMAttrDef #lazutils.laz2_DOM.TDOMAttr
2VFExternallyDeclared
2VFDefault
2VFTag
2VFEnumeration
3MAddEnumToken
3MHasEnumToken
3MCloneNode
3PDefault rw
3PExternallyDeclared rw
3PTag rw
#lazutils.laz2_DOM.TNodePool #rtl.System.TObject
1VFCurrExtent
1VFCurrExtentSize
1VFElementSize
1VFCurrBlock
1VFFirstFree
1MAddExtent
3MCreate
3MDestroy
3MAllocNode
3MFreeNode
#lazutils.laz2_xmlutils.THashTable #rtl.System.TObject
1VFCount
1VFBucketCount
1VFBucket
1VFOwnsObjects
1MLookup
1MResize
3MCreate
3MDestroy
3MClear
3MFind
3MFindOrAdd
3MGet
3MRemove
3MRemoveData
3MForEach
3PCount r
#lazutils.laz2_xmlutils.TDblHashArray #rtl.System.TObject
1VFSizeLog
1VFRevision
1VFData
3MInit
3MLocate
3MDestroy
#lazutils.laz2_xmlutils.TBinding #rtl.System.TObject
3Vuri
3Vnext
3VprevPrefixBinding
3VPrefix
#lazutils.laz2_xmlutils.TNSSupport #rtl.System.TObject
1VFNesting
1VFPrefixSeqNo
1VFFreeBindings
1VFBindings
1VFBindingStack
1VFPrefixes
1VFDefaultPrefix
3MCreate
3MDestroy
3MDefineBinding
3MCheckAttribute
3MIsPrefixBound
3MGetPrefix
3MBindPrefix
3MDefaultNSBinding
3MStartElement
3MEndElement
#lazutils.Laz2_XMLCfg.TXMLConfig #rtl.Classes.TComponent
1VFFilename
1VFReadFlags
1VFWriteFlags
1MCreateConfigNode
1MSetFilename
2Vdoc
2VFModified
2VfDoNotLoadFromFile
2VfAutoLoadFromSource
2VfPathCache
2VfPathNodeCache
2MLoaded
2MExtendedToStr
2MStrToExtended
2MReadXMLFile
2MWriteXMLFile
2MFreeDoc
2MSetPathNodeCache
2MGetPathNodeCache
2MInvalidateCacheTilEnd
2MInternalFindNode
2MInternalCleanNode
3MCreate
3MCreateClean
3MCreateWithSource
3MDestroy
3MClear
3MFlush
3MReadFromStream
3MWriteToStream
3MGetValue
3MGetExtendedValue
3MSetValue
3MSetDeleteValue
3MSetExtendedValue
3MSetDeleteExtendedValue
3MDeletePath
3MDeleteValue
3MFindNode
3MHasPath
3MHasChildPaths
3PModified rw
3MInvalidatePathCache
4PFilename rw
4PDocument r
4PReadFlags rw
4PWriteFlags rw
#lazutils.Laz2_XMLCfg.TRttiXMLConfig #lazutils.Laz2_XMLCfg.TXMLConfig
2MWriteProperty
2MReadProperty
3MWriteObject
3MReadObject
#lazutils.laz2_XMLRead.EXMLReadError #rtl.sysutils.Exception
1VFSeverity
1VFErrorMessage
1VFLine
1VFLinePos
3PSeverity r
3PErrorMessage r
3PLine r
3PLinePos r
3MLineCol
#lazutils.laz2_XMLRead.TDOMParseOptions #rtl.System.TObject
1VFValidate
1VFPreserveWhitespace
1VFExpandEntities
1VFIgnoreComments
1VFCDSectionsAsText
1VFResolveExternals
1VFNamespaces
1VFDisallowDoctype
1VFCanonical
1VFMaxChars
1MGetCanonical
1MSetCanonical
3PValidate rw
3PPreserveWhitespace rw
3PExpandEntities rw
3PIgnoreComments rw
3PCDSectionsAsText rw
3PResolveExternals rw
3PNamespaces rw
3PDisallowDoctype rw
3PMaxChars rw
3PCanonicalForm rw
#lazutils.laz2_XMLRead.TXMLInputSource #rtl.System.TObject
1VFStream
1VFStringData
1VFBaseURI
1VFSystemID
1VFPublicID
3MCreate
3PStream r
3PStringData r
3PBaseURI rw
3PSystemID rw
3PPublicID rw
#lazutils.laz2_XMLRead.TDOMParser #rtl.System.TObject
1VFOptions
1VFOnError
3MCreate
3MDestroy
3MParse
3MParseUri
3MParseWithContext
3POptions r
3POnError rw
#lazutils.Laz_XMLStreaming.TXMLObjectWriterStackEl #rtl.System.TObject
3VElement
3VParent
3VElemType
3VPropertyName
#lazutils.Laz_XMLStreaming.TXMLObjectWriter #rtl.Classes.TAbstractObjectWriter
1VFDoc
1VFRootEl
1VFStack
1VStackEl
1MStackPush
1MStackPop
2MGetPropertyElement
3MCreate
3MBeginCollection
3MBeginComponent
3MBeginList
3MEndList
3MBeginProperty
3MEndProperty
3MWriteBinary
3MWriteBoolean
3MWriteFloat
3MWriteSingle
3MWriteCurrency
3MWriteDate
3MWriteIdent
3MWriteInteger
3MWriteMethodName
3MWriteSet
3MWriteString
3MWriteWideString
3MWriteUInt64
3MWriteUnicodeString
3MWriteVariant
3MWrite
3PDoc r
#lazutils.Laz_XMLStreaming.TXMLObjectReader #rtl.Classes.TAbstractObjectReader
1VFDoc
1VFElement
1VFElementPosition
1VFRootEl
1MReadNextValue
3MCreate
3MDestroy
3MGetRootClassName
3MNextValue
3MReadValue
3MBeginRootComponent
3MBeginComponent
3MBeginProperty
3MReadBinary
3MReadFloat
3MReadSingle
3MReadCurrency
3MReadDate
3MReadIdent
3MReadInt8
3MReadInt16
3MReadInt32
3MReadInt64
3MReadSet
3MReadStr
3MReadString
3MReadWideString
3MReadUnicodeString
3MSkipComponent
3MSkipValue
3MRead
3PDoc r
3PElement r
3PElementPosition r
#lazutils.TTTypes.TFreeTypeCustomRasterizer #rtl.System.TObject
0MRender_Glyph
0MRender_Gray_Glyph
0MRender_Gray_Glyph_HQ
0MRender_Directly_Gray_Glyph
0MRender_Directly_Gray_Glyph_HQ
0MSet_Raster_Palette
#lazutils.DictionaryStringList.TDictionaryStringList #rtl.Classes.TStringList
1VFMap
2MInsertItem
3MCreate
3MDestroy
3MAssign
3MClear
3MDelete
3MAdd
3MAddObject
3MContains
3MFind
3MIndexOf
#lazutils.EasyLazFreeType.TCustomFontCollectionItem #rtl.System.TObject
2MGetBold
2MGetInformation
2MGetItalic
2MGetStyleCount
2MGetStyles
2MGetFilename
2MGetVersionNumber
2MGetStyle
2MNotifyDestroy
3MHasStyle
3MCreateFont
3MQueryFace
3MReleaseFace
3PStyles r
3PItalic r
3PBold r
3PFilename r
3PInformation r
3PVersionNumber r
3PStyle r
3PStyleCount r
#lazutils.EasyLazFreeType.IFreeTypeFontEnumerator #rtl.System.IUnknown
0MMoveNext
0MGetCurrent
0PCurrent r
#lazutils.EasyLazFreeType.TCustomFamilyCollectionItem #rtl.System.TObject
2MGetFontByIndex
2MGetStyle
2MGetStyles
2MGetFamilyName
2MGetFontCount
2MGetStyleCount
3MGetFont
3MGetFontIndex
3MHasStyle
3PFamilyName r
3PFont r
3PFontCount r
3PStyle r
3PStyleCount r
3PStyles r
#lazutils.EasyLazFreeType.IFreeTypeFamilyEnumerator #rtl.System.IUnknown
0MMoveNext
0MGetCurrent
0PCurrent r
#lazutils.EasyLazFreeType.TCustomFreeTypeFontCollection #rtl.System.TObject
2MGetFont
2MGetFamily
2MGetFamilyCount
2MGetFontCount
3MCreate
3MClear
3MBeginUpdate
3MAddFolder
3MAddFile
3MAddStream
3MEndUpdate
3MFontFileEnumerator
3MFamilyEnumerator
3PFontFileCount r
3PFontFile r
3PFamilyCount r
3PFamily r
#lazutils.EasyLazFreeType.TFreeTypeRenderableFont #rtl.System.TObject
2VFWordBreakHandler
2VFOnRenderText
2MGetClearType
2MSetClearType
2MGetLineFullHeight
2MGetAscent
2MGetDescent
2MGetLineSpacing
2MDefaultWordBreakHandler
2MGetHinted
2MSetHinted
3VUnderlineDecoration
3VStrikeOutDecoration
3MTextWidth
3MTextHeight
3MCharWidthFromUnicode
3MSplitText
3MGetTextSize
3MRenderText
3PClearType rw
3PAscent r
3PDescent r
3PLineSpacing r
3PLineFullHeight r
3PHinted rw
3POnWordBreak rw
3POnRenderText rw
#lazutils.EasyLazFreeType.TFreeTypeDrawer #rtl.System.TObject
0MDrawText
0MDrawTextWordBreak
0MDrawTextRect
#lazutils.EasyLazFreeType.TFreeTypeFont #lazutils.EasyLazFreeType.TFreeTypeRenderableFont
1VFName
1VFStream
1VFOwnedStream
1VFPointSize
1VFHinted
1VFStyleStr
1VFWidthFactor
1VFClearType
1VFNamesArray
1VFCollection
1MFindGlyphNode
1MGetCharIndex
1MGetDPI
1MGetFamily
1MGetFreeTypeStyles
1MGetGlyph
1MGetGlyphCount
1MGetInformation
1MGetPixelSize
1MGetVersionNumber
1MSetDPI
1MSetFreeTypeStyles
1MSetLineFullHeight
1MSetStyleAsString
1MUpdateFace
1MSetName
1MDiscardFace
1MDiscardInstance
1MDiscardStream
1MSetPixelSize
1MSetPointSize
1MLoadGlyphInto
1MSetWidthFactor
1MUpdateInstance
1MUpdateSizeInPoints
1MUpdateMetrics
1MUpdateCharmap
1MRenderTextDecoration
1MFillRect
2VFFace
2VFFaceItem
2VFFaceLoaded
2VFInstance
2VFInstanceCreated
2VFGlyphTable
2VFCharMap
2VFCharmapOk
2VFAscentValue
2VFDescentValue
2VFLineGapValue
2VFLargeLineGapValue
2MGetClearType
2MSetClearType
2MGetLineFullHeight
2MGetAscent
2MGetDescent
2MGetLineSpacing
2MSetHinted
2MGetHinted
2MOnDestroyFontItem
2MFetchNames
2MGetCollection
3VQuality
3VSmallLinePadding
3MCreate
3MDestroy
3MAccessFromStream
3MRenderText
3MSetNameAndStyle
3MTextWidth
3MTextHeight
3MCharWidthFromUnicode
3MCharsWidth
3MCharsPosition
3PName rw
3PDPI rw
3PSizeInPoints rw
3PSizeInPixels rw
3PGlyph r
3PGlyphCount r
3PCharIndex r
3PHinted rw
3PWidthFactor rw
3PLineFullHeight rw
3PInformation r
3PVersionNumber r
3PFamily r
3PCollection rw
3PStyleAsString rw
3PStyle rw
#lazutils.EasyLazFreeType.TFreeTypeGlyph #rtl.System.TObject
1VFLoaded
1VFGlyphData
1VFIndex
1MGetAdvance
1MGetBounds
1MGetBoundsWithOffset
3MCreate
3MRenderDirectly
3MDestroy
3PLoaded r
3PData r
3PIndex r
3PBounds r
3PBoundsWithOffset r
3PAdvance r
#lazutils.EasyLazFreeType.TFreeTypeRasterMap #rtl.System.TObject
2Vmap
2VFRasterizer
2MGetHeight
2MGetWidth
2MGetScanLine
2MInit
3MCreate
3MClear
3MFill
3MRenderGlyph
3MScanMoveTo
3MDestroy
3PWidth r
3PHeight r
3PScanLine r
#lazutils.EasyLazFreeType.TFreeTypeMonochromeMap #lazutils.EasyLazFreeType.TFreeTypeRasterMap
1VScanPtrStart
1VScanPtrCur
1VScanBit
1VScanX
1MGetPixelsInHorizlineNoBoundsChecking
2MInit
3MRenderGlyph
3MScanMoveTo
3MScanNextPixel
3MGetPixel
3MSetPixel
3MGetPixelsInRect
3MGetPixelsInHorizline
3MTogglePixel
#lazutils.EasyLazFreeType.TFreeTypeGrayscaleMap #lazutils.EasyLazFreeType.TFreeTypeRasterMap
1VScanPtrStart
1VScanX
2MInit
3VRenderQuality
3MRenderGlyph
3MScanMoveTo
3MScanNextPixel
3MGetPixel
3MSetPixel
3MXorPixel
#lazutils.TTRASTER.TFreeTypeRasterizer #lazutils.TTTypes.TFreeTypeCustomRasterizer
1VPrecision_Bits
1VPrecision
1VPrecision_Half
1VPrecision_Step
1VPrecision_Shift
1VPrecision_Mask
1VPrecision_Jitter
1VPool
1VCible
1VBWidth
1VBCible
1VGCible
1VTraceBOfs
1VTraceBIncr
1VTraceGOfs
1VTraceGIncr
1Vgray_min_x
1Vgray_max_x
1VProc_Sweep_Init
1VProc_Sweep_Span
1VProc_Sweep_Drop
1VProc_Sweep_Step
1VProc_Sweep_Direct
1VDirect_X
1VDirect_Y
1VDirect_TX
1VPoints
1VFlags
1VOuts
1VnContours
1VDropOutControl
1VGrays
1VBGray_Data
1VBGray_Incr
1VBGray_End
1VBGray_Capacity
1VSecond_Pass
1MBGray_NeedCapacity
1MDraw_Sweep
1MHorizontal_Gray_Sweep_Drop
1MHorizontal_Gray_Sweep_Span
1MHorizontal_Sweep_Drop
1MHorizontal_Sweep_Init
1MHorizontal_Sweep_Span
1MHorizontal_Sweep_Step
1MProcessCoordinate
1MRaster_Object_Init
1MRaster_Object_Done
1MRender_Single_Pass
1MSet_High_Precision
1MSet_Second_Pass
1MVertical_Gray_Sweep_Init
1MVertical_Gray_Sweep_Init_Direct
1MVertical_Gray_Sweep_Init_Direct_HQ
1MVertical_Gray_Sweep_Init_HQ
1MVertical_Gray_Sweep_Step
1MVertical_Gray_Sweep_Step_Direct
1MVertical_Gray_Sweep_Step_Direct_HQ
1MVertical_Gray_Sweep_Step_HQ
1MVertical_Sweep_Drop
1MVertical_Sweep_Init
1MVertical_Sweep_Span
1MVertical_Sweep_Step
3MRender_Glyph
3MRender_Gray_Glyph
3MRender_Gray_Glyph_HQ
3MRender_Directly_Gray_Glyph
3MRender_Directly_Gray_Glyph_HQ
3MSet_Raster_Palette
3MCreate
3MDestroy
#lazutils.TTProfile.TRenderPool #rtl.System.TObject
2VPrecision
2VPrecisionHalf
2VBezierPrecision
2VBoundsMinY
2VBoundsMaxY
2VscaleShift
2MBezier_Down
2MBezier_State
2MBezier_To
2MBezier_Up
2MCEILING
2MDecomposeCurve
2MFLOOR
2MFRAC
2MGetCapacity
2MLine_Down
2MLine_To
2MLine_Up
2MMove_To
2MPushBezier
2MSCALED
2MSplit_Bezier
2MTRUNC
2MRequireCapacity
2MPushValue
2PCapacity r
3VJoint
3VFresh
3VcProfile
3VProfileColl
3VLastX
3VLastY
3VCurveDir
3VArcs
3VCurArc
3Vdata
3Vposition
3MCreate
3MDestroy
3MSetPrecision
3MSetBounds
3MSetScaleShift
3MClear
3MReduceCapacity
3MConvert_Glyph
#lazutils.TTProfile.TProfile #rtl.System.TObject
0VPool
0VFlow
0VHeight
0VStart
0VOffset
0VX
0VnextInContour
0VnextInColl
0VnextInList
0VprevInList
0MCreate
#lazutils.TTProfile.TProfileCollection #rtl.System.TObject
2MRemove_Profile
3VPool
3VprevProfile
3VfProfile
3VgProfile
3VnProfs
3MCreate
3MClear
3MNew_Profile
3MEnd_Profile
3MDestroy
#lazutils.laz2_xpath.TXPathExprNode #rtl.System.TObject
2MEvalPredicate
3MEvaluate
#lazutils.laz2_xpath.TXPathConstantNode #lazutils.laz2_xpath.TXPathExprNode
1VFValue
3MCreate
3MDestroy
3MEvaluate
#lazutils.laz2_xpath.TXPathVariableNode #lazutils.laz2_xpath.TXPathExprNode
1VFName
3MCreate
3MEvaluate
#lazutils.laz2_xpath.TXPathFunctionNode #lazutils.laz2_xpath.TXPathExprNode
1VFName
1VFArgs
3MCreate
3MDestroy
3MEvaluate
#lazutils.laz2_xpath.TXPathNegationNode #lazutils.laz2_xpath.TXPathExprNode
1VFOperand
3MCreate
3MDestroy
3MEvaluate
#lazutils.laz2_xpath.TXPathBinaryNode #lazutils.laz2_xpath.TXPathExprNode
2VFOperand1
2VFOperand2
3MDestroy
#lazutils.laz2_xpath.TXPathMathOpNode #lazutils.laz2_xpath.TXPathBinaryNode
1VFOperator
3MCreate
3MEvaluate
#lazutils.laz2_xpath.TXPathCompareNode #lazutils.laz2_xpath.TXPathBinaryNode
1VFOperator
3MCreate
3MEvaluate
#lazutils.laz2_xpath.TXPathBooleanOpNode #lazutils.laz2_xpath.TXPathBinaryNode
1VFOperator
3MCreate
3MEvaluate
#lazutils.laz2_xpath.TXPathUnionNode #lazutils.laz2_xpath.TXPathBinaryNode
3MCreate
3MEvaluate
#lazutils.laz2_xpath.TXPathFilterNode #lazutils.laz2_xpath.TXPathExprNode
1VFLeft
1VFPredicates
1MApplyPredicates
3MCreate
3MDestroy
3MEvaluate
#lazutils.laz2_xpath.TStep #lazutils.laz2_xpath.TXPathFilterNode
1MSelectNodes
3VAxis
3VNodeTestType
3VNodeTestString
3VNSTestString
3MCreate
3MEvaluate
#lazutils.laz2_xpath.EXPathEvaluationError #rtl.sysutils.Exception
#lazutils.laz2_xpath.TXPathVariable #rtl.System.TObject
2VFRefCount
2MError
3MTypeName
3MRelease
3MAsNodeSet
3MAsBoolean
3MAsNumber
3MAsText
#lazutils.laz2_xpath.TXPathNodeSetVariable #lazutils.laz2_xpath.TXPathVariable
1VFValue
3MCreate
3MDestroy
3MTypeName
3MAsNodeSet
3MAsText
3MAsBoolean
3MAsNumber
3PValue r
#lazutils.laz2_xpath.TXPathBooleanVariable #lazutils.laz2_xpath.TXPathVariable
1VFValue
3MCreate
3MTypeName
3MAsBoolean
3MAsNumber
3MAsText
3PValue r
#lazutils.laz2_xpath.TXPathNumberVariable #lazutils.laz2_xpath.TXPathVariable
1VFValue
3MCreate
3MTypeName
3MAsBoolean
3MAsNumber
3MAsText
3PValue r
#lazutils.laz2_xpath.TXPathStringVariable #lazutils.laz2_xpath.TXPathVariable
1VFValue
3MCreate
3MTypeName
3MAsBoolean
3MAsNumber
3MAsText
3PValue r
#lazutils.laz2_xpath.TXPathScanner #rtl.System.TObject
1VFExpressionString
1VFCurData
1VFCurToken
1VFCurTokenString
1VFTokenStart
1VFTokenLength
1VFPrefixLength
1VFTokenId
1VFResolver
1MError
1MParsePredicates
1MParseStep
1MParseNodeTest
1MParsePrimaryExpr
1MParseFunctionCall
1MParseUnionExpr
1MParsePathExpr
1MParseFilterExpr
1MParseOrExpr
1MParseAndExpr
1MParseEqualityExpr
1MParseRelationalExpr
1MParseAdditiveExpr
1MParseMultiplicativeExpr
1MParseUnaryExpr
1MGetToken
1MScanQName
3MCreate
3MNextToken
3MPeekToken
3MSkipToken
3PCurToken r
3PCurTokenString r
#lazutils.laz2_xpath.TXPathContext #rtl.System.TObject
3VContextNode
3VContextPosition
3VContextSize
3MCreate
#lazutils.laz2_xpath.TXPathEnvironment #rtl.System.TObject
1VFFunctions
1VFVariables
1MGetFunctionCount
1MGetVariableCount
1MGetFunction
1MGetVariable
2MxpLast
2MxpPosition
2MxpCount
2MxpId
2MxpLocalName
2MxpNamespaceURI
2MxpName
2MxpString
2MxpConcat
2MxpStartsWith
2MxpContains
2MxpSubstringBefore
2MxpSubstringAfter
2MxpSubstring
2MxpStringLength
2MxpNormalizeSpace
2MxpTranslate
2MxpBoolean
2MxpNot
2MxpTrue
2MxpFalse
2MxpLang
2MxpNumber
2MxpSum
2MxpFloor
2MxpCeiling
2MxpRound
3MCreate
3MDestroy
3MGetFunctionIndex
3MGetVariableIndex
3MAddFunction
3MAddVariable
3MRemoveFunction
3MRemoveVariable
3PFunctionCount r
3PVariableCount r
3PFunctions r
3PFunctionsByName r
3PVariables r
3PVariablesByName r
#lazutils.laz2_xpath.TXPathExpression #rtl.System.TObject
1VFRootNode
3MCreate
3MDestroy
3MEvaluate
#lazutils.LazConfigStorage.TConfigStorage #rtl.System.TObject
1VFPathStack
1VFCurrentBasePath
2MGetFullPathValue
2MSetFullPathValue
2MSetDeleteFullPathValue
2MDeleteFullPath
2MDeleteFullPathValue
2MWriteProperty
2MReadProperty
3MCreate
3MDestroy
3MClear
3MGetValue
3MSetValue
3MSetDeleteValue
3MDeletePath
3MDeleteValue
3PCurrentBasePath r
3MExtendPath
3MAppendBasePath
3MUndoAppendBasePath
3MWriteToDisk
3MGetFilename
3MWriteObject
3MReadObject
#lazutils.LazConfigStorage.TConfigMemStorageNode #rtl.System.TObject
3VName
3VValue
3VParent
3VChildren
3MClearChilds
3MCreate
3MDestroy
#lazutils.LazConfigStorage.TConfigMemStorage #lazutils.LazConfigStorage.TConfigStorage
1MCreateRoot
1MCreateChilds
1MModify
2MDeleteFullPath
2MDeleteFullPathValue
2MGetFullPathValue
2MSetDeleteFullPathValue
2MSetFullPathValue
3VRoot
3MGetFilename
3MWriteToDisk
3MDestroy
3MClear
3MSaveToConfig
3MLoadFromConfig
3MWriteDebugReport
#lazutils.LazFreeTypeFontCollection.TFontCollectionItem #lazutils.EasyLazFreeType.TCustomFontCollectionItem
1VFFilename
1VFSourceStream
1VFSourceStreamOwned
1VFInformation
1VFVersionNumber
1VFStyleList
1VFFace
1VFFaceUsage
1VFUsePostscriptStyle
1VFDestroyListeners
1MUpdateStyles
1MSetInformation
1MSetUsePostscriptStyle
2MGetFilename
2MGetBold
2MGetInformation
2MGetItalic
2MGetStyleCount
2MGetStyles
2MGetStyle
2MGetVersionNumber
2MNotifyDestroy
2MInit
3MCreate
3MDestroy
3MHasStyle
3PInformation rw
3PVersionNumber rw
3MCreateFont
3MQueryFace
3MReleaseFace
3PUsePostscriptStyle rw
#lazutils.LazFreeTypeFontCollection.TFamilyCollectionItem #lazutils.EasyLazFreeType.TCustomFamilyCollectionItem
1VFFamilyName
1VFFonts
1VFFontCount
1VFStyles
1VFStyleCount
1VFUsePostscriptStyle
2MGetFontByIndex
2MGetFontByStyles
2MGetFontIndexByStyles
2MGetStyle
2MAddStyle
2MGetStyles
2MGetFamilyName
2MGetFontCount
2MGetStyleCount
3MCreate
3MAddFont
3MGetFont
3MGetFontIndex
3MHasStyle
#lazutils.LazFreeTypeFontCollection.TFreeTypeFontCollection #lazutils.EasyLazFreeType.TCustomFreeTypeFontCollection
1VFFontList
1VFTempFont
1VFUpdateCount
1VFFamilyList
1MAddFamily
1MFindFamily
1MFindFont
1MCompareFontFileName
1MCompareFamilyName
2MGetFont
2MGetFamily
2MGetFamilyCount
2MGetFontCount
3MCreate
3MClear
3MBeginUpdate
3MAddFolder
3MAddFile
3MAddStream
3MEndUpdate
3MDestroy
3MFontFileEnumerator
3MFamilyEnumerator
#lazutils.LazLoggerDummy.TLazLoggerLogGroupList #lazutils.LazClasses.TRefCountedObject
1MGetItem
3MAssign
3MIndexOf
3MFind
3MCount
3PItem r
#lazutils.LazLoggerDummy.TLazLogger #lazutils.LazClasses.TRefCountedObject
1VFMaxNestPrefixLen
1VFNestLvlIndent
1VFUseGlobalLogGroupList
1MGetLogGroupList
1MSetMaxNestPrefixLen
1MSetNestLvlIndent
1MSetUseGlobalLogGroupList
3MAssign
3MInit
3MFinish
3PNestLvlIndent rw
3PMaxNestPrefixLen rw
3MRegisterLogGroup
3MFindOrRegisterLogGroup
3PLogGroupList r
3PUseGlobalLogGroupList rw
3MDebuglnStack
3MDbgOut
3MDebugLn
3MDebugLnEnter
3MDebugLnExit
#lazutils.TTFile.TFreeTypeStream #rtl.System.TObject
1MGetSize
1VFCurrentFrame
1VFFrameCursor
1VFFrameSize
1VFFrameCache
1VFName
1VFStream
1VFBase
1VFStoredSize
1VFPosit
1VFOwnedStream
1VFOpen
1VFUsed
1MGetFilePos
1MGetFileSize
1MGetPosition
1PSize r
1MInit
3MCreate
3MDestroy
3MActivate
3MDeactivate
3MSeekFile
3MSkipFile
3MReadFile
3MReadAtFile
3MAccessFrame
3MCheckAndAccessFrame
3MForgetFrame
3MGET_Byte
3MGET_Char
3MGET_Short
3MGET_UShort
3MGET_Long
3MGET_ULong
3MGET_Tag4
3POpen r
3PName r
3PBase r
3PPosition r
3PUsed r