Searched defs:lengths (Results 1 - 6 of 6) sorted by relevance

/inkscape/share/extensions/Barcode/
H A DEan13.py31 lengths = [12] variable in class:Ean13
H A DEan8.py28 lengths = [7] variable in class:Ean8
H A DUpca.py28 lengths = [11] variable in class:Upca
H A DUpce.py33 lengths = [6, 11] variable in class:Upce
H A DBaseEan.py38 lengths = None variable in class:EanBarcode
86 """Return a list of acceptable lengths"""
89 return self.lengths[:]
97 lengths = self.get_lengths() + self.checks
100 if len(code) not in lengths:
103 if sep in lengths:
109 if len(code) not in lengths:
111 (len(code), ', '.join([str(length) for length in lengths])))
/inkscape/src/util/
H A Dziptool.cpp222 static const int MAXCODES = 316; // max codes lengths to read
368 (h->count[length[symbol]])++; // assumes lengths are within bounds
375 // check for an over-subscribed or incomplete set of lengths
618 int lengths[FIXLCODES]; local
623 lengths[symbol] = 8;
625 lengths[symbol] = 9;
627 lengths[symbol] = 7;
629 lengths[symbol] = 8;
630 buildHuffman(&lencode, lengths, FIXLCODES);
634 lengths[symbo
648 int lengths[MAXCODES]; // descriptor code lengths local
[all...]

Completed in 548 milliseconds