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

/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DStyleEscapeFunction.java36 private static final int MAX_CHARS = 0x80; field in class:StyleEscapeFunction
44 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]) {
85 } else if (c >= MAX_CHARS) {
92 for (int i = 0; i < MAX_CHARS; i++) {
/external/jsilver/src/com/google/streamhtmlparser/impl/
H A DParserStateTable.java61 * characters in the range 0 to MAX_CHARS -1.
63 private static final int MAX_CHARS = 256; field in class:ParserStateTable
82 stateTable = new InternalState[MAX_STATES][MAX_CHARS];
112 if (currentChar < MAX_CHARS) {
146 for (c = 0; c < MAX_CHARS; c++) {
165 Preconditions.checkArgument(chr >= 0 && chr < MAX_CHARS,
177 Preconditions.checkArgument(start >= 0 && start < MAX_CHARS,
179 Preconditions.checkArgument(end >= 0 && end < MAX_CHARS,
/external/hyphenation/
H A Dhyphen.h61 #define MAX_CHARS 100 macro
H A Dhyphen.c284 char buf[MAX_CHARS];
285 char word[MAX_CHARS];
286 char pattern[MAX_CHARS];
721 int matchlen_buf[MAX_CHARS];
722 int matchindex_buf[MAX_CHARS];
723 char * matchrepl_buf[MAX_CHARS];
730 if (word_size + 3 < MAX_CHARS) {
907 if (word_size < MAX_CHARS) {

Completed in 402 milliseconds