Home
last modified time | relevance | path

Searched refs:MAX_CHARS (Results 1 – 5 of 5) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
DStyleEscapeFunction.java36 private static final int MAX_CHARS = 0x80; field in 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]) { in filter()
85 } else if (c >= MAX_CHARS) { in filter()
92 for (int i = 0; i < MAX_CHARS; i++) { in dumpInfo()
/external/jsilver/src/com/google/streamhtmlparser/impl/
DParserStateTable.java63 private static final int MAX_CHARS = 256; field in ParserStateTable
82 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()
/external/hyphenation/patches/
D0001-Ehhance-hyphenation-dictionary-reading-from-characte.patch94 char buf[MAX_CHARS];
95 char word[MAX_CHARS];
96 char pattern[MAX_CHARS];
/external/hyphenation/
Dhyphen.c284 char buf[MAX_CHARS]; in hnj_hyphen_load_from_buffer()
285 char word[MAX_CHARS]; in hnj_hyphen_load_from_buffer()
286 char pattern[MAX_CHARS]; in hnj_hyphen_load_from_buffer()
721 int matchlen_buf[MAX_CHARS]; in hnj_hyphen_hyph_()
722 int matchindex_buf[MAX_CHARS]; in hnj_hyphen_hyph_()
723 char * matchrepl_buf[MAX_CHARS]; in hnj_hyphen_hyph_()
730 if (word_size + 3 < MAX_CHARS) { in hnj_hyphen_hyph_()
907 if (word_size < MAX_CHARS) { in hnj_hyphen_hyph_()
Dhyphen.h61 #define MAX_CHARS 100 macro