-
Notifications
You must be signed in to change notification settings - Fork 0
/
rusty-tags.vi
1870 lines (1870 loc) · 276 KB
/
rusty-tags.vi
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
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
ATOMIC_USIZE_INIT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/stable.rs /^pub const ATOMIC_USIZE_INIT: AtomicUsize = AtomicUsize(atomic::ATOMIC_USIZE_INIT);$/;" c
Alignment /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^pub enum Alignment {$/;" g
ArgGuard /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^pub trait ArgGuard {$/;" t
AsmOperand /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction.rs /^pub struct AsmOperand {$/;" s
AssemblyDef /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction_set.rs /^pub struct AssemblyDef {$/;" s
Associativity /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/shunting_yard.rs /^enum Associativity {$/;" g
AtomicElisionExt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/elision.rs /^pub trait AtomicElisionExt {$/;" t
AtomicUsize /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/stable.rs /^pub struct AtomicUsize(atomic::AtomicUsize);$/;" s
Attr /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^pub enum Attr {$/;" g
BIT_SIZE /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/backtrack.rs /^const BIT_SIZE: usize = 32;$/;" c
BLACK /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const BLACK: Color = 0;$/;" c
BLOCK_SIZE /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^const BLOCK_SIZE: usize = 16;$/;" c
BLUE /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const BLUE: Color = 4;$/;" c
BRIGHT_BLACK /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const BRIGHT_BLACK: Color = 8;$/;" c
BRIGHT_BLUE /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const BRIGHT_BLUE: Color = 12;$/;" c
BRIGHT_CYAN /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const BRIGHT_CYAN: Color = 14;$/;" c
BRIGHT_GREEN /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const BRIGHT_GREEN: Color = 10;$/;" c
BRIGHT_MAGENTA /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const BRIGHT_MAGENTA: Color = 13;$/;" c
BRIGHT_RED /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const BRIGHT_RED: Color = 9;$/;" c
BRIGHT_WHITE /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const BRIGHT_WHITE: Color = 15;$/;" c
BRIGHT_YELLOW /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const BRIGHT_YELLOW: Color = 11;$/;" c
BYTE_FREQUENCIES /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/freqs.rs /^pub const BYTE_FREQUENCIES: [u8; 256] = [$/;" c
BYTE_SIZE_TO_BITS /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction.rs /^const BYTE_SIZE_TO_BITS: u8 = 8; \/\/ In the SIC machine, a byte is 3 bits$/;" c
BaseRange /home/oddcoder/projects/sickassembler/src/lib/basic_types/base_table.rs /^struct BaseRange {$/;" s
Bits /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/backtrack.rs /^type Bits = u32;$/;" T
Bounded /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/backtrack.rs /^pub struct Bounded<'a, 'm, 'r, 's, I> {$/;" s
Byte /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^struct Byte(u16);$/;" s
ByteClassSet /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^struct ByteClassSet([bool; 256]);$/;" s
ByteInput /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^pub struct ByteInput<'t> {$/;" s
CSV_S /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ static CSV_S: &'static str = "ABC,DEFG,HIJKLMN\\n\\$/;" c
CYAN /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const CYAN: Color = 6;$/;" c
Cache /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/backtrack.rs /^pub struct Cache {$/;" s
Cache /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^pub struct Cache {$/;" s
Cache /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/pikevm.rs /^pub struct Cache {$/;" s
CacheInner /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^struct CacheInner {$/;" s
CaptureMatches /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^pub struct CaptureMatches<'r, 't>(re_trait::CaptureMatches<'t, ExecNoSync<'r>>);$/;" s
CaptureMatches /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^pub struct CaptureMatches<'t, R>(Matches<'t, R>)$/;" s
CaptureMatches /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub struct CaptureMatches<'r, 't>(CaptureMatchesInner<'r, 't>);$/;" s
CaptureMatchesInner /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^enum CaptureMatchesInner<'r, 't> {$/;" g
CaptureNames /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^pub struct CaptureNames<'r>(::std::slice::Iter<'r, Option<String>>);$/;" s
CaptureNames /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub struct CaptureNames<'r>(_CaptureNames<'r>);$/;" s
CaptureRef /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/expand.rs /^struct CaptureRef<'a> {$/;" s
Captures /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^pub struct Captures<'t> {$/;" s
Captures /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub struct Captures<'t> {$/;" s
CapturesDebug /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^struct CapturesDebug<'c, 't: 'c>(&'c Captures<'t>);$/;" s
CapturesDebug /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^struct CapturesDebug<'c, 't: 'c>(&'c Captures<'t>);$/;" s
Cell /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/cell.rs /^pub struct Cell {$/;" s
Char /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^pub struct Char(u32);$/;" s
CharInput /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^pub struct CharInput<'t>(&'t [u8]);$/;" s
Color /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub type Color = u16;$/;" T
ColumnIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^pub struct ColumnIter<'a>(std::slice::Iter<'a, Row>, usize);$/;" s
ColumnIterMut /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^pub struct ColumnIterMut<'a>(std::slice::IterMut<'a, Row>, usize);$/;" s
ColumnPosition /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^pub enum ColumnPosition {$/;" g
CompileClass /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^struct CompileClass<'a, 'b> {$/;" s
Compiler /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^pub struct Compiler {$/;" s
Condvar /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/condvar.rs /^pub struct Condvar {$/;" s
Context /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^pub struct Context<'a> {$/;" s
ContextHashMap /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^type ContextHashMap<K, V> = FnvHashMap<K, V>;$/;" T
ContextProvider /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^pub trait ContextProvider {$/;" t
CsectSymTab /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^struct CsectSymTab {$/;" s
DEFAULT_CONTROL_SECTION /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ const DEFAULT_CONTROL_SECTION: &str = "";$/;" c
DONE_BIT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^const DONE_BIT: U8 = 1;$/;" c
Elem /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^ type Elem = u8;$/;" T
Elem /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^ type Elem;$/;" T
EmptyFlags /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^struct EmptyFlags {$/;" s
EmptyLook /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^pub enum EmptyLook {$/;" g
Err /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ type Err = ();$/;" T
Err /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ type Err = Error;$/;" T
Err /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ type Err = Error;$/;" T
Err /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ type Err = Error;$/;" T
Error /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/lib.rs /^pub enum Error {$/;" g
Error /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/error.rs /^pub enum Error {$/;" g
Error /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^pub enum Error {$/;" g
Error /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^pub enum Error {$/;" g
Error /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^pub enum Error {$/;" g
Exec /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^pub struct Exec {$/;" s
ExecBuilder /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^pub struct ExecBuilder {$/;" s
ExecNoSync /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^pub struct ExecNoSync<'c> {$/;" s
ExecNoSyncStr /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^pub struct ExecNoSyncStr<'c>(ExecNoSync<'c>);$/;" s
ExecReadOnly /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^struct ExecReadOnly {$/;" s
Expr /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^pub struct Expr {$/;" s
ExprVisitor /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ struct ExprVisitor;$/;" s
FNV_PRIME /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ const FNV_PRIME: u64 = 1099511628211;$/;" c
Fail /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^pub enum Fail {$/;" g
FailType /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^pub enum FailType {$/;" g
FileHandler /home/oddcoder/projects/sickassembler/src/lib/filehandler.rs /^pub struct FileHandler {$/;" s
Filter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/regex.rs /^pub struct Filter {$/;" s
Filter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/string.rs /^pub struct Filter {$/;" s
Flags /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^struct Flags {$/;" s
Flags /home/oddcoder/projects/sickassembler/src/lib/basic_types/flags.rs /^pub enum Flags {$/;" g
FollowEpsilon /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/pikevm.rs /^enum FollowEpsilon {$/;" g
Foo /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ struct Foo(Arc<AtomicUsize>);$/;" s
Foo /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ struct Foo(Arc<AtomicUsize>);$/;" s
Format /home/oddcoder/projects/sickassembler/src/lib/basic_types/formats.rs /^pub enum Format {$/;" g
FormatBuilder /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^pub struct FormatBuilder {$/;" s
FormatOp /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^enum FormatOp {$/;" g
FormatState /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^enum FormatState {$/;" g
Fsm /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^pub struct Fsm<'a> {$/;" s
Fsm /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/pikevm.rs /^pub struct Fsm<'r, I> {$/;" s
FuncEvalError /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^pub enum FuncEvalError {$/;" g
GREEN /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const GREEN: Color = 2;$/;" c
GuardedFunc /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^type GuardedFunc<'a> = Rc<Fn(&[f64]) -> Result<f64, FuncEvalError> + 'a>;$/;" T
HasArg /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^pub enum HasArg {$/;" g
Hole /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^enum Hole {$/;" g
INITIALIZED /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^const INITIALIZED: usize = 2;$/;" c
INITIALIZING /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^const INITIALIZING: usize = 1;$/;" c
Input /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^pub trait Input {$/;" t
InputAt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^pub struct InputAt {$/;" s
Inst /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^pub enum Inst {$/;" g
InstBytes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^pub struct InstBytes {$/;" s
InstChar /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^pub struct InstChar {$/;" s
InstEmptyLook /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^pub struct InstEmptyLook {$/;" s
InstHole /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^enum InstHole {$/;" g
InstPtr /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^type InstPtr = u32;$/;" T
InstPtr /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^pub type InstPtr = usize;$/;" T
InstPtrs /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^struct InstPtrs<'a> {$/;" s
InstRanges /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^pub struct InstRanges {$/;" s
InstSave /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^pub struct InstSave {$/;" s
InstSplit /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^pub struct InstSplit {$/;" s
Instruction /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction.rs /^pub struct Instruction {$/;" s
IntType /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/elision.rs /^ type IntType = usize;$/;" T
IntType /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/elision.rs /^ type IntType;$/;" T
IntoIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ type IntoIter=Iter<'a, Row>;$/;" T
IntoIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ type IntoIter=IterMut<'a, Row>;$/;" T
IntoIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ type IntoIter=Iter<'a, Cell>;$/;" T
IntoIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ type IntoIter=IterMut<'a, Cell>;$/;" T
IntoIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^ type IntoIter = slice::Iter<'a, Inst>;$/;" T
IntoIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_set.rs /^ type IntoIter = SetMatchesIntoIter;$/;" T
IntoIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_set.rs /^ type IntoIter = SetMatchesIter<'a>;$/;" T
IntoIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/sparse.rs /^ type IntoIter = slice::Iter<'a, usize>;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ type Item = &'a Cell;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ type Item = &'a mut Cell;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ type Item=&'a Row;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ type Item=&'a mut Row;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ type Item=&'a Cell;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ type Item=&'a mut Cell;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ type Item = usize;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ type Item = &'a [u8];$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^ type Item = &'a Inst;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ type Item = &'t [u8];$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ type Item = Captures<'t>;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ type Item = Match<'t>;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ type Item = Option<&'r str>;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ type Item = Option<Match<'t>>;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_set.rs /^ type Item = usize;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^ type Item = (usize, usize);$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^ type Item = Locations;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^ type Item = Option<(usize, usize)>;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ type Item = &'t str;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ type Item = (&'n str, usize);$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ type Item = Captures<'t>;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ type Item = Match<'t>;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ type Item = Option<&'r str>;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ type Item = Option<Match<'t>>;$/;" T
Item /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/sparse.rs /^ type Item = &'a usize;$/;" T
J /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ const J: u32 = 1000;$/;" c
Job /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/backtrack.rs /^enum Job {$/;" g
K /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ const K: u32 = 3;$/;" c
LOCKED_BIT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^const LOCKED_BIT: U8 = 4;$/;" c
LOCKED_BIT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_mutex.rs /^const LOCKED_BIT: U8 = 1;$/;" c
LOCKED_BIT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_rwlock.rs /^const LOCKED_BIT: usize = 2;$/;" c
LOCK_DURATION_MILLIS /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^const LOCK_DURATION_MILLIS: u64 = 50;$/;" c
LOG_LEVEL_NAMES /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^static LOG_LEVEL_NAMES: [&'static str; 6] = ["OFF", "ERROR", "WARN", "INFO",$/;" c
Lazy /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/core_lazy.rs /^pub struct Lazy<T: Sync>(Once<T>);$/;" s
Lazy /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/lazy.rs /^pub struct Lazy<T: Sync>(pub *const T, pub Once);$/;" s
Lazy /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/nightly_lazy.rs /^pub struct Lazy<T: Sync>(UnsafeCell<Option<T>>, Once);$/;" s
LazyStatic /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/lib.rs /^pub trait LazyStatic {$/;" t
LengthLimit /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^enum LengthLimit {$/;" g
LinePosition /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^pub enum LinePosition {$/;" g
LineSeparator /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^pub struct LineSeparator {$/;" s
Literal /home/oddcoder/projects/sickassembler/src/lib/basic_types/literal.rs /^pub struct Literal {$/;" s
LiteralIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^pub enum LiteralIter<'a> {$/;" g
LiteralSearcher /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^pub struct LiteralSearcher {$/;" s
Locations /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^pub struct Locations(Vec<Slot>);$/;" s
Log /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^pub trait Log: Sync+Send {$/;" t
LogBuilder /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^pub struct LogBuilder {$/;" s
LogDirective /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^struct LogDirective {$/;" s
LogLevel /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^pub enum LogLevel {$/;" g
LogLevelFilter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^pub enum LogLevelFilter {$/;" g
LogLocation /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^pub struct LogLocation {$/;" s
LogMetadata /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^pub struct LogMetadata<'a> {$/;" s
LogRecord /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^pub struct LogRecord<'a> {$/;" s
Logger /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^pub struct Logger {$/;" s
LoggerGuard /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^struct LoggerGuard(&'static Log);$/;" s
M /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ const M: u32 = 1000;$/;" c
MAGENTA /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const MAGENTA: Color = 5;$/;" c
MAX_LOG_LEVEL_FILTER /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^static MAX_LOG_LEVEL_FILTER: AtomicUsize = ATOMIC_USIZE_INIT;$/;" c
MAX_SIZE_BYTES /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/backtrack.rs /^const MAX_SIZE_BYTES: usize = 256 * (1 << 10); \/\/ 256 KB$/;" c
MAX_TEDDY_LITERALS /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ const MAX_TEDDY_LITERALS: usize = 32;$/;" c
Mask /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^struct Mask {$/;" s
Masks /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^struct Masks(Vec<Mask>);$/;" s
MasterTable /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^pub struct MasterTable {$/;" s
Match /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^pub struct Match<'t> {$/;" s
Match /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub struct Match<'t> {$/;" s
Match /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^pub struct Match {$/;" s
Match /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_fallback/teddy128.rs /^pub struct Match {$/;" s
MatchLiteralType /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^enum MatchLiteralType {$/;" g
MatchNfaType /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^enum MatchNfaType {$/;" g
MatchType /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^enum MatchType {$/;" g
Matcher /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^enum Matcher {$/;" g
Matches /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^pub struct Matches {$/;" s
Matches /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^pub struct Matches<'r, 't>(re_trait::Matches<'t, ExecNoSync<'r>>);$/;" s
Matches /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^pub struct Matches<'t, R> where R: RegularExpression, R::Text: 't {$/;" s
Matches /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub struct Matches<'r, 't>(MatchesInner<'r, 't>);$/;" s
MatchesInner /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^enum MatchesInner<'r, 't> {$/;" g
MaxLogLevelFilter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^pub struct MaxLogLevelFilter(());$/;" s
MaybeInst /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^enum MaybeInst {$/;" g
Mutex /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^pub struct Mutex<T: ?Sized> {$/;" s
MutexGuard /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^pub struct MutexGuard<'a, T: ?Sized + 'a> {$/;" s
MutexGuardRef /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/lib.rs /^pub type MutexGuardRef<'a, T, U = T> = OwningRef<MutexGuard<'a, T>, U>;$/;" T
N /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/condvar.rs /^ const N: usize = 10;$/;" c
N /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ const N: u32 = 10;$/;" c
NEWLINE /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/utils.rs /^pub static NEWLINE: &'static [u8] = b"\\n";$/;" c
NEWLINE /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/utils.rs /^pub static NEWLINE: &'static [u8] = b"\\r\\n";$/;" c
Name /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^enum Name {$/;" g
NamedGroups /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^enum NamedGroups {$/;" g
NamedGroupsIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^enum NamedGroupsIter<'n> {$/;" g
NoExpand /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^pub struct NoExpand<'t>(pub &'t [u8]);$/;" s
NoExpand /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub struct NoExpand<'t>(pub &'t str);$/;" s
NonCopy /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ struct NonCopy(i32);$/;" s
NonCopy /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ struct NonCopy(i32);$/;" s
NopLogger /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^struct NopLogger;$/;" s
O /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^ static O: Once = ONCE_INIT;$/;" c
ONCE_INIT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^pub const ONCE_INIT: Once = Once(ATOMIC_U8_INIT);$/;" c
OP_CODE_LEN_F3_F4 /home/oddcoder/projects/sickassembler/src/lib/basic_types/flags.rs /^const OP_CODE_LEN_F3_F4: u8 = 6; \/\/ Length of the opcode field in format 3\/4$/;" c
Occur /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^pub enum Occur {$/;" g
Once /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^pub struct Once(AtomicU8);$/;" s
OnceState /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^pub enum OnceState {$/;" g
OperandType /home/oddcoder/projects/sickassembler/src/lib/basic_types/operands.rs /^pub enum OperandType {$/;" g
Operation /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/tokenizer.rs /^pub enum Operation {$/;" g
Opt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^struct Opt {$/;" s
OptGroup /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^struct OptGroup {$/;" s
Options /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^pub struct Options {$/;" s
Optval /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^enum Optval {$/;" g
Output /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ type Output = Row;$/;" T
Output /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ type Output = TableSlice<'a>;$/;" T
Output /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ type Output: 'a;$/;" T
Output /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ type Output = Cell;$/;" T
Output /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ type Output = [u8];$/;" T
Output /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ type Output = str;$/;" T
Output /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ type Output: Write;$/;" T
Output /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ type Output = T;$/;" T
Output /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^ type Output = T;$/;" T
PARKED_BIT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^const PARKED_BIT: U8 = 8;$/;" c
PARKED_BIT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_mutex.rs /^const PARKED_BIT: U8 = 2;$/;" c
PARKED_BIT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_rwlock.rs /^const PARKED_BIT: usize = 1;$/;" c
POISON_BIT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^const POISON_BIT: U8 = 2;$/;" c
Packet /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ struct Packet<T>(Arc<(Mutex<T>, Condvar)>);$/;" s
PanicGuard /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/condvar.rs /^ struct PanicGuard<'a>(&'a Condvar);$/;" s
PanicGuard /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^ struct PanicGuard<'a>(&'a Once);$/;" s
Param /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^pub enum Param {$/;" g
ParenState /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/tokenizer.rs /^enum ParenState {$/;" g
ParseError /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/tokenizer.rs /^pub enum ParseError {$/;" g
Parsed /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^struct Parsed {$/;" s
ParsingStyle /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^pub enum ParsingStyle {$/;" g
Patch /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^struct Patch {$/;" s
Plugin /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_plugin.rs /^pub struct Plugin {$/;" s
Program /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^pub struct Program {$/;" s
ProgramCache /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^pub type ProgramCache = RefCell<ProgramCacheInner>;$/;" T
ProgramCacheInner /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^pub struct ProgramCacheInner {$/;" s
RED /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const RED: Color = 1;$/;" c
REFCOUNT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^static REFCOUNT: AtomicUsize = ATOMIC_USIZE_INIT;$/;" c
RPNError /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/shunting_yard.rs /^pub enum RPNError {$/;" g
RawMutex /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_mutex.rs /^pub struct RawMutex {$/;" s
RawProgram /home/oddcoder/projects/sickassembler/src/lib/htme/raw_program.rs /^pub struct RawProgram {$/;" s
RawReentrantMutex /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_remutex.rs /^pub struct RawReentrantMutex {$/;" s
RawRwLock /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_rwlock.rs /^pub struct RawRwLock {$/;" s
ReentrantMutex /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/remutex.rs /^pub struct ReentrantMutex<T: ?Sized> {$/;" s
ReentrantMutexGuard /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/remutex.rs /^pub struct ReentrantMutexGuard<'a, T: ?Sized + 'a> {$/;" s
ReentrantMutexGuardRef /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/lib.rs /^pub type ReentrantMutexGuardRef<'a, T, U = T> = OwningRef<ReentrantMutexGuard<'a, T>, U>;$/;" T
Ref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/expand.rs /^enum Ref<'a> {$/;" g
Regex /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^pub struct Regex(Exec);$/;" s
Regex /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub struct Regex(#[doc(hidden)] pub _Regex);$/;" s
RegexBuilder /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^pub struct RegexBuilder(RegexOptions);$/;" s
RegexOptions /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^pub struct RegexOptions {$/;" s
RegexSearcher /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/pattern.rs /^pub struct RegexSearcher<'r, 't> {$/;" s
RegexSet /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_set.rs /^pub struct RegexSet(Exec);$/;" s
RegexSetBuilder /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^pub struct RegexSetBuilder(RegexOptions);$/;" s
Register /home/oddcoder/projects/sickassembler/src/lib/basic_types/register.rs /^pub enum Register {$/;" g
RegularExpression /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^pub trait RegularExpression: Sized {$/;" t
Replacer /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^pub trait Replacer {$/;" t
Replacer /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub trait Replacer {$/;" t
Result /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^pub type Result = result::Result<Matches, Fail>;$/;" T
Result /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^type Result = result::Result<Patch, Error>;$/;" T
Result /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^pub enum Result<T> {$/;" g
Result /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^pub type Result<T> = std::result::Result<T, Error>;$/;" T
Row /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^pub struct Row {$/;" s
RwLock /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^pub struct RwLock<T: ?Sized> {$/;" s
RwLockReadGuard /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^pub struct RwLockReadGuard<'a, T: ?Sized + 'a> {$/;" s
RwLockReadGuardRef /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/lib.rs /^pub type RwLockReadGuardRef<'a, T, U = T> = OwningRef<RwLockReadGuard<'a, T>, U>;$/;" T
RwLockWriteGuard /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^pub struct RwLockWriteGuard<'a, T: ?Sized + 'a> {$/;" s
RwLockWriteGuardRef /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/lib.rs /^pub type RwLockWriteGuardRef<'a, T, U = T> = OwningRef<RwLockWriteGuard<'a, T>, U>;$/;" T
SHARED_COUNT_INC /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_rwlock.rs /^const SHARED_COUNT_INC: usize = 4;$/;" c
SHARED_COUNT_MASK /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_rwlock.rs /^const SHARED_COUNT_MASK: usize = !3;$/;" c
SHARED_COUNT_SHIFT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_rwlock.rs /^const SHARED_COUNT_SHIFT: usize = 2;$/;" c
STATE /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^static STATE: AtomicUsize = ATOMIC_USIZE_INIT;$/;" c
STATE_DEAD /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^const STATE_DEAD: StatePtr = STATE_UNKNOWN + 1;$/;" c
STATE_MATCH /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^const STATE_MATCH: StatePtr = 1<<29;$/;" c
STATE_MAX /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^const STATE_MAX: StatePtr = STATE_MATCH - 1;$/;" c
STATE_QUIT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^const STATE_QUIT: StatePtr = STATE_DEAD + 1;$/;" c
STATE_START /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^const STATE_START: StatePtr = 1<<30;$/;" c
STATE_UNKNOWN /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^const STATE_UNKNOWN: StatePtr = 1<<31;$/;" c
Searcher /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/pattern.rs /^ type Searcher = RegexSearcher<'r, 't>;$/;" T
SetLoggerError /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^pub struct SetLoggerError(());$/;" s
SetMatches /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_set.rs /^pub struct SetMatches {$/;" s
SetMatchesIntoIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_set.rs /^pub struct SetMatchesIntoIter(iter::Enumerate<vec::IntoIter<bool>>);$/;" s
SetMatchesIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_set.rs /^pub struct SetMatchesIter<'a>(iter::Enumerate<slice::Iter<'a, bool>>);$/;" s
ShutdownLoggerError /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^pub struct ShutdownLoggerError(());$/;" s
SingleByteSet /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^struct SingleByteSet {$/;" s
SingleSearch /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^pub struct SingleSearch {$/;" s
Slice /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^pub trait Slice<'a, E> {$/;" t
Slot /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^pub type Slot = Option<usize>;$/;" T
SparseSet /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/sparse.rs /^pub struct SparseSet {$/;" s
Split /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^pub struct Split<'r, 't> {$/;" s
Split /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub struct Split<'r, 't> {$/;" s
SplitN /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^pub struct SplitN<'r, 't> {$/;" s
SplitN /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub struct SplitN<'r, 't> {$/;" s
SplitWithinState /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^enum SplitWithinState {$/;" g
State /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^struct State{$/;" s
StateFlags /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^struct StateFlags(u8);$/;" s
StatePtr /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^type StatePtr = u32;$/;" T
States /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^enum States {$/;" g
StderrTerminal /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^pub type StderrTerminal = Terminal<Output = Stderr> + Send;$/;" T
StdoutTerminal /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^pub type StdoutTerminal = Terminal<Output = Stdout> + Send;$/;" T
StringWriter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/utils.rs /^pub struct StringWriter {$/;" s
SubCaptureMatches /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^pub struct SubCaptureMatches<'c, 't: 'c> {$/;" s
SubCaptureMatches /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub struct SubCaptureMatches<'c, 't: 'c> {$/;" s
SubCapturesPosIter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^pub struct SubCapturesPosIter<'c> {$/;" s
SuffixCache /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^struct SuffixCache {$/;" s
SuffixCacheEntry /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^struct SuffixCacheEntry {$/;" s
SuffixCacheKey /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^struct SuffixCacheKey {$/;" s
Symbol /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol.rs /^pub struct Symbol {$/;" s
SymbolType /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol.rs /^pub enum SymbolType {$/;" g
TAG_CONT /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/utf8.rs /^const TAG_CONT: u8 = 0b1000_0000;$/;" c
TAG_FOUR /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/utf8.rs /^const TAG_FOUR: u8 = 0b1111_0000;$/;" c
TAG_THREE /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/utf8.rs /^const TAG_THREE: u8 = 0b1110_0000;$/;" c
TAG_TWO /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/utf8.rs /^const TAG_TWO: u8 = 0b1100_0000;$/;" c
TOKEN_EXCLUSIVE /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_rwlock.rs /^const TOKEN_EXCLUSIVE: ParkToken = ParkToken(1);$/;" c
TOKEN_HANDOFF /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_mutex.rs /^pub const TOKEN_HANDOFF: UnparkToken = UnparkToken(1);$/;" c
TOKEN_NORMAL /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_mutex.rs /^pub const TOKEN_NORMAL: UnparkToken = UnparkToken(0);$/;" c
TOKEN_SHARED /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_rwlock.rs /^const TOKEN_SHARED: ParkToken = ParkToken(0);$/;" c
Table /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^pub struct Table {$/;" s
TableFormat /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^pub struct TableFormat {$/;" s
TableResult /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^pub struct TableResult {$/;" s
TableSlice /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^pub struct TableSlice<'a> {$/;" s
Target /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/lib.rs /^ type Target = $T;$/;" T
Target /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ type Target = Log;$/;" T
Target /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ type Target = [Token];$/;" T
Target /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ type Target = T;$/;" T
Target /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/remutex.rs /^ type Target = T;$/;" T
Target /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ type Target = T;$/;" T
Target /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ type Target = [u8];$/;" T
Target /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^ type Target = [Inst];$/;" T
Target /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/sparse.rs /^ type Target = [usize];$/;" T
Teddy /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^pub struct Teddy {$/;" s
Teddy /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_fallback/teddy128.rs /^pub struct Teddy(());$/;" s
TermInfo /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^pub struct TermInfo {$/;" s
Terminal /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^pub trait Terminal: Write {$/;" t
TerminfoTerminal /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^pub struct TerminfoTerminal<T> {$/;" s
Text /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ type Text = [u8];$/;" T
Text /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ type Text = str;$/;" T
Text /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_plugin.rs /^ type Text = str;$/;" T
Text /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^ type Text: ?Sized;$/;" T
Threads /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/pikevm.rs /^struct Threads {$/;" s
Token /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/tokenizer.rs /^pub enum Token {$/;" g
TokenizerState /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/tokenizer.rs /^enum TokenizerState {$/;" g
Transitions /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^struct Transitions {$/;" s
TransitionsRow /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^struct TransitionsRow<'a>(&'a [StatePtr]);$/;" s
U8 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^type U8 = u8;$/;" T
U8 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^type U8 = usize;$/;" T
U8 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_mutex.rs /^type U8 = u8;$/;" T
U8 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_mutex.rs /^type U8 = usize;$/;" T
UNINITIALIZED /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^const UNINITIALIZED: usize = 0;$/;" c
UncheckedOptionExt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/util.rs /^pub trait UncheckedOptionExt<T> {$/;" t
UnitOrPair /home/oddcoder/projects/sickassembler/src/lib/basic_types/unit_or_pair.rs /^pub enum UnitOrPair<T> {$/;" g
UnsafeLoad /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^trait UnsafeLoad {$/;" t
Unwinder /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ struct Unwinder {$/;" s
Unwinder /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ struct Unwinder {$/;" s
Value /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ type Value = Expr;$/;" T
Value /home/oddcoder/projects/sickassembler/src/lib/basic_types/operands.rs /^pub enum Value {$/;" g
Variables /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^pub struct Variables {$/;" s
Void /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/util.rs /^ enum Void {}$/;" g
WHITE /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const WHITE: Color = 7;$/;" c
WaitTimeoutResult /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/condvar.rs /^pub struct WaitTimeoutResult(bool);$/;" s
Whitespace /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^enum Whitespace {$/;" g
WinConsole /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^pub struct WinConsole<T> {$/;" s
YELLOW /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ pub const YELLOW: Color = 3;$/;" c
_CaptureNames /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^enum _CaptureNames<'r> {$/;" g
_LOC /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/macros.rs /^ static _LOC: $crate::LogLocation = $crate::LogLocation {$/;" c
_Regex /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub enum _Regex {$/;" g
__enabled /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^pub fn __enabled(level: LogLevel, target: &str) -> bool {$/;" f
__lazy_static_create /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/core_lazy.rs /^macro_rules! __lazy_static_create {$/;" d
__lazy_static_create /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/lazy.rs /^macro_rules! __lazy_static_create {$/;" d
__lazy_static_create /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/nightly_lazy.rs /^macro_rules! __lazy_static_create {$/;" d
__lazy_static_internal /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/lib.rs /^macro_rules! __lazy_static_internal {$/;" d
__log /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^pub fn __log(level: LogLevel, target: &str, loc: &LogLocation,$/;" f
__print /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn __print<T: Write+?Sized, F>(&self, out: &mut T, f: F) -> Result<(), Error>$/;" f
__print /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ fn __print<T:Write+?Sized, F>(&self, out: &mut T, format: &TableFormat, col_width: &[usize], f: F) -> Result<(), Error>$/;" f
__stability /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/lib.rs /^ unsafe fn __stability() -> &'static $T {$/;" f
__static_max_level /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^pub fn __static_max_level() -> LogLevelFilter {$/;" f
__static_ref_initialize /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/lib.rs /^ fn __static_ref_initialize() -> $T { $e }$/;" f
_find /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ fn _find(&self, haystack: &[u8]) -> Option<usize> {$/;" f
_from_path /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn _from_path(path: &Path) -> Result<TermInfo> {$/;" f
add /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn add(&mut self) -> Option<StatePtr> {$/;" f
add /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/pikevm.rs /^ fn add($/;" f
add /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^ fn add(&mut self, bucket: u8, byte: u8) {$/;" f
add /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^ fn add(&mut self, bucket: u8, pat: &[u8]) {$/;" f
add_cell /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ pub fn add_cell(&mut self, cell: Cell) {$/;" f
add_empty_row /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ pub fn add_empty_row(&mut self) -> &mut Row {$/;" f
add_get_literal /home/oddcoder/projects/sickassembler/src/lib/basic_types/literal_table.rs /^fn add_get_literal() {$/;" f
add_label /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction.rs /^ pub fn add_label(&mut self, label: String) -> Result<(), &str> {$/;" f
add_operand /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction.rs /^ fn add_operand(&mut self, op: AsmOperand) -> Result<(), &str> {$/;" f
add_reg_a /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction.rs /^ pub fn add_reg_a(&mut self) {$/;" f
add_row /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ pub fn add_row(&mut self, row: Row) -> &mut Row {$/;" f
add_state /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn add_state(&mut self, state: State) -> Option<StatePtr> {$/;" f
add_step /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/pikevm.rs /^ fn add_step($/;" f
align /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/cell.rs /^ pub fn align(&mut self, align: Alignment) {$/;" f
align_center /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/cell.rs /^ fn align_center() {$/;" f
align_left /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/cell.rs /^ fn align_left() {$/;" f
align_right /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/cell.rs /^ fn align_right() {$/;" f
all_records /home/oddcoder/projects/sickassembler/src/lib/htme/raw_program.rs /^ pub fn all_records(&self) -> String {$/;" f
apply /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^ fn apply(&mut self) -> io::Result<()> {$/;" f
apply_cap /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ pub fn apply_cap(&self, cmd: &str, params: &[Param], out: &mut io::Write) -> Result<()> {$/;" f
approximate_size /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn approximate_size(&self) -> usize {$/;" f
approximate_size /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ fn approximate_size(&self) -> usize {$/;" f
approximate_size /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ pub fn approximate_size(&self) -> usize {$/;" f
approximate_size /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^ pub fn approximate_size(&self) -> usize {$/;" f
approximate_size /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^ pub fn approximate_size(&self) -> usize {$/;" f
approximate_size /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_fallback/teddy128.rs /^ pub fn approximate_size(&self) -> usize { 0 }$/;" f
args /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ pub fn args(&self) -> &fmt::Arguments<'a> {$/;" f
array_impls /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^macro_rules! array_impls {$/;" d
as_byte /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn as_byte(&self) -> Option<u8> {$/;" f
as_bytes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ fn as_bytes(&self) -> &[u8] { (**self).as_bytes() }$/;" f
as_bytes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ fn as_bytes(&self) -> &[u8] {$/;" f
as_bytes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ fn as_bytes(&self) -> &[u8];$/;" f
as_bytes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ pub fn as_bytes(&self) -> &'t [u8] {$/;" f
as_char /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ pub fn as_char(self) -> Option<char> {$/;" f
as_f64 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/de.rs /^pub fn as_f64<D: de::Deserializer>(deserializer: D) -> Result<f64, D::Error> {$/;" f
as_ref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn as_ref(&self) -> &TableSlice<'a> {$/;" f
as_slots /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^pub fn as_slots(locs: &mut Locations) -> &mut [Slot] {$/;" f
as_str /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ pub fn as_str(&self) -> &str {$/;" f
as_str /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ pub fn as_str(&self) -> &'t str {$/;" f
as_str /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ pub fn as_str(&self) -> &str {$/;" f
as_string /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/utils.rs /^ pub fn as_string(&self) -> &str {$/;" f
at /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ fn at(&self, i: usize) -> InputAt { (**self).at(i) }$/;" f
at /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ fn at(&self, i: usize) -> InputAt {$/;" f
at /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ fn at(&self, i: usize) -> InputAt;$/;" f
attr /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn attr(&mut self, attr: Attr) -> Result<()>;$/;" f
attr /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn attr(&mut self, attr: Attr) -> Result<()> {$/;" f
attr /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^ fn attr(&mut self, attr: Attr) -> Result<()> {$/;" f
automatic /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ pub fn automatic(mut self) -> Self {$/;" f
backtrack /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/backtrack.rs /^ fn backtrack(&mut self, start: InputAt) -> bool {$/;" f
bg /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn bg(&mut self, color: color::Color) -> Result<()>;$/;" f
bg /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn bg(&mut self, color: color::Color) -> Result<()> {$/;" f
bg /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^ fn bg(&mut self, color: color::Color) -> Result<()> {$/;" f
bind /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn bind<'a>(self, var: &str) -> Result<Box<Fn(f64) -> f64 + 'a>, Error> {$/;" f
bind2 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn bind2<'a>(self, var1: &str, var2: &str) -> Result<Box<Fn(f64, f64) -> f64 + 'a>, Error> {$/;" f
bind2_with_context /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn bind2_with_context<'a, C>(self,$/;" f
bind3 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn bind3<'a>(self,$/;" f
bind3_with_context /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn bind3_with_context<'a, C>(self,$/;" f
bind_with_context /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn bind_with_context<'a, C>(self,$/;" f
bits_to_color /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^fn bits_to_color(bits: u16) -> color::Color {$/;" f
boolfnames /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parser/names.rs /^pub static boolfnames: &'static [&'static str] = &["auto_left_margin",$/;" c
boolnames /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parser/names.rs /^pub static boolnames: &'static [&'static str] =$/;" c
borders /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^ pub fn borders(&mut self, border: char) {$/;" f
borders /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^ pub fn borders(mut self, border: char) -> Self {$/;" f
bounded_backtracking /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ pub fn bounded_backtracking(mut self) -> Self {$/;" f
build /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^ pub fn build(&mut self) -> Logger {$/;" f
build /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^ pub fn build(self) -> TableFormat {$/;" f
build /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ pub fn build(self) -> Result<Exec, Error> {$/;" f
build /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^ pub fn build(&self) -> Result<Regex, Error> {$/;" f
build /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^ pub fn build(&self) -> Result<RegexSet, Error> {$/;" f
builtin /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^pub fn builtin<'a>() -> Context<'a> {$/;" f
byte /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn byte(b: u8) -> Self { Byte(b as u16) }$/;" f
byte /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ pub fn byte(&self) -> Option<u8> {$/;" f
byte_class /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn byte_class(&self, b: Byte) -> usize {$/;" f
byte_classes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn byte_classes(&self) -> Vec<u8> {$/;" f
byte_classes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn byte_classes() {$/;" f
bytes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ pub fn bytes(mut self, yes: bool) -> Self {$/;" f
bytes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ pub fn bytes(mut self, yes: bool) -> Self {$/;" f
bytes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/lib.rs /^pub mod bytes {$/;" m
c /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c(&mut self, expr: &Expr) -> Result {$/;" f
c /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/expand.rs /^ macro_rules! c {$/;" d
c_alternate /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_alternate(&mut self, exprs: &[Expr]) -> Result {$/;" f
c_byte /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_byte(&mut self, b: u8, casei: bool) -> Result {$/;" f
c_bytes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_bytes(&mut self, bytes: &[u8], casei: bool) -> Result {$/;" f
c_capture /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_capture(&mut self, first_slot: usize, expr: &Expr) -> Result {$/;" f
c_char /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_char(&mut self, c: char, casei: bool) -> Result {$/;" f
c_class /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_class(&mut self, ranges: &[ClassRange]) -> Result {$/;" f
c_class_bytes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_class_bytes(&mut self, ranges: &[ByteRange]) -> Result {$/;" f
c_concat /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_concat<'a, I>(&mut self, exprs: I) -> Result$/;" f
c_dotstar /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_dotstar(&mut self) -> Result {$/;" f
c_empty_look /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_empty_look(&mut self, look: EmptyLook) -> Result {$/;" f
c_literal /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_literal(&mut self, chars: &[char], casei: bool) -> Result {$/;" f
c_repeat /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_repeat($/;" f
c_repeat_one_or_more /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_repeat_one_or_more($/;" f
c_repeat_range /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_repeat_range($/;" f
c_repeat_range_min_or_more /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_repeat_range_min_or_more($/;" f
c_repeat_zero_or_more /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_repeat_zero_or_more($/;" f
c_repeat_zero_or_one /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_repeat_zero_or_one($/;" f
c_utf8_seq /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_utf8_seq(&mut self, seq: &Utf8Sequence) -> Result {$/;" f
c_utf8_seq_ /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn c_utf8_seq_<'r, I>(&mut self, seq: I) -> Result$/;" f
cached_state /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn cached_state($/;" f
cached_state_key /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn cached_state_key($/;" f
call_once /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^ pub fn call_once<F>(&self, f: F)$/;" f
call_once_force /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^ pub fn call_once_force<F>(&self, f: F)$/;" f
call_once_slow /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^ fn call_once_slow(&self, ignore_poison: bool, f: &mut FnMut(OnceState)) {$/;" f
can_exec /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^pub fn can_exec(insts: &Program) -> bool {$/;" f
cap_for_attr /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^fn cap_for_attr(attr: Attr) -> &'static str {$/;" f
capacity /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/sparse.rs /^ pub fn capacity(&self) -> usize {$/;" f
caps /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/pikevm.rs /^ fn caps(&mut self, pc: usize) -> &mut [Option<usize>] {$/;" f
capture_expression /home/oddcoder/projects/sickassembler/src/lib/operand_parsing.rs /^fn capture_expression(op:&str)->Vec<String>{$/;" f
capture_name_idx /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ pub fn capture_name_idx(&self) -> &Arc<HashMap<String, usize>> {$/;" f
capture_names /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ pub fn capture_names(&self) -> &[Option<String>] {$/;" f
capture_names /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ pub fn capture_names(&self) -> CaptureNames {$/;" f
capture_names /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ pub fn capture_names(&self) -> CaptureNames {$/;" f
captures /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ pub fn captures<'t>(&self, text: &'t [u8]) -> Option<Captures<'t>> {$/;" f
captures /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ pub fn captures<'t>(&self, text: &'t str) -> Option<Captures<'t>> {$/;" f
captures_iter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ pub fn captures_iter<'r, 't>($/;" f
captures_iter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^ fn captures_iter<'t>($/;" f
captures_iter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ pub fn captures_iter<'r, 't>($/;" f
captures_len /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ pub fn captures_len(&self) -> usize {$/;" f
captures_len /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ pub fn captures_len(&self) -> usize {$/;" f
captures_nfa /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn captures_nfa($/;" f
captures_nfa_type /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn captures_nfa_type($/;" f
captures_nfa_with_match /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn captures_nfa_with_match($/;" f
carriage_return /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn carriage_return(&mut self) -> Result<()>;$/;" f
carriage_return /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn carriage_return(&mut self) -> Result<()> {$/;" f
carriage_return /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^ fn carriage_return(&mut self) -> Result<()> {$/;" f
case_insensitive /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^ pub fn case_insensitive(&mut self, yes: bool) -> &mut RegexBuilder {$/;" f
case_insensitive /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^ pub fn case_insensitive(&mut self, yes: bool) -> &mut RegexSetBuilder {$/;" f
cause /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/lib.rs /^ fn cause(&self) -> Option<&std::error::Error> {$/;" f
cause /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/error.rs /^ fn cause(&self) -> Option<&::std::error::Error> {$/;" f
cause /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn cause(&self) -> Option<&std::error::Error> {$/;" f
cause /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn cause(&self) -> Option<&::std::error::Error> {$/;" f
cause /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^ fn cause(&self) -> Option<&::std::error::Error> {$/;" f
cell /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/cell.rs /^macro_rules! cell {$/;" d
char /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ pub fn char(&self) -> Char {$/;" f
char_len /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ pub fn char_len(&self) -> usize {$/;" f
char_len_lossy /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^fn char_len_lossy(bytes: &[u8]) -> usize {$/;" f
check_context /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn check_context<C: ContextProvider>(&self, ctx: C) -> Result<(), Error> {$/;" f
check_format /home/oddcoder/projects/sickassembler/src/lib/basic_types/tests/instruction_set_tests.rs /^ fn check_format() {$/;" f
check_op_code /home/oddcoder/projects/sickassembler/src/lib/basic_types/tests/instruction_set_tests.rs /^ fn check_op_code() {$/;" f
check_size /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn check_size(&self) -> result::Result<(), Error> {$/;" f
check_str_operand /home/oddcoder/projects/sickassembler/src/lib/pass_two/operand_translator.rs /^ fn check_str_operand(x: &str, v: &str) {$/;" f
check_string_convert_to_vec /home/oddcoder/projects/sickassembler/src/lib/pass_two/operand_translator.rs /^ fn check_string_convert_to_vec() {$/;" f
check_var /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn check_var(expected_name: &str, expected_csect: &str, found: TableResult) {$/;" f
choose_match_type /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn choose_match_type(&self, hint: Option<MatchType>) -> MatchType {$/;" f
clean /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn clean() {$/;" f
clear /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/backtrack.rs /^ fn clear(&mut self) {$/;" f
clear /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn clear(&mut self) {$/;" f
clear /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn clear(&mut self) {$/;" f
clear /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/sparse.rs /^ pub fn clear(&mut self) {$/;" f
clear_cache /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn clear_cache(&mut self) -> bool {$/;" f
clear_cache_and_save /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn clear_cache_and_save($/;" f
clone /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn clone(&self) -> LogLevel {$/;" f
clone /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn clone(&self) -> LogLevelFilter {$/;" f
clone /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn clone(&self) -> Exec {$/;" f
clone /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_plugin.rs /^ fn clone(&self) -> Plugin {$/;" f
clone /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol.rs /^ fn clone(&self) -> Symbol {$/;" f
cmp /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn cmp(&self, other: &LogLevel) -> cmp::Ordering {$/;" f
cmp /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn cmp(&self, other: &LogLevelFilter) -> cmp::Ordering {$/;" f
color /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^pub mod color {$/;" m
color_to_bits /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^fn color_to_bits(color: color::Color) -> u16 {$/;" f
column_iter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ pub fn column_iter(&self, column: usize) -> ColumnIter {$/;" f
column_iter_mut /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ pub fn column_iter_mut(&mut self, column: usize) -> ColumnIterMut {$/;" f
column_separator /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^ pub fn column_separator(&mut self, separator: char) {$/;" f
column_separator /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^ pub fn column_separator(mut self, separator: char) -> Self {$/;" f
compare_exchange /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/stable.rs /^ pub fn compare_exchange(&self,$/;" f
compare_exchange_weak /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/stable.rs /^ pub fn compare_exchange_weak(&self,$/;" f
compile /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn compile(mut self) -> Result {$/;" f
compile /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ pub fn compile($/;" f
compile_finish /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn compile_finish(mut self) -> result::Result<Program, Error> {$/;" f
compile_many /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn compile_many($/;" f
compile_one /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn compile_one(mut self, expr: &Expr) -> result::Result<Program, Error> {$/;" f
complete /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ pub fn complete(&self) -> bool {$/;" f
conout /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^fn conout() -> io::Result<winapi::HANDLE> {$/;" f
consts /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^pub mod consts {$/;" m
consume_instruction /home/oddcoder/projects/sickassembler/src/lib/pass_one/pass_one.rs /^fn consume_instruction(instruction: &Instruction,$/;" f
contains /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/sparse.rs /^ pub fn contains(&self, value: usize) -> bool {$/;" f
continue_past_first_match /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn continue_past_first_match(&self) -> bool {$/;" f
create_from_literal /home/oddcoder/projects/sickassembler/src/lib/pass_one/pass_one.rs /^fn create_from_literal(lit: &String, locctr: i32) -> Box<Instruction> {$/;" f
create_instruction /home/oddcoder/projects/sickassembler/src/lib/pass_two/translator.rs /^ fn create_instruction(mnemonic: &str,$/;" f
create_local_variable /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn create_local_variable<'a>(name: &'a str, csect: &'a str) -> (&'a str, &'a str) {$/;" f
create_local_variable_with_addr /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn create_local_variable_with_addr(name: &str, addr: i32, csect: &str) -> (String, String) {$/;" f
create_operand /home/oddcoder/projects/sickassembler/src/lib/operand_parsing.rs /^fn create_operand(t: OperandType, v: Value) -> AsmOperand {$/;" f
csv /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ mod csv {$/;" m
cursor_up /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn cursor_up(&mut self) -> Result<()>;$/;" f
cursor_up /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn cursor_up(&mut self) -> Result<()> {$/;" f
cursor_up /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^ fn cursor_up(&mut self) -> Result<()> {$/;" f
de /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^pub mod de {$/;" m
debug /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/macros.rs /^macro_rules! debug {$/;" d
decode_last_utf8 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/utf8.rs /^pub fn decode_last_utf8(src: &[u8]) -> Option<(char, usize)> {$/;" f
decode_utf8 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/utf8.rs /^pub fn decode_utf8(src: &[u8]) -> Option<(char, usize)> {$/;" f
default /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/condvar.rs /^ fn default() -> Condvar {$/;" f
default /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ fn default() -> Mutex<T> {$/;" f
default /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^ fn default() -> Once {$/;" f
default /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/remutex.rs /^ fn default() -> ReentrantMutex<T> {$/;" f
default /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ fn default() -> RwLock<T> {$/;" f
default /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/cell.rs /^ fn default() -> Cell {$/;" f
default /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^ fn default() -> Self {$/;" f
default /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ fn default() -> Row {$/;" f
default /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^ fn default() -> Self {$/;" f
default /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^ fn default() -> Self {$/;" f
define_builder /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^macro_rules! define_builder {$/;" d
define_control_section /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^pub fn define_control_section(csect: &str) -> Result<(), String> {$/;" f
define_csect /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn define_csect(&mut self, csect: &str) -> Result<(), String> {$/;" f
define_export_symbol /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn define_export_symbol(&mut self, sym_name: &str, csect: &str) -> Result<(), String> {$/;" f
define_exported_symbol /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^pub fn define_exported_symbol(sym_name: &str, csect: &str) -> Result<(), String> {$/;" f
define_exported_symbols /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^pub fn define_exported_symbols(symbols: &Vec<String>, csect: &str) -> Result<(), String> {$/;" f
define_import_symbol /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn define_import_symbol(&mut self, sym_name: &str, csect: &str) -> Result<(), String> {$/;" f
define_imported_symbol /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^pub fn define_imported_symbol(sym_name: &str, csect: &str) -> Result<(), String> {$/;" f
define_imported_symbols /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^pub fn define_imported_symbols(symbols: &Vec<String>, csect: &str) -> Result<(), String> {$/;" f
define_local_symbol /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn define_local_symbol(&mut self,$/;" f
define_local_symbol /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^pub fn define_local_symbol(sym_name: &str, addr: i32, csect: &str) -> Result<(), String> {$/;" f
define_set /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_set.rs /^macro_rules! define_set {$/;" d
define_set_builder /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^macro_rules! define_set_builder {$/;" d
delete_line /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn delete_line(&mut self) -> Result<()>;$/;" f
delete_line /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn delete_line(&mut self) -> Result<()> {$/;" f
delete_line /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^ fn delete_line(&mut self) -> Result<()> {$/;" f
deref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/lib.rs /^ fn deref<'a>(&'a self) -> &'a $T {$/;" f
deref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn deref(&self) -> &(Log + 'static) {$/;" f
deref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn deref(&self) -> &[Token] {$/;" f
deref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ fn deref(&self) -> &T {$/;" f
deref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/remutex.rs /^ fn deref(&self) -> &T {$/;" f
deref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ fn deref(&self) -> &T {$/;" f
deref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ fn deref(&self) -> &[u8] {$/;" f
deref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^ fn deref(&self) -> &Self::Target {$/;" f
deref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/sparse.rs /^ fn deref(&self) -> &Self::Target {$/;" f
deref_mut /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ fn deref_mut(&mut self) -> &mut T {$/;" f
deref_mut /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ fn deref_mut(&mut self) -> &mut T {$/;" f
description /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^ fn description(&self) -> &str {$/;" f
description /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn description(&self) -> &str { "set_logger() called multiple times" }$/;" f
description /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn description(&self) -> &str { "shutdown_logger() called without an active logger" }$/;" f
description /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn description(&self) -> &str {$/;" f
description /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/lib.rs /^ fn description(&self) -> &str {$/;" f
description /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/shunting_yard.rs /^ fn description(&self) -> &str {$/;" f
description /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/tokenizer.rs /^ fn description(&self) -> &str {$/;" f
description /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/error.rs /^ fn description(&self) -> &str {$/;" f
description /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn description(&self) -> &str {$/;" f
description /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn description(&self) -> &str {$/;" f
description /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^ fn description(&self) -> &str {$/;" f
deserialize /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>$/;" f
dfa /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ pub fn dfa(mut self, yes: bool) -> Self {$/;" f
dfa_size_limit /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^ pub fn dfa_size_limit(&mut self, limit: usize) -> &mut RegexBuilder {$/;" f
dfa_size_limit /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^ pub fn dfa_size_limit(&mut self, limit: usize) -> &mut RegexSetBuilder {$/;" f
digit_complete /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/tokenizer.rs /^fn digit_complete(input: &[u8]) -> IResult<&[u8], &[u8]> {$/;" f
dim_if_necessary /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn dim_if_necessary(&self, color: color::Color) -> color::Color {$/;" f
directive_table_check_negative /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction_set.rs /^ fn directive_table_check_negative() {$/;" f
directive_table_check_positive /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction_set.rs /^ fn directive_table_check_positive() {$/;" f
done /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^ pub fn done(&self) -> bool {$/;" f
dot_matches_new_line /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^ pub fn dot_matches_new_line(&mut self, yes: bool) -> &mut RegexBuilder {$/;" f
dot_matches_new_line /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^ pub fn dot_matches_new_line(&mut self, yes: bool) -> &mut RegexSetBuilder {$/;" f
double_end_base /home/oddcoder/projects/sickassembler/src/lib/basic_types/base_table.rs /^fn double_end_base() {$/;" f
downgrade /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_rwlock.rs /^ pub fn downgrade(&self) {$/;" f
downgrade /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ pub fn downgrade(self) -> RwLockReadGuard<'a, T> {$/;" f
downgrade_slow /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_rwlock.rs /^ fn downgrade_slow(&self) {$/;" f
drop /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn drop(&mut self) {$/;" f
drop /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/condvar.rs /^ fn drop(&mut self) {$/;" f
drop /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ fn drop(&mut self) {$/;" f
drop /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ fn drop(&mut self) {$/;" f
drop /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ fn drop(&mut self) {$/;" f
drop /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^ fn drop(&mut self) {$/;" f
drop /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/remutex.rs /^ fn drop(&mut self) {$/;" f
drop /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ fn drop(&mut self) {$/;" f
drop /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ fn drop(&mut self) {$/;" f
drop /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ fn drop(&mut self) {$/;" f
dummy /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction_set.rs /^ pub fn dummy() -> AssemblyDef {$/;" f
each_split_within /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^fn each_split_within<'a, F>(ss: &'a str, lim: usize, mut it: F)$/;" f
elision_acquire /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/elision.rs /^ fn elision_acquire(&self, _: usize, _: usize) -> Result<usize, usize> {$/;" f
elision_acquire /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/elision.rs /^ fn elision_acquire(&self, current: usize, new: usize) -> Result<usize, usize> {$/;" f
elision_acquire /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/elision.rs /^ fn elision_acquire(&self,$/;" f
elision_release /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/elision.rs /^ fn elision_release(&self, _: usize, _: usize) -> Result<usize, usize> {$/;" f
elision_release /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/elision.rs /^ fn elision_release(&self, current: usize, new: usize) -> Result<usize, usize> {$/;" f
elision_release /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/elision.rs /^ fn elision_release(&self,$/;" f
empty /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn empty() -> Context<'a> {$/;" f
empty /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ pub fn empty() -> Row {$/;" f
empty /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ fn empty() -> SingleSearch {$/;" f
empty /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ pub fn empty() -> Self {$/;" f
enabled /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^ fn enabled(&self, level: LogLevel, target: &str) -> bool {$/;" f
enabled /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^ fn enabled(&self, metadata: &LogMetadata) -> bool {$/;" f
enabled /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn enabled(&self, _: &LogMetadata) -> bool { false }$/;" f
enabled /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn enabled(&self, metadata: &LogMetadata) -> bool;$/;" f
encode_utf8 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/utf8.rs /^pub fn encode_utf8(character: char, dst: &mut [u8]) -> Option<usize> {$/;" f
end /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ pub fn end(&self) -> usize {$/;" f
end /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ pub fn end(&self) -> usize {$/;" f
end_base /home/oddcoder/projects/sickassembler/src/lib/basic_types/base_table.rs /^pub fn end_base(locctr: i32) {$/;" f
end_record /home/oddcoder/projects/sickassembler/src/lib/htme/raw_program.rs /^ pub fn end_record(&self) -> String {$/;" f
eof /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn eof() -> Self { Byte(256) }$/;" f
eq /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn eq(&self, other: &LogLevel) -> bool {$/;" f
eq /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn eq(&self, other: &LogLevelFilter) -> bool {$/;" f
eq /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ fn eq(&self, other: &Char) -> bool { *self as u32 == other.0 }$/;" f
eq /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ fn eq(&self, other: &char) -> bool { self.0 == *other as u32 }$/;" f
eq /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn eq(&self, other: &Error) -> bool {$/;" f
eq /home/oddcoder/projects/sickassembler/src/lib/basic_types/literal.rs /^ fn eq(&self, other: &Literal) -> bool {$/;" f
eq /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol.rs /^ fn eq(&self, other: &Symbol) -> bool {$/;" f
eq_ignore_ascii_case /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^fn eq_ignore_ascii_case(a: &str, b: &str) -> bool {$/;" f
error /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/macros.rs /^macro_rules! error {$/;" d
escape /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^pub fn escape(text: &str) -> String {$/;" f
escape_byte /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ fn escape_byte(byte: u8) -> String {$/;" f
escape_bytes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ fn escape_bytes(bytes: &[u8]) -> String {$/;" f
eval /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn eval(&self) -> Result<f64, Error> {$/;" f
eval_func /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn eval_func(&self, _: &str, _: &[f64]) -> Result<f64, FuncEvalError> {$/;" f
eval_func /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn eval_func(&self, name: &str, args: &[f64]) -> Result<f64, FuncEvalError> {$/;" f
eval_str /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^pub fn eval_str<S: AsRef<str>>(expr: S) -> Result<f64, Error> {$/;" f
eval_str_with_context /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^pub fn eval_str_with_context<S: AsRef<str>, C: ContextProvider>(expr: S,$/;" f
eval_with_context /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn eval_with_context<C: ContextProvider>(&self, ctx: C) -> Result<f64, Error> {$/;" f
exec /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/backtrack.rs /^ pub fn exec($/;" f
exec /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/pikevm.rs /^ pub fn exec($/;" f
exec_ /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/backtrack.rs /^ fn exec_(&mut self, mut at: InputAt) -> bool {$/;" f
exec_ /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/pikevm.rs /^ fn exec_($/;" f
exec_at /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn exec_at($/;" f
exec_at_reverse /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn exec_at_reverse($/;" f
exec_backtrack /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn exec_backtrack($/;" f
exec_byte /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn exec_byte($/;" f
exec_dfa_reverse_suffix /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn exec_dfa_reverse_suffix($/;" f
exec_nfa /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn exec_nfa($/;" f
exec_pikevm /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn exec_pikevm($/;" f
exp /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/tokenizer.rs /^fn exp(input: &[u8]) -> IResult<&[u8], Option<usize>> {$/;" f
expand /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ pub fn expand(&self, replacement: &[u8], dst: &mut Vec<u8>) {$/;" f
expand /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ pub fn expand(&self, replacement: &str, dst: &mut String) {$/;" f
expand /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^pub fn expand(cap: &[u8], params: &[Param], vars: &mut Variables) -> Result<Vec<u8>, Error> {$/;" f
expand_bytes /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/expand.rs /^pub fn expand_bytes($/;" f
expand_str /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/expand.rs /^pub fn expand_str($/;" f
expecting /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;" f
exports /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn exports(&self, sym_name: &str) -> bool {$/;" f
f /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^ fn f(_x: usize) -> Vec<Optval> { return Vec::new(); }$/;" f
fetch_add /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/stable.rs /^ pub fn fetch_add(&self, val: usize, order: Ordering) -> usize {$/;" f
fetch_and /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/stable.rs /^ pub fn fetch_and(&self, val: usize, order: Ordering) -> usize {$/;" f
fetch_directive /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction_set.rs /^pub fn fetch_directive<'a>(instr_mnemonic: &str) -> Result<AssemblyDef, &'a str> {$/;" f
fetch_instruction /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction_set.rs /^pub fn fetch_instruction<'a>(instr_mnemonic: &String) -> Result<AssemblyDef, &'a str> {$/;" f
fetch_or /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/stable.rs /^ pub fn fetch_or(&self, val: usize, order: Ordering) -> usize {$/;" f
fetch_sub /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/stable.rs /^ pub fn fetch_sub(&self, val: usize, order: Ordering) -> usize {$/;" f
fg /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn fg(&mut self, color: color::Color) -> Result<()>;$/;" f
fg /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn fg(&mut self, color: color::Color) -> Result<()> {$/;" f
fg /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^ fn fg(&mut self, color: color::Color) -> Result<()> {$/;" f
file /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ pub fn file(&self) -> &str {$/;" f
fill /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn fill(&mut self, goto: InstPtr) {$/;" f
fill /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn fill(&mut self, hole: Hole, goto: InstPtr) {$/;" f
fill /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn fill(&self, goto: InstPtr) -> Inst {$/;" f
fill_align /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/utils.rs /^ fn fill_align() {$/;" f
fill_split /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn fill_split($/;" f
fill_split /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn fill_split(&mut self, goto1: InstPtr, goto2: InstPtr) {$/;" f
fill_to_next /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn fill_to_next(&mut self, hole: Hole) {$/;" f
filter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^ pub fn filter(&mut self,$/;" f
filter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^ pub fn filter(&self) -> LogLevelFilter {$/;" f
filter_beginning_longest_match /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^ fn filter_beginning_longest_match() {$/;" f
filter_info /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^ fn filter_info() {$/;" f
find /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/expand.rs /^ macro_rules! find {$/;" d
find /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ fn find(&self, text: &[u8]) -> Option<usize> {$/;" f
find /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ pub fn find(&self, haystack: &[u8]) -> Option<(usize, usize)> {$/;" f
find /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ pub fn find(&self, haystack: &[u8]) -> Option<usize> {$/;" f
find /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ pub fn find<'t>(&self, text: &'t [u8]) -> Option<Match<'t>> {$/;" f
find /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ pub fn find<'t>(&self, text: &'t str) -> Option<Match<'t>> {$/;" f
find /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^ pub fn find(&self, haystack: &[u8]) -> Option<Match> {$/;" f
find /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_fallback/teddy128.rs /^ pub fn find(&self, _haystack: &[u8]) -> Option<Match> { None }$/;" f
find1 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^ fn find1(&self, haystack: &[u8]) -> Option<Match> {$/;" f
find2 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^ fn find2(&self, haystack: &[u8]) -> Option<Match> {$/;" f
find3 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/simd_accel/teddy128.rs /^ fn find3(&self, haystack: &[u8]) -> Option<Match> {$/;" f
find_at /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn find_at(&self, text: &[u8], start: usize) -> Option<(usize, usize)> {$/;" f
find_at /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn find_at(&self, text: &str, start: usize) -> Option<(usize, usize)> {$/;" f
find_at /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ pub fn find_at<'t>($/;" f
find_at /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_plugin.rs /^ fn find_at(&self, text: &str, start: usize) -> Option<(usize, usize)> {$/;" f
find_at /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^ fn find_at($/;" f
find_at /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ pub fn find_at<'t>($/;" f
find_cap_ref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/expand.rs /^fn find_cap_ref<T: ?Sized + AsRef<[u8]>>($/;" f
find_dfa_anchored_reverse /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn find_dfa_anchored_reverse($/;" f
find_dfa_forward /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn find_dfa_forward($/;" f
find_dfa_reverse_suffix /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn find_dfa_reverse_suffix($/;" f
find_end /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ pub fn find_end(&self, haystack: &[u8]) -> Option<(usize, usize)> {$/;" f
find_iter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ pub fn find_iter<'r, 't>(&'r self, text: &'t [u8]) -> Matches<'r, 't> {$/;" f
find_iter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_trait.rs /^ fn find_iter<'t>($/;" f
find_iter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ pub fn find_iter<'r, 't>(&'r self, text: &'t str) -> Matches<'r, 't> {$/;" f
find_literals /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn find_literals($/;" f
find_local /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn find_local(&self, sym_name: &str) -> Result<&Symbol, String> {$/;" f
find_nfa /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ fn find_nfa($/;" f
find_opt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^fn find_opt(opts: &[Opt], nm: Name) -> Option<usize> {$/;" f
find_start /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ pub fn find_start(&self, haystack: &[u8]) -> Option<(usize, usize)> {$/;" f
flag_resolution /home/oddcoder/projects/sickassembler/src/lib/pass_two/tests.rs /^ fn flag_resolution() {$/;" f
flags /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn flags(&self) -> StateFlags {$/;" f
flush /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/utils.rs /^ fn flush(&mut self) -> Result<(), Error> {$/;" f
flush /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn flush(&mut self) -> io::Result<()> {$/;" f
flush /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^ fn flush(&mut self) -> io::Result<()> {$/;" f
flush_literals /home/oddcoder/projects/sickassembler/src/lib/pass_one/pass_one.rs /^fn flush_literals(instructions: &mut Vec<Instruction>, start_loc: u32, current_csect: &str) -> i32 {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/regex.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/string.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/lib.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/shunting_yard.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/tokenizer.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/remutex.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/error.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_set.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {$/;" f
fmt /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^ fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {$/;" f
fmt /home/oddcoder/projects/sickassembler/src/lib/basic_types/flags.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/projects/sickassembler/src/lib/basic_types/formats.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/projects/sickassembler/src/lib/basic_types/operands.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/projects/sickassembler/src/lib/basic_types/unit_or_pair.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fmt /home/oddcoder/projects/sickassembler/src/lib/htme/raw_program.rs /^ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;" f
fn /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/core_lazy.rs /^ pub const fn new() -> Self {$/;" c
fn /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/nightly_lazy.rs /^ pub const fn new() -> Self {$/;" c
fn /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/condvar.rs /^ pub const fn new() -> Condvar {$/;" c
fn /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ pub const fn new(val: T) -> Mutex<T> {$/;" c
fn /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/once.rs /^ pub const fn new() -> Once {$/;" c
fn /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_mutex.rs /^ pub const fn new() -> RawMutex {$/;" c
fn /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_remutex.rs /^ pub const fn new() -> RawReentrantMutex {$/;" c
fn /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_rwlock.rs /^ pub const fn new() -> RawRwLock {$/;" c
fn /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/remutex.rs /^ pub const fn new(val: T) -> ReentrantMutex<T> {$/;" c
fn /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ pub const fn new(val: T) -> RwLock<T> {$/;" c
follow_epsilons /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn follow_epsilons($/;" f
format /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^ pub fn format<F: 'static>(&mut self, format: F) -> &mut Self$/;" f
format /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^fn format(val: Param, op: FormatOp, flags: Flags) -> Result<Vec<u8>, Error> {$/;" f
format_3_base_relative /home/oddcoder/projects/sickassembler/src/lib/basic_types/tests/instruction_tests.rs /^ fn format_3_base_relative() {$/;" f
format_3_pc_relative /home/oddcoder/projects/sickassembler/src/lib/basic_types/tests/instruction_tests.rs /^ fn format_3_pc_relative() {$/;" f
format_4 /home/oddcoder/projects/sickassembler/src/lib/basic_types/tests/instruction_tests.rs /^ fn format_4() {$/;" f
format_option /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^fn format_option(opt: &OptGroup) -> String {$/;" f
formatting_tests /home/oddcoder/projects/sickassembler/src/lib/htme/tests/formatting_tests.rs /^mod formatting_tests {$/;" m
forward /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ pub fn forward($/;" f
forward_many /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ pub fn forward_many($/;" f
freq_rank /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/literals.rs /^ fn freq_rank(b: u8) -> usize { BYTE_FREQUENCIES[b as usize] as usize }$/;" f
frob /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ fn frob() {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/lib.rs /^ fn from(err: ParseError) -> Error {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/lib.rs /^ fn from(err: RPNError) -> Error {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/cell.rs /^ fn from(f: &T) -> Cell {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn from() {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn from(it: T) -> Table {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ fn from(it: T) -> Row {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/error.rs /^ fn from(err: syntax::Error) -> Error {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/expand.rs /^ fn from(x: &'a str) -> Ref<'a> {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/expand.rs /^ fn from(x: usize) -> Ref<'static> {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ fn from(c: Option<char>) -> Char {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/input.rs /^ fn from(c: char) -> Char { Char(c as u32) }$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ fn from(exec: Exec) -> Regex {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_set.rs /^ fn from(exec: Exec) -> Self {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ fn from(exec: Exec) -> Regex {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn from(err: Error) -> io::Error {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn from(val: io::Error) -> Self {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn from(val: terminfo::Error) -> Self {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn from(val: terminfo::parm::Error) -> Self {$/;" f
from /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn from(v: ::std::string::FromUtf8Error) -> Self {$/;" f
from_char /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^ fn from_char(c: char) -> FormatOp {$/;" f
from_csv /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ pub fn from_csv<R: Read>(reader: &mut csv::Reader<R>) -> Table {$/;" f
from_csv_file /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ pub fn from_csv_file<P: AsRef<Path>>(csv_p: P) -> csv::Result<Table> {$/;" f
from_csv_string /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ pub fn from_csv_string(csv_s: &str) -> csv::Result<Table> {$/;" f
from_env /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ pub fn from_env() -> Result<TermInfo> {$/;" f
from_iter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn from_iter<T>(iterator: T) -> Table where T: IntoIterator<Item=A> {$/;" f
from_iter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ fn from_iter<T>(iterator: T) -> Row where T: IntoIterator<Item=A> {$/;" f
from_name /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ pub fn from_name(name: &str) -> Result<TermInfo> {$/;" f
from_path /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ pub fn from_path<P: AsRef<Path>>(path: P) -> Result<TermInfo> {$/;" f
from_regex /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ fn from_regex(regex: &Regex) -> NamedGroups {$/;" f
from_str /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/getopts-0.2.14/src/lib.rs /^ fn from_str(nm: &str) -> Name {$/;" f
from_str /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn from_str(level: &str) -> Result<LogLevel, ()> {$/;" f
from_str /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn from_str(level: &str) -> Result<LogLevelFilter, ()> {$/;" f
from_str /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn from_str(s: &str) -> Result<Self, Self::Err> {$/;" f
from_str /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ fn from_str(s: &str) -> Result<Regex, Error> {$/;" f
from_str /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ fn from_str(s: &str) -> Result<Regex, Error> {$/;" f
from_usize /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn from_usize(u: usize) -> Option<LogLevel> {$/;" f
from_usize /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ fn from_usize(u: usize) -> Option<LogLevelFilter> {$/;" f
func /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn func<S, F>(&mut self, name: S, func: F) -> &mut Self$/;" f
func2 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn func2<S, F>(&mut self, name: S, func: F) -> &mut Self$/;" f
func3 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn func3<S, F>(&mut self, name: S, func: F) -> &mut Self$/;" f
funcn /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ pub fn funcn<S, F, N>(&mut self, name: S, func: F, n_args: N) -> &mut Self$/;" f
get /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/core_lazy.rs /^ pub fn get<F>(&'static self, builder: F) -> &T$/;" f
get /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/lazy.rs /^ pub fn get<F>(&'static mut self, f: F) -> &T$/;" f
get /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/nightly_lazy.rs /^ pub fn get<F>(&'static self, f: F) -> &T$/;" f
get /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/lib.rs /^ pub fn get(&self) -> LogLevelFilter {$/;" f
get /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn get(&mut self, key: SuffixCacheKey, pc: InstPtr) -> Option<InstPtr> {$/;" f
get /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ pub fn get(&self, i: usize) -> Option<Match<'t>> {$/;" f
get /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ pub fn get(&self, i: usize) -> Option<Match<'t>> {$/;" f
get_address /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol.rs /^ pub fn get_address(&self) -> i32 {$/;" f
get_address /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ pub fn get_address(&self) -> i32 {$/;" f
get_all_column_width /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn get_all_column_width(&self) -> Vec<usize> {$/;" f
get_all_symbols /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn get_all_symbols(&self) -> HashSet<Symbol> {$/;" f
get_all_symbols /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^pub fn get_all_symbols() -> HashSet<Symbol> {$/;" f
get_all_symbols /home/oddcoder/projects/sickassembler/src/lib/pass_one/pass_one.rs /^pub fn get_all_symbols() -> HashSet<Symbol> {$/;" f
get_base_at /home/oddcoder/projects/sickassembler/src/lib/basic_types/base_table.rs /^pub fn get_base_at(locctr: u32) -> Option<u32> {$/;" f
get_bit_count /home/oddcoder/projects/sickassembler/src/lib/basic_types/formats.rs /^pub fn get_bit_count(format: Format) -> i32 {$/;" f
get_cell /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ pub fn get_cell(&self, idx: usize) -> Option<&Cell> {$/;" f
get_cell_width /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ pub fn get_cell_width(&self, column: usize) -> usize {$/;" f
get_column_num /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ pub fn get_column_num(&self) -> usize {$/;" f
get_column_separator /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^ pub fn get_column_separator(&self, pos: ColumnPosition) -> Option<char> {$/;" f
get_column_width /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn get_column_width(&self, col_idx: usize) -> usize {$/;" f
get_content /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/cell.rs /^ fn get_content() {$/;" f
get_content /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/cell.rs /^ pub fn get_content(&self) -> String {$/;" f
get_control_section /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol.rs /^ pub fn get_control_section(&self) -> String {$/;" f
get_control_section /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ pub fn get_control_section(&self) -> String {$/;" f
get_csect_table_read /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn get_csect_table_read(&self, csect: &str) -> &CsectSymTab {$/;" f
get_csect_table_write /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn get_csect_table_write(&mut self, csect: &str) -> &mut CsectSymTab {$/;" f
get_dbpath_for_term /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/searcher.rs /^pub fn get_dbpath_for_term(term: &str) -> Option<PathBuf> {$/;" f
get_def /home/oddcoder/projects/sickassembler/src/lib/filehandler.rs /^fn get_def(inst: &mut String) -> Result<(AssemblyDef, bool, bool), String> {$/;" f
get_disp /home/oddcoder/projects/sickassembler/src/lib/pass_two/operand_translator.rs /^fn get_disp(instruction: &mut Instruction, sym_addr: i32) -> Result<String, String> {$/;" f
get_first_operand /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction.rs /^ pub fn get_first_operand(&self) -> AsmOperand {$/;" f
get_flags_value /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction.rs /^ pub fn get_flags_value(&self) -> Result<u32, String> {$/;" f
get_format /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction.rs /^ pub fn get_format(&self) -> Format {$/;" f
get_height /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/cell.rs /^ pub fn get_height(&self) -> usize {$/;" f
get_height /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ pub fn get_height(&self) -> usize {$/;" f
get_instruction_size /home/oddcoder/projects/sickassembler/src/lib/pass_one/pass_one.rs /^fn get_instruction_size(inst: &Instruction) -> i32 {$/;" f
get_literal /home/oddcoder/projects/sickassembler/src/lib/basic_types/literal_table.rs /^pub fn get_literal(name: &str) -> Option<Literal> {$/;" f
get_mut /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ pub fn get_mut(&mut self) -> &mut T {$/;" f
get_mut /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/remutex.rs /^ pub fn get_mut(&mut self) -> &mut T {$/;" f
get_mut /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ pub fn get_mut(&mut self) -> &mut T {$/;" f
get_mut /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn get_mut(&mut self) -> &mut Self::Output;$/;" f
get_mut /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn get_mut(&mut self) -> &mut T {$/;" f
get_mut /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^ fn get_mut<'a>(&'a mut self) -> &'a mut T {$/;" f
get_mut_cell /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ pub fn get_mut_cell(&mut self, idx: usize) -> Option<&mut Cell> {$/;" f
get_mut_row /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ pub fn get_mut_row(&mut self, row: usize) -> Option<&mut Row> {$/;" f
get_name /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol.rs /^ pub fn get_name(&self) -> String {$/;" f
get_name /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ pub fn get_name(&self) -> String {$/;" f
get_opcode_value /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction_set.rs /^ pub fn get_opcode_value(&self, format: Format) -> i32 {$/;" f
get_padding /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^ pub fn get_padding(&self) -> (usize, usize) {$/;" f
get_ref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn get_ref(&self) -> &Self::Output;$/;" f
get_ref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn get_ref(&self) -> &T {$/;" f
get_ref /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^ fn get_ref<'a>(&'a self) -> &'a T {$/;" f
get_res /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/parm.rs /^ fn get_res(fmt: &str,$/;" f
get_row /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ pub fn get_row(&self, row: usize) -> Option<&Row> {$/;" f
get_second_operand /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction.rs /^ pub fn get_second_operand(&self) -> AsmOperand {$/;" f
get_sep_for_line /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/format.rs /^ fn get_sep_for_line(&self, pos: LinePosition) -> &Option<LineSeparator> {$/;" f
get_symbol /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^pub fn get_symbol(sym_name: &str, csect: &str) -> Result<TableResult, String> {$/;" f
get_symbol_for_end /home/oddcoder/projects/sickassembler/src/lib/pass_one/pass_one.rs /^pub fn get_symbol_for_end(symbol: &str) -> Result<i32, String> {$/;" f
get_thread_id /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/raw_remutex.rs /^fn get_thread_id() -> usize {$/;" f
get_unresolved /home/oddcoder/projects/sickassembler/src/lib/basic_types/literal_table.rs /^pub fn get_unresolved() -> Vec<String> {$/;" f
get_var /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn get_var(&self, name: &str) -> Option<f64> {$/;" f
get_var /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn get_var(&self, _: &str) -> Option<f64> {$/;" f
get_var /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn get_var(&self, name: &str) -> Option<f64> {$/;" f
get_width /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/cell.rs /^ pub fn get_width(&self) -> usize {$/;" f
guard_lock /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^pub fn guard_lock<'a, T: ?Sized>(guard: &MutexGuard<'a, T>) -> &'a RawMutex {$/;" f
half_fill_split_goto1 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn half_fill_split_goto1(&mut self, goto1: InstPtr) {$/;" f
half_fill_split_goto2 /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn half_fill_split_goto2(&mut self, goto2: InstPtr) {$/;" f
has_csect /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn has_csect(&self, csect: &str) -> bool {$/;" f
has_empty /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn has_empty(&self) -> bool {$/;" f
has_local /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn has_local(&self, sym_name: &str) -> bool {$/;" f
has_prefix /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn has_prefix(&self) -> bool {$/;" f
has_valid_operands /home/oddcoder/projects/sickassembler/src/lib/basic_types/instruction_set.rs /^ pub fn has_valid_operands(&self, operands: &UnitOrPair<AsmOperand>) -> bool {$/;" f
has_visited /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/backtrack.rs /^ fn has_visited(&mut self, ip: InstPtr, at: InputAt) -> bool {$/;" f
hash /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/compile.rs /^ fn hash(&self, suffix: &SuffixCacheKey) -> usize {$/;" f
hash /home/oddcoder/projects/sickassembler/src/lib/basic_types/literal.rs /^ fn hash<H: Hasher>(&self, state: &mut H) {$/;" f
hash /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol.rs /^ fn hash<H: Hasher>(&self, state: &mut H) {$/;" f
hash_context /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/expr.rs /^ fn hash_context() {$/;" f
have_elision /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/elision.rs /^pub fn have_elision() -> bool {$/;" f
haystack /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/pattern.rs /^ fn haystack(&self) -> &'t str {$/;" f
header_record /home/oddcoder/projects/sickassembler/src/lib/htme/raw_program.rs /^ pub fn header_record(&self) -> String {$/;" f
ident /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/meval-0.0.9/src/tokenizer.rs /^fn ident(input: &[u8]) -> IResult<&[u8], &[u8]> {$/;" f
ignore_whitespace /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^ pub fn ignore_whitespace(&mut self, yes: bool) -> &mut RegexBuilder {$/;" f
ignore_whitespace /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_builder.rs /^ pub fn ignore_whitespace(&mut self, yes: bool) -> &mut RegexSetBuilder {$/;" f
imports /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn imports(&self, sym_name: &str) -> bool {$/;" f
inc /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ fn inc(m: &Mutex<u32>) {$/;" f
index /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn index(&self, idx: usize) -> &Self::Output {$/;" f
index /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn index() {$/;" f
index /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ fn index(&self, idx: usize) -> &Self::Output {$/;" f
index /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ fn index(&self, i: usize) -> &[u8] {$/;" f
index /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_bytes.rs /^ fn index<'a>(&'a self, name: &'i str) -> &'a [u8] {$/;" f
index /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ fn index(&self, i: usize) -> &str {$/;" f
index /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/re_unicode.rs /^ fn index<'a>(&'a self, name: &'i str) -> &'a str {$/;" f
index_mut /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn index_mut(&mut self, idx: usize) -> &mut Self::Output {$/;" f
index_mut /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ fn index_mut(&mut self, idx: usize) -> &mut Self::Output {$/;" f
info /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.7/src/macros.rs /^macro_rules! info {$/;" d
init /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^ pub fn init(&mut self) -> Result<(), SetLoggerError> {$/;" f
init /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.4.2/src/lib.rs /^pub fn init() -> Result<(), SetLoggerError> {$/;" f
init /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ pub fn init(rows: Vec<Row>) -> Table {$/;" f
initialize /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/lib.rs /^ fn initialize(lazy: &Self) {$/;" f
initialize /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/lib.rs /^ fn initialize(lazy: &Self);$/;" f
initialize /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.4/src/lib.rs /^pub fn initialize<T: LazyStatic>(lazy: &T) {$/;" f
insert /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/sparse.rs /^ pub fn insert(&mut self, value: usize) {$/;" f
insert_cell /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ pub fn insert_cell(&mut self, index: usize, cell: Cell) {$/;" f
insert_export_symbol /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn insert_export_symbol(&mut self, sym_name: &str) {$/;" f
insert_import_symbol /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn insert_import_symbol(&mut self, sym_name: &str) {$/;" f
insert_literal /home/oddcoder/projects/sickassembler/src/lib/basic_types/literal_table.rs /^pub fn insert_literal(literal: &String, address: u32) {$/;" f
insert_local_symbol /home/oddcoder/projects/sickassembler/src/lib/basic_types/symbol_tables.rs /^ fn insert_local_symbol(&mut self, sym: Symbol) {$/;" f
insert_row /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ pub fn insert_row(&mut self, index: usize, row: Row) -> &mut Row {$/;" f
insert_unresolved /home/oddcoder/projects/sickassembler/src/lib/basic_types/literal_table.rs /^pub fn insert_unresolved(literal_name: &str) {$/;" f
inst_ptrs /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/dfa.rs /^ fn inst_ptrs(&self) -> InstPtrs {$/;" f
instuction_set_tests /home/oddcoder/projects/sickassembler/src/lib/basic_types/tests/instruction_set_tests.rs /^mod instuction_set_tests {$/;" m
instuction_tests /home/oddcoder/projects/sickassembler/src/lib/basic_types/tests/instruction_tests.rs /^mod instuction_tests {$/;" m
internal /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/lib.rs /^pub mod internal {$/;" m
into_byte_regex /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ pub fn into_byte_regex(self) -> re_bytes::Regex {$/;" f
into_byte_regex_set /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/exec.rs /^ pub fn into_byte_regex_set(self) -> re_set::bytes::RegexSet {$/;" f
into_inner /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/mutex.rs /^ pub fn into_inner(self) -> T {$/;" f
into_inner /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/remutex.rs /^ pub fn into_inner(self) -> T {$/;" f
into_inner /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.4.0/src/rwlock.rs /^ pub fn into_inner(self) -> T {$/;" f
into_inner /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/lib.rs /^ fn into_inner(self) -> Self::Output where Self: Sized;$/;" f
into_inner /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/terminfo/mod.rs /^ fn into_inner(self) -> T$/;" f
into_inner /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/term-0.4.5/src/win.rs /^ fn into_inner(self) -> T$/;" f
into_iter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/lib.rs /^ fn into_iter(self) -> Self::IntoIter {$/;" f
into_iter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/prettytable-rs-0.6.6/src/row.rs /^ fn into_iter(self) -> Self::IntoIter {$/;" f
into_iter /home/oddcoder/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-0.2.1/src/prog.rs /^ fn into_iter(self) -> Self::IntoIter { self.iter() }$/;" f