Searched refs:numCh (Results 1 - 4 of 4) sorted by relevance
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/ |
H A D | QrSegment.java | 211 * 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 D | QrSegment.java | 239 * 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 D | qrcodegen.hpp | 170 * 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 D | qrcodegen.cpp | 161 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