Exemplo n.º 1
0
        public void Dispose()
        {
            _matchParser?.Dispose();
            _matchParser = null;

            _buffer = null;
        }
Exemplo n.º 2
0
        public void Dispose()
        {
            _countIndexes         = null;
            _dispIndexes          = null;
            _rawValueDictionary   = null;
            _countIndexDictionary = null;
            _dispIndexDictionary  = null;

            _treeBuilder = null;
            _matchParser?.Dispose();
            _matchParser = null;
        }
Exemplo n.º 3
0
 public LzssVlcEncoder(IMatchParser matchParser)
 {
     _matchParser = matchParser;
 }
Exemplo n.º 4
0
 public PsLzEncoder(IMatchParser matchParser)
 {
     _matchParser = matchParser;
 }
Exemplo n.º 5
0
 public LzEncEncoder(IMatchParser parser)
 {
     _matchParser = parser;
 }
Exemplo n.º 6
0
 public TalesOf03Encoder(IMatchParser parser)
 {
     _matchParser = parser;
 }
Exemplo n.º 7
0
 public LevenshteinDistance(IMatchParser parser)
 {
     _parser = parser;
 }
Exemplo n.º 8
0
 public SpikeChunsoftEncoder(IMatchParser parser)
 {
     _matchParser = parser;
 }
Exemplo n.º 9
0
 public Wp16Encoder(IMatchParser matchParser)
 {
     _matchParser = matchParser;
 }
Exemplo n.º 10
0
 public StringContainMatch(IMatchParser parser)
 {
     _parser = parser;
 }
Exemplo n.º 11
0
 public StringMatcher(IMatchParser matchParser, IMatchSorter sorter)
 {
     _matchParser = matchParser;
     _sorter      = sorter;
 }
Exemplo n.º 12
0
 public SpikeChunsoftEncoder(IMatchParser parser)
 {
     _encoder = new SpikeChunsoftHeaderlessEncoder(parser);
 }
Exemplo n.º 13
0
 public InazumaLzssEncoder(IMatchParser parser)
 {
     _encoder = new Lzss01HeaderlessEncoder(parser);
 }
Exemplo n.º 14
0
 public Yaz0Encoder(ByteOrder byteOrder, IMatchParser matchParser)
 {
     _byteOrder   = byteOrder;
     _matchParser = matchParser;
 }
Exemplo n.º 15
0
 public NintendoRleEncoder(IMatchParser matchParser)
 {
     _matchParser = matchParser;
 }
Exemplo n.º 16
0
 public BackwardLz77Encoder(IMatchParser matchParser, ByteOrder byteOrder)
 {
     _byteOrder   = byteOrder;
     _matchParser = matchParser;
 }
Exemplo n.º 17
0
 public TaikoLz80Encoder(IMatchParser matchParser)
 {
     _matchParser = matchParser;
 }
Exemplo n.º 18
0
 public TaikoLz81Encoder(IMatchParser matchParser, IHuffmanTreeBuilder treeBuilder)
 {
     _matchParser = matchParser;
     _treeBuilder = treeBuilder;
 }
Exemplo n.º 19
0
 public LzssEncoder(IMatchParser matchParser)
 {
     _lz10Encoder = new Lz10Encoder(matchParser);
 }
Exemplo n.º 20
0
 public Lz60Encoder(IMatchParser matchParser)
 {
     _lz40Encoder = new Lz40Encoder(matchParser);
 }
Exemplo n.º 21
0
 public RleEncoder(IMatchParser matchParser)
 {
     _encoder = new RleHeaderlessEncoder(matchParser);
 }
Exemplo n.º 22
0
 public Lz10Encoder(IMatchParser matchParser)
 {
     _encoder = new Lz10HeaderlessEncoder(matchParser);
 }
Exemplo n.º 23
0
 public SpikeChunsoftHeaderlessEncoder(IMatchParser matchParser)
 {
     _matchParser = matchParser;
 }
Exemplo n.º 24
0
 public RleHeaderlessEncoder(IMatchParser matchParser)
 {
     _matchParser = matchParser;
 }
Exemplo n.º 25
0
 public TalesOf01Encoder(IMatchParser parser)
 {
     _encoder = new Lzss01HeaderlessEncoder(parser);
 }
Exemplo n.º 26
0
 public Lz40Encoder(IMatchParser matchParser)
 {
     _matchParser = matchParser;
 }
Exemplo n.º 27
0
 public void Dispose()
 {
     _treeBuilder = null;
     _matchParser?.Dispose();
     _matchParser = null;
 }