Lines Matching refs:capacity
38 // The capacity of QR Code is up to 7000 digits or 4000
73 * The capacity of QR Code is up to 7000 digits or 4000 characters, and has high robustness.
113 * The capacity of QR Code is up to 7000 digits or 4000 characters, and has high robustness.
187 * Matrix index to get width from $capacity array.
192 * Matrix index to get number of words from $capacity array.
197 * Matrix index to get remainder from $capacity array.
202 * Matrix index to get error correction level from $capacity array.
433 * Array Table of the capacity of symbols.
437 protected $capacity = array(
2243 return $this->capacity[$version][self::QRCAP_WORDS] - $this->capacity[$version][self::QRCAP_EC][$level];
2253 return $this->capacity[$version][self::QRCAP_EC][$level];
2262 return $this->capacity[$version][self::QRCAP_WIDTH];
2271 return $this->capacity[$version][self::QRCAP_REMINDER];
2282 $words = ($this->capacity[$i][self::QRCAP_WORDS] - $this->capacity[$i][self::QRCAP_EC][$level]);
2287 // the size of input data is greater than QR capacity, try to lover the error correction mode
2489 $width = $this->capacity[$version][self::QRCAP_WIDTH];