HomeSort by relevance Sort by last modified time
    Searched refs:linelen (Results 1 - 10 of 10) sorted by null

  /external/e2fsprogs/
wordwrap.pl 11 $linelen = 0;
17 if ($linelen > 0) {
21 $linelen += $len;
22 if ($linelen > 78) {
24 $linelen = 1+$len;
  /external/mksh/src/
edit.c 3334 ssize_t linelen; member in struct:edstate
    [all...]
  /external/webkit/Source/WebCore/loader/
FTPDirectoryParser.cpp 99 unsigned linelen = 0; local
109 linelen = p - line;
111 if (linelen > 0 && *p == '\n' && *(p-1) == '\r')
112 linelen--;
116 if (linelen > 0)
136 while (pos < linelen && numtoks < WTF_ARRAY_LENGTH(tokens))
138 while (pos < linelen &&
141 if (pos < linelen)
144 while (pos < linelen &&
161 pos = linelen;
    [all...]
  /system/core/logwrapper/
logwrap.c 100 static void add_line_to_abbr_buf(struct abbr_buf *a_buf, char *linebuf, int linelen);
238 static void add_line_to_abbr_buf(struct abbr_buf *a_buf, char *linebuf, int linelen) {
241 add_line_to_linear_buf(&a_buf->b_buf, linebuf, linelen);
244 add_line_to_circular_buf(&a_buf->e_buf, linebuf, linelen);
  /build/tools/releasetools/
edify_generator.py 39 def _WordWrap(cmd, linelen=80):
47 x = re.compile("^(.{,%d})\0" % (linelen-indent,))
  /external/openssl/crypto/asn1/
asn_mime.c 103 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
921 static int mime_bound_check(char *line, int linelen, char *bound, int blen)
923 if(linelen == -1) linelen = strlen(line);
926 if(blen + 2 > linelen) return 0;
  /ndk/sources/host-tools/make-3.81/
read.c 512 unsigned int linelen;
531 linelen = strlen (line);
555 if (linelen + 1 + commands_idx > commands_len)
557 commands_len = (linelen + 1 + commands_idx) * 2;
560 bcopy (line, &commands[commands_idx], linelen);
561 commands_idx += linelen;
572 if (collapsed_length < linelen+1)
574 collapsed_length = linelen+1;
508 unsigned int linelen; local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderText.cpp 717 int linelen = 0; local
718 while (i + linelen < len && text[i + linelen] != '\n')
719 linelen++;
721 if (linelen) {
722 endMaxW = widthFromCache(f, i, linelen, leadWidth + endMaxW, 0, 0);
728 i += linelen;
    [all...]
  /external/libxml2/
xmlwriter.c 1550 int linelen; local
    [all...]
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java 4134 int linelen = (int) extractRadix(data, offset, eol - offset, 10); local
    [all...]

Completed in 415 milliseconds