OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAX_CHARS
(Results
1 - 4
of
4
) sorted by null
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
StyleEscapeFunction.java
36
private static final int
MAX_CHARS
= 0x80;
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/
ParserStateTable.java
61
* characters in the range 0 to
MAX_CHARS
-1.
63
private static final int
MAX_CHARS
= 256;
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/
hyphen.h
61
#define
MAX_CHARS
100
hyphen.c
284
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
) {
[
all
...]
Completed in 248 milliseconds