HomeSort by relevance Sort by last modified time
    Searched full:max_chars (Results 1 - 19 of 19) 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/patches/
0001-Ehhance-hyphenation-dictionary-reading-from-characte.patch 94 char buf[MAX_CHARS];
95 char word[MAX_CHARS];
96 char pattern[MAX_CHARS];
  /system/core/adb/
fdevent.c 332 size_t max_chars = FD_SETSIZE * 6 + 1; local
336 printed_out = snprintf(pb, max_chars, __VA_ARGS__); \
341 if (max_chars < (unsigned int)printed_out) { \
346 max_chars -= printed_out; \
  /external/hyphenation/
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...]
hyphen.h 61 #define MAX_CHARS 100
  /external/srec/srec/crec/
srec_context.c 342 Interface->max_chars = num_chars + num_words_to_add * AVG_CHARS_PER_WORD;
343 Interface->chars = (char*) CALLOC_CLR(Interface->max_chars, sizeof(char), "srec.graph.wordmap.chars");
555 wmap->max_chars = (wmap->next_chars - wmap->chars);
634 wmap->max_chars = (wordID) offset;
678 if (wmap->next_chars + len >= wmap->chars + wmap->max_chars)
681 int i,tmp_max_chars= wmap->max_chars * FST_GROW_FACTOR;
683 if(tmp_max_chars - wmap->max_chars < FST_GROW_MINCHARS)
691 memcpy(tmp_chars,wmap->chars,wmap->max_chars * sizeof(char));
697 wmap->max_chars = (wordID)tmp_max_chars;
716 PLogError("error: char overflow in wmap %d max %d\n", (int)(wmap->next_chars - wmap->chars), wmap->max_chars);
    [all...]
  /external/srec/srec/include/
srec_context.h 57 asr_int32_t max_chars; member in struct:__anon11391
  /external/v8/src/
objects.cc     [all...]
objects.h     [all...]
  /external/tcpdump/
tcpdump.c 426 MakeFilename(char *buffer, char *orig_name, int cnt, int max_chars)
428 if (cnt == 0 && max_chars == 0)
431 sprintf(buffer, "%s%0*d", orig_name, max_chars, cnt);
    [all...]
  /external/srec/tools/test_g2g/
test_g2g.c 229 fst->olabels->max_chars,
  /external/chromium/chrome/browser/ui/gtk/
location_bar_view_gtk.cc 931 int max_chars = static_cast<int>(static_cast<float>(text_area) \/ local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/bin/
i686-unknown-linux-gnu-as 
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/i686-unknown-linux-gnu/bin/
as 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/arm-eabi/bin/
as 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/
arm-eabi-as 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/arm-eabi/bin/
as 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/
arm-eabi-as 

Completed in 378 milliseconds