Searched refs:MAX_CHARS (Results 1 – 2 of 2) sorted by relevance
36 private static final int MAX_CHARS = 0x80; field in StyleEscapeFunction44 VALID_CHARS = new boolean[MAX_CHARS];45 UNQUOTED_VALID_CHARS = new boolean[MAX_CHARS];47 for (int n = 0; n < MAX_CHARS; n++) {83 if (c < MAX_CHARS && validChars[c]) { in filter()85 } else if (c >= MAX_CHARS) { in filter()92 for (int i = 0; i < MAX_CHARS; i++) { in dumpInfo()
63 private static final int MAX_CHARS = 256; field in ParserStateTable82 stateTable = new InternalState[MAX_STATES][MAX_CHARS]; in ParserStateTable()112 if (currentChar < MAX_CHARS) { in getNextState()146 for (c = 0; c < MAX_CHARS; c++) { in fill()165 Preconditions.checkArgument(chr >= 0 && chr < MAX_CHARS, in setDestination()177 Preconditions.checkArgument(start >= 0 && start < MAX_CHARS, in setRange()179 Preconditions.checkArgument(end >= 0 && end < MAX_CHARS, in setRange()