-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogFile.txt
1348 lines (1271 loc) · 122 KB
/
logFile.txt
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
CodeAnalysis - Version 1.4
==============================================================================================
Tue May 1 22:49:35 2018
Path: "D:\studies\sem2\Project4"
Args: *.h, *.cpp, *.cs, Project4.sln, /m, /r, /f
Code Metrics - Start Line, Size (lines/code), and Complexity (number of scopes)
==============================================================================================
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
namespace Global Namespace 1 1 1570
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
App.g.cs namespace WpfApp1 35 35 4
App.g.cs class App 41 29 3
App.g.cs function DebuggerNonUserCodeAttribute 48 8 1
App.g.cs function STAThreadAttribute 63 5 1
App.g.cs namespace WpfApp1 35 35 4
App.g.cs class App 41 29 3
App.g.cs function DebuggerNonUserCodeAttribute 48 8 1
App.g.cs function STAThreadAttribute 63 5 1
App.g.cs namespace WpfApp1 35 35 4
App.g.cs class App 41 29 3
App.g.cs function DebuggerNonUserCodeAttribute 48 8 1
App.g.cs function STAThreadAttribute 63 5 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
App.g.i.cs namespace WpfApp1 35 35 4
App.g.i.cs class App 41 29 3
App.g.i.cs function DebuggerNonUserCodeAttribute 48 8 1
App.g.i.cs function STAThreadAttribute 63 5 1
App.g.i.cs namespace WpfApp1 35 35 4
App.g.i.cs class App 41 29 3
App.g.i.cs function DebuggerNonUserCodeAttribute 48 8 1
App.g.i.cs function STAThreadAttribute 63 5 1
App.g.i.cs namespace WpfApp1 35 35 4
App.g.i.cs class App 41 29 3
App.g.i.cs function DebuggerNonUserCodeAttribute 48 8 1
App.g.i.cs function STAThreadAttribute 63 5 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
App.xaml.cs namespace WpfApp1 19 17 3
App.xaml.cs class App 24 12 2
App.xaml.cs function App_Loaded 26 8 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
CheckIn.h function 58 48 7
CheckIn.h function 66 34 5
CheckIn.h function 68 7 1
CheckIn.h function 78 5 1
CheckIn.h function 86 5 1
CheckIn.h function 109 48 6
CheckIn.h function 117 36 5
CheckIn.h function 127 11 2
CheckIn.h function 131 5 1
CheckIn.h function 139 11 2
CheckIn.h function 143 5 1
CheckIn.h function 160 42 6
CheckIn.h function 165 33 5
CheckIn.h function 173 11 2
CheckIn.h function 177 5 1
CheckIn.h function 185 11 2
CheckIn.h function 189 5 1
CheckIn.h function 205 49 7
CheckIn.h function 211 39 6
CheckIn.h function 218 11 2
CheckIn.h function 222 5 1
CheckIn.h function 230 10 2
CheckIn.h function 233 5 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
CheckIn.cpp function 18 7 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
CheckOut.h function 55 21 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
CheckOut.cpp function 17 7 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
CodeUtilities.h namespace Utilities 43 86 14
CodeUtilities.h class Converter 52 5 3
CodeUtilities.h function toString 61 5 1
CodeUtilities.h function toValue 73 6 1
CodeUtilities.h class Box 87 9 5
CodeUtilities.h function Box 88 2 1
CodeUtilities.h function Box 89 2 1
CodeUtilities.h function operatorT& 90 2 1
CodeUtilities.h function operator= 91 2 1
CodeUtilities.h struct ToXml 102 4 2
CodeUtilities.h function ~ToXml 103 1 1
CodeUtilities.h class PersistFactory 115 14 3
CodeUtilities.h function PersistFactory 119 3 1
CodeUtilities.h function toXml 123 5 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
CodeUtilities.cpp function main 20 36 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Comm.h namespace MsgPassingCommunication 50 63 5
Comm.h class Receiver 55 13 1
Comm.h class Sender 73 16 1
Comm.h class Comm 91 14 1
Comm.h function create 107 6 1
Comm.h namespace MsgPassingCommunication 43 54 59
Comm.h class Receiver 48 13 11
Comm.h class Sender 66 16 34
Comm.h class Comm 84 13 13
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Comm.cpp function Receiver 27 3 1
Comm.cpp function queue 33 3 1
Comm.cpp function start 40 3 1
Comm.cpp function stop 46 3 1
Comm.cpp function getMessage 52 4 1
Comm.cpp function Receiver 29 3 1
Comm.cpp function queue 35 3 1
Comm.cpp function start 42 3 1
Comm.cpp function stop 48 3 1
Comm.cpp function getMessage 54 4 1
Comm.cpp function Sender 59 3 1
Comm.cpp function ~Sender 65 4 1
Comm.cpp function start 72 47 10
Comm.cpp function void 73 42 9
Comm.cpp function stop 122 7 1
Comm.cpp function connect 132 4 1
Comm.cpp function postMessage 139 3 1
Comm.cpp function sendFile 147 21 2
Comm.cpp function Sender 61 3 1
Comm.cpp function ~Sender 67 4 1
Comm.cpp function start 74 42 9
Comm.cpp function void 75 37 8
Comm.cpp function stop 119 7 1
Comm.cpp function connect 129 4 1
Comm.cpp function postMessage 136 3 1
Comm.cpp function sendFile 144 21 2
Comm.cpp function Comm 279 2 1
Comm.cpp function start 283 15 1
Comm.cpp function stop 300 4 1
Comm.cpp function postMessage 306 3 1
Comm.cpp function getMessage 311 3 1
Comm.cpp function name 316 3 1
Comm.cpp function Comm 275 2 1
Comm.cpp function start 279 15 1
Comm.cpp function stop 296 4 1
Comm.cpp function postMessage 302 3 1
Comm.cpp function getMessage 307 3 1
Comm.cpp function name 312 3 1
Comm.cpp class ClientHandler 174 105 14
Comm.cpp function ClientHandler 179 3 1
Comm.cpp function ~ClientHandler 184 4 1
Comm.cpp function setQueue 191 3 1
Comm.cpp function readMsg 197 11 2
Comm.cpp function receiveFile 215 31 4
Comm.cpp function operator() 249 25 4
Comm.cpp function DemoSndrRcvr 328 79 1
Comm.cpp function DemoCommClass 414 68 1
Comm.cpp function ThreadProcClnt1 489 28 2
Comm.cpp function ThreadProcClnt2 520 21 2
Comm.cpp function DemoClientServer 547 48 5
Comm.cpp function main 599 20 1
Comm.cpp class ClientHandler 171 104 14
Comm.cpp function ClientHandler 176 3 1
Comm.cpp function ~ClientHandler 181 4 1
Comm.cpp function setQueue 188 3 1
Comm.cpp function readMsg 194 11 2
Comm.cpp function receiveFile 212 31 4
Comm.cpp function operator() 246 24 4
Comm.cpp function DemoSndrRcvr 324 79 1
Comm.cpp function DemoCommClass 410 68 1
Comm.cpp function ThreadProcClnt1 485 28 2
Comm.cpp function ThreadProcClnt2 516 21 2
Comm.cpp function DemoClientServer 543 48 5
Comm.cpp function main 595 20 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
CommLibWrapper.h namespace MsgPassingCommunication 29 6 3
CommLibWrapper.h struct CommFactory 31 3 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
CommLibWrapper.cpp function 14 4 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
CopyOfUnitTest.h namespace Test 17 64 11
CopyOfUnitTest.h function Title 19 4 1
CopyOfUnitTest.h class TestBase 26 54 9
CopyOfUnitTest.h function ~TestBase 30 2 1
CopyOfUnitTest.h function doTest 40 17 4
CopyOfUnitTest.h function checkResult 60 8 1
CopyOfUnitTest.h function passed 70 4 1
CopyOfUnitTest.h function failed 75 4 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Cpp11-BlockingQueue.h class BlockingQueue 51 17 12
Cpp11-BlockingQueue.h function BlockingQueue 52 2 1
Cpp11-BlockingQueue.h function BlockingQueue 72 7 1
Cpp11-BlockingQueue.h function operator= 83 9 1
Cpp11-BlockingQueue.h function deQ 96 26 3
Cpp11-BlockingQueue.h function enQ 126 7 2
Cpp11-BlockingQueue.h function front 137 6 1
Cpp11-BlockingQueue.h function clear 147 5 1
Cpp11-BlockingQueue.h function size 156 4 1
Cpp11-BlockingQueue.h class BlockingQueue 46 13 10
Cpp11-BlockingQueue.h function BlockingQueue 47 2 1
Cpp11-BlockingQueue.h function BlockingQueue 62 3 1
Cpp11-BlockingQueue.h function operator= 68 6 1
Cpp11-BlockingQueue.h function deQ 77 16 3
Cpp11-BlockingQueue.h function enQ 96 7 2
Cpp11-BlockingQueue.h function size 106 4 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Cpp11-BlockingQueue.cpp function test 21 12 3
Cpp11-BlockingQueue.cpp function main 35 52 3
Cpp11-BlockingQueue.cpp function test 21 12 3
Cpp11-BlockingQueue.cpp function main 35 47 3
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
CsMessage.h namespace MsgPassingCommunication 32 111 19
CsMessage.h class Sutils 38 5 5
public data: static std :: string MtoNstr ( String ^ s ) ;
CsMessage.h function MtoNstr 46 8 2
CsMessage.h function NtoMstr 57 8 2
CsMessage.h class CsEndPoint 67 12 4
CsMessage.h function CsEndPoint 70 4 1
CsMessage.h function toString 82 4 1
CsMessage.h function fromString 89 8 1
CsMessage.h class CsMessage 99 44 9
CsMessage.h function CsMessage 102 3 1
CsMessage.h function CsMessage 106 5 1
CsMessage.h function add 112 3 1
CsMessage.h function value 116 3 1
CsMessage.h function remove 120 8 2
CsMessage.h function show 131 11 2
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
DateTime.h class DateTime 35 45 44
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
DateTime.cpp function ctime 17 6 1
DateTime.cpp function localtime 26 5 1
DateTime.cpp function DateTime 34 3 1
DateTime.cpp function DateTime 56 28 15
DateTime.cpp function operatorstd:: 87 3 1
DateTime.cpp function DateTime 91 2 1
DateTime.cpp function makeTime 99 16 2
DateTime.cpp function makeDuration 120 8 1
DateTime.cpp function now 131 7 1
DateTime.cpp function timepoint 141 3 1
DateTime.cpp function ticks 147 4 1
DateTime.cpp function time 154 6 1
DateTime.cpp function operator< 163 3 1
DateTime.cpp function operator> 169 3 1
DateTime.cpp function operator== 175 3 1
DateTime.cpp function operator!= 181 3 1
DateTime.cpp function operator<= 187 3 1
DateTime.cpp function operator>= 193 3 1
DateTime.cpp function operator+= 199 4 1
DateTime.cpp function operator+ 206 4 1
DateTime.cpp function operator-= 213 4 1
DateTime.cpp function operator- 220 3 1
DateTime.cpp function year 226 5 1
DateTime.cpp function month 234 5 1
DateTime.cpp function day 242 5 1
DateTime.cpp function hour 250 5 1
DateTime.cpp function minute 258 5 1
DateTime.cpp function second 266 5 1
DateTime.cpp function readDateTimePart 42 9 1
DateTime.cpp function main 280 28 3
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
DbCore.h namespace NoSqlDb 50 350 59
DbCore.h class DbElement 57 39 24
DbCore.h function DbElement 59 2 1
DbCore.h function name 63 2 1
DbCore.h function name 64 2 1
DbCore.h function name 65 2 1
DbCore.h function descrip 67 2 1
DbCore.h function descrip 68 2 1
DbCore.h function descrip 69 2 1
DbCore.h function dateTime 71 2 1
DbCore.h function dateTime 72 2 1
DbCore.h function dateTime 73 2 1
DbCore.h function children 75 2 1
DbCore.h function children 76 2 1
DbCore.h function children 77 2 1
DbCore.h function clearChildKeys 82 2 1
DbCore.h function payLoad 84 2 1
DbCore.h function payLoad 85 2 1
DbCore.h function payLoad 86 2 1
DbCore.h function containsChildKey 100 5 1
DbCore.h function addChildKey 109 11 3
DbCore.h function removeChildKey 124 10 1
DbCore.h function addRecord 275 6 1
DbCore.h function showKeys 137 7 2
DbCore.h function makeElement 148 6 1
DbCore.h class DbCore 162 30 20
DbCore.h function throwOnIndexNotFound 173 2 1
DbCore.h function begin 176 2 1
DbCore.h function end 177 2 1
DbCore.h function dbStore 181 2 1
DbCore.h function dbStore 182 2 1
DbCore.h function dbStore 183 2 1
DbCore.h function identify 200 3 1
DbCore.h function contains 207 4 1
DbCore.h function keys 215 11 2
DbCore.h function size 230 3 1
DbCore.h function operator[] 248 10 2
DbCore.h function operator[] 264 7 2
DbCore.h function removeRecord 285 9 2
DbCore.h function parents 298 9 2
DbCore.h function showKeys 315 7 2
DbCore.h function showHeader 330 16 1
DbCore.h function showElem 350 16 3
DbCore.h function showRecord 370 17 3
DbCore.h function showDb 391 8 2
DbCore.h namespace NoSqlDb 50 350 59
DbCore.h class DbElement 57 39 24
DbCore.h function DbElement 59 2 1
DbCore.h function name 63 2 1
DbCore.h function name 64 2 1
DbCore.h function name 65 2 1
DbCore.h function descrip 67 2 1
DbCore.h function descrip 68 2 1
DbCore.h function descrip 69 2 1
DbCore.h function dateTime 71 2 1
DbCore.h function dateTime 72 2 1
DbCore.h function dateTime 73 2 1
DbCore.h function children 75 2 1
DbCore.h function children 76 2 1
DbCore.h function children 77 2 1
DbCore.h function clearChildKeys 82 2 1
DbCore.h function payLoad 84 2 1
DbCore.h function payLoad 85 2 1
DbCore.h function payLoad 86 2 1
DbCore.h function containsChildKey 100 5 1
DbCore.h function addChildKey 109 11 3
DbCore.h function removeChildKey 124 10 1
DbCore.h function addRecord 275 6 1
DbCore.h function showKeys 137 7 2
DbCore.h function makeElement 148 6 1
DbCore.h class DbCore 162 30 20
DbCore.h function throwOnIndexNotFound 173 2 1
DbCore.h function begin 176 2 1
DbCore.h function end 177 2 1
DbCore.h function dbStore 181 2 1
DbCore.h function dbStore 182 2 1
DbCore.h function dbStore 183 2 1
DbCore.h function identify 200 3 1
DbCore.h function contains 207 4 1
DbCore.h function keys 215 11 2
DbCore.h function size 230 3 1
DbCore.h function operator[] 248 10 2
DbCore.h function operator[] 264 7 2
DbCore.h function removeRecord 285 9 2
DbCore.h function parents 298 9 2
DbCore.h function showKeys 315 7 2
DbCore.h function showHeader 330 16 1
DbCore.h function showElem 350 16 3
DbCore.h function showRecord 370 17 3
DbCore.h function showDb 391 8 2
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
DbCore.cpp function ] 22 2 1
DbCore.cpp class DbProvider 32 6 2
DbCore.cpp function db 33 2 1
DbCore.cpp function testR1 47 8 1
DbCore.cpp function testR2 59 7 1
DbCore.cpp function testR3a 70 36 1
DbCore.cpp function testR3b 109 30 3
DbCore.cpp function children 127 1 1
DbCore.cpp function children 130 1 1
DbCore.cpp function testR4 142 25 1
DbCore.cpp function testR5 170 38 1
DbCore.cpp function main 213 47 1
DbCore.cpp function ] 22 2 1
DbCore.cpp class DbProvider 32 6 2
DbCore.cpp function db 33 2 1
DbCore.cpp function testR1 47 8 1
DbCore.cpp function testR2 59 7 1
DbCore.cpp function testR3a 70 36 1
DbCore.cpp function testR3b 109 30 3
DbCore.cpp function children 127 1 1
DbCore.cpp function children 130 1 1
DbCore.cpp function testR4 142 25 1
DbCore.cpp function testR5 170 38 1
DbCore.cpp function main 213 47 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Definitions.h namespace NoSqlDb 13 9 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Edit.h namespace NoSqlDb 33 73 14
Edit.h class Edit 36 17 13
Edit.h function Edit 37 2 1
Edit.h function DbElement 48 2 1
Edit.h function identify 58 3 1
Edit.h function name 63 3 1
Edit.h function description 68 3 1
Edit.h function dateTime 73 3 1
Edit.h function dateTime 78 3 1
Edit.h function clearChildKeys 83 3 1
Edit.h function addChildKey 88 3 1
Edit.h function removeChildKey 93 3 1
Edit.h function payLoad 98 3 1
Edit.h function payLoad 103 3 1
Edit.h namespace NoSqlDb 33 73 14
Edit.h class Edit 36 17 13
Edit.h function Edit 37 2 1
Edit.h function DbElement 48 2 1
Edit.h function identify 58 3 1
Edit.h function name 63 3 1
Edit.h function description 68 3 1
Edit.h function dateTime 73 3 1
Edit.h function dateTime 78 3 1
Edit.h function clearChildKeys 83 3 1
Edit.h function addChildKey 88 3 1
Edit.h function removeChildKey 93 3 1
Edit.h function payLoad 98 3 1
Edit.h function payLoad 103 3 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Edit.cpp function main 17 18 1
Edit.cpp function main 17 18 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
FileSystem.h namespace FileSystem 128 131 11
FileSystem.h class Block 135 13 2
FileSystem.h function Block 136 2 1
FileSystem.h class File 153 31 4
FileSystem.h function name 184 2 1
FileSystem.h class FileInfo 191 34 2
FileSystem.h class Path 230 10 1
FileSystem.h class Directory 245 13 1
FileSystem.h namespace FileSystem 128 131 183
FileSystem.h class Block 135 13 16
FileSystem.h function Block 136 2 1
FileSystem.h class File 153 31 70
FileSystem.h function name 184 2 1
FileSystem.h class FileInfo 191 34 50
FileSystem.h class Path 230 10 27
FileSystem.h class Directory 245 13 19
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
FileSystem.cpp function Block 50 2 1
FileSystem.cpp function push_back 56 3 1
FileSystem.cpp function operator[] 62 5 1
FileSystem.cpp function operator[] 70 5 1
FileSystem.cpp function operator== 78 3 1
FileSystem.cpp function operator!= 84 3 1
FileSystem.cpp function size 90 3 1
FileSystem.cpp function Block 50 2 1
FileSystem.cpp function push_back 56 3 1
FileSystem.cpp function operator[] 62 5 1
FileSystem.cpp function operator[] 70 5 1
FileSystem.cpp function operator== 78 3 1
FileSystem.cpp function operator!= 84 3 1
FileSystem.cpp function size 90 3 1
FileSystem.cpp function File 98 2 1
FileSystem.cpp function ~File 102 17 3
FileSystem.cpp function open 122 34 5
FileSystem.cpp function getLine 159 23 3
FileSystem.cpp function readAll 185 13 2
FileSystem.cpp function putLine 201 13 1
FileSystem.cpp function getBlock 217 22 3
FileSystem.cpp function putBlock 242 14 2
FileSystem.cpp function getBuffer 259 18 2
FileSystem.cpp function putBuffer 280 17 2
FileSystem.cpp function isGood 300 9 1
FileSystem.cpp function flush 312 4 1
FileSystem.cpp function clear 319 6 1
FileSystem.cpp function close 328 15 3
FileSystem.cpp function exists 346 3 1
FileSystem.cpp function copy 352 3 1
FileSystem.cpp function remove 358 3 1
FileSystem.cpp function File 98 2 1
FileSystem.cpp function ~File 102 17 3
FileSystem.cpp function open 122 34 5
FileSystem.cpp function getLine 159 23 3
FileSystem.cpp function readAll 185 13 2
FileSystem.cpp function putLine 201 13 1
FileSystem.cpp function getBlock 217 22 3
FileSystem.cpp function putBlock 242 14 2
FileSystem.cpp function getBuffer 259 18 2
FileSystem.cpp function putBuffer 280 17 2
FileSystem.cpp function isGood 300 9 1
FileSystem.cpp function flush 312 4 1
FileSystem.cpp function clear 319 6 1
FileSystem.cpp function close 328 15 3
FileSystem.cpp function exists 346 3 1
FileSystem.cpp function copy 352 3 1
FileSystem.cpp function remove 358 3 1
FileSystem.cpp function FileInfo 364 7 1
FileSystem.cpp function ~FileInfo 374 3 1
FileSystem.cpp function good 380 3 1
FileSystem.cpp function name 386 3 1
FileSystem.cpp function intToString 392 6 1
FileSystem.cpp function date 401 14 1
FileSystem.cpp function size 418 3 1
FileSystem.cpp function isArchive 424 3 1
FileSystem.cpp function isCompressed 430 3 1
FileSystem.cpp function isDirectory 436 3 1
FileSystem.cpp function isEncrypted 442 3 1
FileSystem.cpp function isHidden 448 3 1
FileSystem.cpp function isNormal 454 3 1
FileSystem.cpp function isOffLine 460 3 1
FileSystem.cpp function isReadOnly 466 3 1
FileSystem.cpp function isSystem 472 3 1
FileSystem.cpp function isTemporary 478 3 1
FileSystem.cpp function operator< 484 3 1
FileSystem.cpp function operator== 490 3 1
FileSystem.cpp function operator> 496 3 1
FileSystem.cpp function earlier 502 5 1
FileSystem.cpp function later 510 5 1
FileSystem.cpp function smaller 518 3 1
FileSystem.cpp function larger 524 3 1
FileSystem.cpp function FileInfo 364 7 1
FileSystem.cpp function ~FileInfo 374 3 1
FileSystem.cpp function good 380 3 1
FileSystem.cpp function name 386 3 1
FileSystem.cpp function intToString 392 6 1
FileSystem.cpp function date 401 14 1
FileSystem.cpp function size 418 3 1
FileSystem.cpp function isArchive 424 3 1
FileSystem.cpp function isCompressed 430 3 1
FileSystem.cpp function isDirectory 436 3 1
FileSystem.cpp function isEncrypted 442 3 1
FileSystem.cpp function isHidden 448 3 1
FileSystem.cpp function isNormal 454 3 1
FileSystem.cpp function isOffLine 460 3 1
FileSystem.cpp function isReadOnly 466 3 1
FileSystem.cpp function isSystem 472 3 1
FileSystem.cpp function isTemporary 478 3 1
FileSystem.cpp function operator< 484 3 1
FileSystem.cpp function operator== 490 3 1
FileSystem.cpp function operator> 496 3 1
FileSystem.cpp function earlier 502 5 1
FileSystem.cpp function later 510 5 1
FileSystem.cpp function smaller 518 3 1
FileSystem.cpp function larger 524 3 1
FileSystem.cpp function toLower 530 6 1
FileSystem.cpp function toUpper 540 6 1
FileSystem.cpp function getName 549 32 5
FileSystem.cpp function getExt 584 15 2
FileSystem.cpp function getPath 602 10 1
FileSystem.cpp function getFullFileSpec 615 8 1
FileSystem.cpp function fileSpec 626 16 2
FileSystem.cpp function toLower 530 6 1
FileSystem.cpp function toUpper 540 6 1
FileSystem.cpp function getName 549 32 5
FileSystem.cpp function getExt 584 15 2
FileSystem.cpp function getPath 602 10 1
FileSystem.cpp function getFullFileSpec 615 8 1
FileSystem.cpp function fileSpec 626 16 2
FileSystem.cpp function getCurrentDirectory 645 5 1
FileSystem.cpp function setCurrentDirectory 653 3 1
FileSystem.cpp function getFiles 659 16 2
FileSystem.cpp function getDirectories 678 16 2
FileSystem.cpp function create 697 3 1
FileSystem.cpp function exists 703 6 1
FileSystem.cpp function remove 712 3 1
FileSystem.cpp function getCurrentDirectory 645 5 1
FileSystem.cpp function setCurrentDirectory 653 3 1
FileSystem.cpp function getFiles 659 16 2
FileSystem.cpp function getDirectories 678 16 2
FileSystem.cpp function create 697 3 1
FileSystem.cpp function exists 703 6 1
FileSystem.cpp function remove 712 3 1
FileSystem.cpp class FileSystemSearch 30 14 10
FileSystem.cpp function FileSystemSearch 44 2 1
FileSystem.cpp function ~FileSystemSearch 45 2 1
FileSystem.cpp function close 46 2 1
FileSystem.cpp function firstFile 718 13 2
FileSystem.cpp function nextFile 734 6 1
FileSystem.cpp function firstDirectory 743 13 2
FileSystem.cpp function nextDirectory 759 6 1
FileSystem.cpp function title 770 4 1
FileSystem.cpp function main 775 399 31
FileSystem.cpp class FileSystemSearch 30 14 10
FileSystem.cpp function FileSystemSearch 44 2 1
FileSystem.cpp function ~FileSystemSearch 45 2 1
FileSystem.cpp function close 46 2 1
FileSystem.cpp function firstFile 718 13 2
FileSystem.cpp function nextFile 734 6 1
FileSystem.cpp function firstDirectory 743 13 2
FileSystem.cpp function nextDirectory 759 6 1
FileSystem.cpp function title 770 4 1
FileSystem.cpp function main 775 399 31
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
FileSystemTest.cpp class TestFile 27 107 15
FileSystemTest.cpp function TestFile 30 3 1
FileSystemTest.cpp function testName 34 6 1
FileSystemTest.cpp function testGetAndPutLine 42 22 3
FileSystemTest.cpp function testGetAndPutBlock 66 24 4
FileSystemTest.cpp function testExists 92 8 1
FileSystemTest.cpp function testCopyAndRemove 102 18 3
FileSystemTest.cpp function test 122 9 1
FileSystemTest.cpp class TestFileInfo 136 96 9
FileSystemTest.cpp function TestFileInfo 139 3 1
FileSystemTest.cpp function testConstruction 143 4 1
FileSystemTest.cpp function testName 148 9 1
FileSystemTest.cpp function testDate 158 11 1
FileSystemTest.cpp function testSize 170 16 2
FileSystemTest.cpp function testNameCompare 188 31 1
FileSystemTest.cpp function test 220 9 1
FileSystemTest.cpp class TestPath 234 90 8
FileSystemTest.cpp function TestPath 237 3 1
FileSystemTest.cpp function TestGetFullFileSpec 241 5 1
FileSystemTest.cpp function TestGetPath 247 10 1
FileSystemTest.cpp function TestGetName 258 13 1
FileSystemTest.cpp function TestGetExt 272 19 1
FileSystemTest.cpp function TestFileSpec 292 19 1
FileSystemTest.cpp function test 312 9 1
FileSystemTest.cpp class TestDirectory 326 82 6
FileSystemTest.cpp function TestDirectory 329 3 1
FileSystemTest.cpp function TestCreateRemoveExists 333 10 1
FileSystemTest.cpp function TestGetAndSetCurrentDirectory 344 11 1
FileSystemTest.cpp function TestGetFilesAndDirectories 356 41 1
FileSystemTest.cpp function test 398 7 1
FileSystemTest.cpp function test 410 12 1
FileSystemTest.cpp function main 423 7 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
IComm.h namespace MsgPassingCommunication 12 12 3
IComm.h class IComm 14 10 2
IComm.h function ~IComm 21 2 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
IPayLoad.h namespace NoSqlDb 21 8 3
IPayLoad.h struct IPayLoad 26 3 2
IPayLoad.h function ~IPayLoad 26 1 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Logger.h class Logger 45 18 2
Logger.h function Logger 46 2 1
Logger.h class StaticLogger 66 14 8
Logger.h function attach 67 2 1
Logger.h function start 68 2 1
Logger.h function stop 69 2 1
Logger.h function write 70 2 1
Logger.h function flush 71 2 1
Logger.h function title 72 2 1
Logger.h function instance 73 2 1
Logger.h struct Cosmetic 85 3 2
Logger.h function ~Cosmetic 85 2 1
Logger.h class Logger 45 18 38
Logger.h function Logger 46 2 1
Logger.h class StaticLogger 66 14 8
Logger.h function attach 67 2 1
Logger.h function start 68 2 1
Logger.h function stop 69 2 1
Logger.h function write 70 2 1
Logger.h function flush 71 2 1
Logger.h function title 72 2 1
Logger.h function instance 73 2 1
Logger.h struct Cosmetic 85 3 2
Logger.h function ~Cosmetic 85 2 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Logger.cpp function write 22 4 1
Logger.cpp function flush 29 8 2
Logger.cpp function title 38 4 1
Logger.cpp function attach 44 4 1
Logger.cpp function start 51 19 4
Logger.cpp function void 55 11 3
Logger.cpp function stop 73 11 2
Logger.cpp function ~Logger 87 3 1
Logger.cpp function write 22 4 1
Logger.cpp function flush 29 8 2
Logger.cpp function title 38 4 1
Logger.cpp function attach 44 4 1
Logger.cpp function start 51 19 4
Logger.cpp function void 55 11 3
Logger.cpp function stop 73 11 2
Logger.cpp function ~Logger 87 3 1
Logger.cpp function main 98 26 1
Logger.cpp function main 98 26 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
MainWindow.g.cs namespace WpfApp1 35 73 6
MainWindow.g.cs class MainWindow 41 67 5
MainWindow.g.cs function DebuggerNonUserCodeAttribute 66 13 2
MainWindow.g.cs function DebuggerNonUserCodeAttribute 86 20 2
MainWindow.g.cs namespace WpfApp1 35 73 6
MainWindow.g.cs class MainWindow 41 67 5
MainWindow.g.cs function DebuggerNonUserCodeAttribute 66 13 2
MainWindow.g.cs function DebuggerNonUserCodeAttribute 86 20 2
MainWindow.g.cs namespace WpfApp1 35 598 6
MainWindow.g.cs class MainWindow 41 592 5
MainWindow.g.cs function DebuggerNonUserCodeAttribute 378 13 2
MainWindow.g.cs function DebuggerNonUserCodeAttribute 398 233 2
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
MainWindow.g.i.cs namespace WpfApp1 35 73 6
MainWindow.g.i.cs class MainWindow 41 67 5
MainWindow.g.i.cs function DebuggerNonUserCodeAttribute 66 13 2
MainWindow.g.i.cs function DebuggerNonUserCodeAttribute 86 20 2
MainWindow.g.i.cs namespace WpfApp1 35 73 6
MainWindow.g.i.cs class MainWindow 41 67 5
MainWindow.g.i.cs function DebuggerNonUserCodeAttribute 66 13 2
MainWindow.g.i.cs function DebuggerNonUserCodeAttribute 86 20 2
MainWindow.g.i.cs namespace WpfApp1 35 598 6
MainWindow.g.i.cs class MainWindow 41 592 5
MainWindow.g.i.cs function DebuggerNonUserCodeAttribute 378 13 2
MainWindow.g.i.cs function DebuggerNonUserCodeAttribute 398 233 2
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
MainWindow.xaml.cs namespace WpfApp1 59 976 123
MainWindow.xaml.cs class MainWindow 61 974 122
MainWindow.xaml.cs function MainWindow 64 4 1
MainWindow.xaml.cs function MainWindow 71 5 1
MainWindow.xaml.cs function processMessages 91 17 3
MainWindow.xaml.cs function clearDirs 111 3 1
MainWindow.xaml.cs function addDir 117 3 1
MainWindow.xaml.cs function insertParent 123 3 1
MainWindow.xaml.cs function clearFiles 129 3 1
MainWindow.xaml.cs function addFile 135 3 1
MainWindow.xaml.cs function addClientProc 141 3 1
MainWindow.xaml.cs function DispatcherLoadGetDirs 147 38 10
MainWindow.xaml.cs function Invoke 156 1 1
MainWindow.xaml.cs function Invoke 170 1 1
MainWindow.xaml.cs function Invoke 180 1 1
MainWindow.xaml.cs function DispatcherLoadGetFiles 188 30 8
MainWindow.xaml.cs function Invoke 197 1 1
MainWindow.xaml.cs function Invoke 211 1 1
MainWindow.xaml.cs function DispatcherCheckinFiles 221 27 4
MainWindow.xaml.cs function Invoke 243 1 1
MainWindow.xaml.cs function DispatcherCheckoutFiles 251 24 4
MainWindow.xaml.cs function Invoke 270 1 1
MainWindow.xaml.cs function DispatcherViewMetaData 278 30 5
MainWindow.xaml.cs function Invoke 303 1 1
MainWindow.xaml.cs function DispatcherViewFile 311 40 6
MainWindow.xaml.cs function Invoke 346 1 1
MainWindow.xaml.cs function DispatcherQueryResult 354 25 8
MainWindow.xaml.cs function Invoke 360 1 1
MainWindow.xaml.cs function Invoke 372 1 1
MainWindow.xaml.cs function DispatcherNoParentFile 382 25 8
MainWindow.xaml.cs function Invoke 388 1 1
MainWindow.xaml.cs function Invoke 400 1 1
MainWindow.xaml.cs function loadDispatcher 410 10 1
MainWindow.xaml.cs function connectServer 423 11 1
MainWindow.xaml.cs function addCategory 437 3 1
MainWindow.xaml.cs function addDependency 443 3 1
MainWindow.xaml.cs function checkInFile 449 17 1
MainWindow.xaml.cs function getFilesCheckOut 469 15 1
MainWindow.xaml.cs function checkOutFile 487 18 1
MainWindow.xaml.cs function changeStatus 508 13 1
MainWindow.xaml.cs function getFilesBrowse 524 15 1
MainWindow.xaml.cs function requestMetaData 542 13 1
MainWindow.xaml.cs function viewFile 558 17 1
MainWindow.xaml.cs function queryGetFiles 578 18 1
MainWindow.xaml.cs function queryNoParents 599 12 1
MainWindow.xaml.cs function testCases1 614 30 1
MainWindow.xaml.cs function testCases2 647 30 1
MainWindow.xaml.cs function Window_Loaded 680 41 3
MainWindow.xaml.cs function Connect_Server 724 8 1
MainWindow.xaml.cs function CheckIn_Loaded 736 20 3
MainWindow.xaml.cs function CheckIn_Files 759 17 2
MainWindow.xaml.cs function Add_Category 779 13 3
MainWindow.xaml.cs function Add_Dependency 795 13 3
MainWindow.xaml.cs function CheckOut_GetFiles 811 4 1
MainWindow.xaml.cs function CheckOut_Files 818 12 3
MainWindow.xaml.cs function Change_Status 833 12 3
MainWindow.xaml.cs function Browse_GetFiles 848 4 1
MainWindow.xaml.cs function MetaData_Request 855 13 2
MainWindow.xaml.cs function View_File 871 14 2
MainWindow.xaml.cs function Query_GetFiles 888 15 2
MainWindow.xaml.cs function Query_NoParents 906 4 1
MainWindow.xaml.cs function removeFirstDir 913 6 1
MainWindow.xaml.cs function DirList_MouseDoubleClick 922 34 5
MainWindow.xaml.cs function DirListCheckout_MouseDoubleClick 959 35 3
MainWindow.xaml.cs function DirListBrowse_MouseDoubleClick 997 36 3
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Message.h namespace MsgPassingCommunication 37 86 6
Message.h struct EndPoint 42 9 4
public data: Address address ;
public data: Port port ;
Message.h function EndPoint 51 2 1
Message.h function toString 55 3 1
Message.h function fromString 60 10 1
Message.h class Message 76 47 1
Message.h namespace MsgPassingCommunication 33 84 78
Message.h struct EndPoint 38 9 4
public data: Address address ;
public data: Port port ;
Message.h function EndPoint 47 2 1
Message.h function toString 51 3 1
Message.h function fromString 56 10 1
Message.h class Message 72 45 73
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Message.cpp function Message 14 2 1
Message.cpp function Message 20 4 1
Message.cpp function attributes 27 3 1
Message.cpp function attribute 33 3 1
Message.cpp function clear 39 3 1
Message.cpp function keys 45 9 2
Message.cpp function containsKey 57 5 1
Message.cpp function remove 65 8 2
Message.cpp function value 76 8 2
Message.cpp function to 87 7 2
Message.cpp function to 97 3 1
Message.cpp function from 103 7 2
Message.cpp function from 113 3 1
Message.cpp function name 119 7 2
Message.cpp function name 129 3 1
Message.cpp function command 135 7 2
Message.cpp function command 145 3 1
Message.cpp function file 151 7 2
Message.cpp function file 161 3 1
Message.cpp function contentLength 167 8 2
Message.cpp function contentLength 178 3 1
Message.cpp function toString 184 8 2
Message.cpp function attribName 195 6 1
Message.cpp function attribValue 204 6 1
Message.cpp function fromString 213 10 2
Message.cpp function show 230 10 2
Message.cpp function Message 14 2 1
Message.cpp function Message 20 4 1
Message.cpp function attributes 27 3 1
Message.cpp function attribute 33 3 1
Message.cpp function clear 39 3 1
Message.cpp function keys 45 9 2
Message.cpp function containsKey 57 5 1
Message.cpp function to 65 7 2
Message.cpp function to 75 3 1
Message.cpp function from 81 7 2
Message.cpp function from 91 3 1
Message.cpp function name 97 7 2
Message.cpp function name 107 3 1
Message.cpp function command 113 7 2
Message.cpp function command 123 3 1
Message.cpp function file 129 7 2
Message.cpp function file 139 3 1
Message.cpp function contentLength 145 8 2
Message.cpp function contentLength 156 3 1
Message.cpp function toString 162 8 2
Message.cpp function attribName 173 6 1
Message.cpp function attribValue 182 6 1
Message.cpp function fromString 191 10 2
Message.cpp function show 208 10 2
Message.cpp function main 245 56 1
Message.cpp function main 223 56 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
PayLoad.h namespace NoSqlDb 54 85 20
PayLoad.h class PayLoad 56 36 19
PayLoad.h function PayLoad 58 2 1
PayLoad.h function operator= 62 4 1
PayLoad.h function operatorstd:: 65 2 1
PayLoad.h function value 67 2 1
PayLoad.h function value 68 2 1
PayLoad.h function value 69 2 1
PayLoad.h function categories 71 2 1
PayLoad.h function categories 72 2 1
PayLoad.h function hasCategory 76 3 1
PayLoad.h function checkin_status 79 2 1
PayLoad.h function checkin_status 80 2 1
PayLoad.h function checkin_status 81 2 1
PayLoad.h function identify 96 3 1
PayLoad.h function showPayLoadHeaders 103 12 1
PayLoad.h function showElementPayLoad 118 10 2
PayLoad.h function showDb 130 8 2
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
PayLoad.cpp function main 15 16 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Process.h class Process 38 19 11
Process.h function ~Process 40 2 1
Process.h function Process 65 7 1
Process.h function application 97 3 1
Process.h function commandLine 103 3 1
Process.h function title 111 4 1
Process.h function create 118 26 2
Process.h function setCallBackProcessing 151 3 1
Process.h function callback 157 3 1
Process.h function registerCallback 171 5 1
Process.h function ] 57 1 1
Process.h function wToS 75 8 2
Process.h function sToW 86 8 2
Process.h function WaitOrTimerCallback 163 5 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Process.cpp function 12 26 2
Process.cpp function 28 1 1
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Query.h namespace NoSqlDb 34 243 33
Query.h class Conditions 44 50 21
Query.h function value 48 1 1
Query.h function key 51 2 1
Query.h function name 53 1 1
Query.h function description 55 2 1
Query.h function lowerBound 57 2 1
Query.h function upperBound 58 2 1
Query.h function children 60 2 1
Query.h function version 62 2 1
Query.h function match 98 11 3
Query.h function matchKey 113 6 1
Query.h function matchName 123 6 1
Query.h function matchDescription 133 7 1
Query.h function matchDateTimeInterval 144 8 1
Query.h function matchChildren 156 12 2
Query.h function matchVersion 171 9 1
Query.h function select 219 11 2
Query.h class Query 186 22 11
Query.h function Query 187 2 1
Query.h function from 197 2 1
Query.h function keys 201 2 1
Query.h function identify 212 3 1
Query.h function select 238 10 2
Query.h function query_or 252 11 2
Query.h function show 269 8 2
Query.h namespace NoSqlDb 34 243 33
Query.h class Conditions 44 50 21
Query.h function value 48 1 1
Query.h function key 51 2 1
Query.h function name 53 1 1
Query.h function description 55 2 1
Query.h function lowerBound 57 2 1
Query.h function upperBound 58 2 1
Query.h function children 60 2 1
Query.h function version 62 2 1
Query.h function match 98 11 3
Query.h function matchKey 113 6 1
Query.h function matchName 123 6 1
Query.h function matchDescription 133 7 1
Query.h function matchDateTimeInterval 144 8 1
Query.h function matchChildren 156 12 2
Query.h function matchVersion 171 9 1
Query.h function select 219 11 2
Query.h class Query 186 22 11
Query.h function Query 187 2 1
Query.h function from 197 2 1
Query.h function keys 201 2 1
Query.h function identify 212 3 1
Query.h function select 238 10 2
Query.h function query_or 252 11 2
Query.h function show 269 8 2
file name type name line size cplx
----------------------- ---------- --------------------------------- ------ ------ ------
Query.cpp function testR3a 21 29 1
Query.cpp function testR3b 53 27 3
Query.cpp function children 69 1 1
Query.cpp function children 72 1 1
Query.cpp function testR6 83 41 2
Query.cpp function testR7 126 27 1
Query.cpp function testR9 154 40 3
Query.cpp function ] 177 2 1
Query.cpp function ] 184 2 1
Query.cpp function main 196 15 1
Query.cpp function testR3a 21 29 1
Query.cpp function testR3b 53 27 3
Query.cpp function children 69 1 1