Home
last modified time | relevance | path

Searched refs:numCh (Results 1 - 4 of 4) sorted by relevance

/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/
H A DQrSegment.java211 * The character count (numCh) must agree with the mode and the bit buffer length,
214 * @param numCh the data length in characters or bytes, which is non-negative
219 public QrSegment(Mode md, int numCh, BitBuffer data) { in QrSegment() argument
222 if (numCh < 0) in QrSegment()
224 numChars = numCh; in QrSegment()
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/
H A DQrSegment.java239 * The character count (numCh) must agree with the mode and the bit buffer length,
242 * @param numCh the data length in characters or bytes, which is non-negative
248 public QrSegment(Mode md, int numCh, int[] data, int bitLen) { in QrSegment() argument
251 if (numCh < 0 || bitLen < 0 || bitLen > data.length * 32L) in QrSegment()
253 numChars = numCh; in QrSegment()
/third_party/qrcodegen/cpp/
H A Dqrcodegen.hpp170 * The character count (numCh) must agree with the mode and the bit buffer length,
173 public: QrSegment(const Mode &md, int numCh, const std::vector<bool> &dt);
178 * The character count (numCh) must agree with the mode and the bit buffer length,
181 public: QrSegment(const Mode &md, int numCh, std::vector<bool> &&dt);
H A Dqrcodegen.cpp161 QrSegment::QrSegment(const Mode &md, int numCh, const std::vector<bool> &dt) : in QrSegment() argument
163 numChars(numCh), in QrSegment()
165 if (numCh < 0) in QrSegment()
170 QrSegment::QrSegment(const Mode &md, int numCh, std::vector<bool> &&dt) : in QrSegment() argument
172 numChars(numCh), in QrSegment()
174 if (numCh < 0) in QrSegment()

Completed in 4 milliseconds