Lines Matching defs:const
20 const ByteString = goog.require('protobuf.ByteString');
21 const Int64 = goog.require('protobuf.Int64');
22 const WireType = goog.require('protobuf.binary.WireType');
29 const CHECK_LEVEL_DEFINE = goog.define('protobuf.defines.CHECK_LEVEL', '');
32 const POLYFILL_TEXT_ENCODING =
36 * @const {number}
38 const MAX_FIELD_NUMBER = Math.pow(2, 29) - 1;
42 * @const {number}
44 const FLOAT32_MAX = 3.4028234663852886e+38;
47 const CheckLevel = {
56 const definedLevel = CHECK_LEVEL_DEFINE.toUpperCase();
77 const /** !CheckLevel */ CHECK_LEVEL = calculateCheckLevel();
79 const /** boolean */ CHECK_STATE = CHECK_LEVEL === CheckLevel.DEBUG;
81 const /** boolean */ CHECK_CRITICAL_STATE =
84 const /** boolean */ CHECK_BOUNDS = CHECK_LEVEL === CheckLevel.DEBUG;
86 const /** boolean */ CHECK_CRITICAL_BOUNDS =
89 const /** boolean */ CHECK_TYPE = CHECK_LEVEL === CheckLevel.DEBUG;
91 const /** boolean */ CHECK_CRITICAL_TYPE =
377 const array = checkCriticalTypeArray(values);
378 for (const value of array) {
401 const array = checkCriticalTypeArray(values);
402 for (const value of array) {
438 const array = checkCriticalTypeArray(values);
439 for (const value of array) {
465 const valueAsNumber = /** @type {number} */ (value);
483 const array = checkCriticalTypeArray(values);
484 for (const value of array) {
527 const array = checkCriticalTypeArray(values);
528 for (const value of array) {
553 const valueAsNumber = /** @type {number} */ (value);
571 const iterable = checkCriticalTypeIterable(values);
572 for (const value of iterable) {
595 const array = checkCriticalTypeArray(values);
596 for (const value of array) {
624 const valueAsNumber = /** @type {number} */ (value);
640 const array = checkCriticalTypeArray(values);
641 for (const value of array) {
655 const array = checkCriticalTypeArray(values);
656 for (const value of array) {