HomeSort by relevance Sort by last modified time
    Searched refs:linelen (Results 1 - 20 of 20) 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 3340 ssize_t linelen; member in struct:edstate
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
quoprimime.py 221 linelen = len(line)
224 for j in range(linelen):
229 elif j+1 == linelen:
header.py 457 linelen = 0
459 curlen = linelen + max(0, len(this)-1) * joinlen
467 linelen += partlen
481 linelen = wslen + len(this[-1])
485 linelen += partlen
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
quoprimime.py 221 linelen = len(line)
224 for j in range(linelen):
229 elif j+1 == linelen:
header.py 457 linelen = 0
459 curlen = linelen + max(0, len(this)-1) * joinlen
467 linelen += partlen
481 linelen = wslen + len(this[-1])
485 linelen += partlen
  /system/core/logwrapper/
logwrap.c 101 static void add_line_to_abbr_buf(struct abbr_buf *a_buf, char *linebuf, int linelen);
239 static void add_line_to_abbr_buf(struct abbr_buf *a_buf, char *linebuf, int linelen) {
242 add_line_to_linear_buf(&a_buf->b_buf, linebuf, linelen);
245 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,))
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
cpp_bindings.cpp 488 int linelen = min(16, len - i); local
491 for (int j = 1; j < linelen; j++) {
495 for (int j = linelen; j < 16; j++) {
503 for (int j = 0; j < linelen; j++) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
binhex.py 39 LINELEN=64
118 self.linelen = LINELEN-1
133 while first <= len(self.hqxdata)-self.linelen:
134 last = first + self.linelen
136 self.linelen = LINELEN
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
binhex.py 39 LINELEN=64
118 self.linelen = LINELEN-1
133 while first <= len(self.hqxdata)-self.linelen:
134 last = first + self.linelen
136 self.linelen = LINELEN
  /external/openssl/crypto/asn1/
asn_mime.c 103 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
923 static int mime_bound_check(char *line, int linelen, char *bound, int blen)
925 if(linelen == -1) linelen = strlen(line);
928 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/chromium_org/third_party/tcmalloc/chromium/src/base/
sysinfo.cc 358 const int linelen = strlen(line); local
359 const int bytes_to_read = sizeof(line)-1 - linelen;
361 chars_read = read(fd, line + linelen, bytes_to_read);
362 line[linelen + chars_read] = '\0';
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
sysinfo.cc 343 const int linelen = strlen(line); local
344 const int bytes_to_read = sizeof(line)-1 - linelen;
346 chars_read = read(fd, line + linelen, bytes_to_read);
347 line[linelen + chars_read] = '\0';
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
cpp_bindings.cpp 505 int linelen = min(16, len - i); local
508 for (int j = 1; j < linelen; j++) {
512 for (int j = linelen; j < 16; j++) {
520 for (int j = 0; j < linelen; j++) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 830 int linelen = 0; local
831 while (i + linelen < len && text[i + linelen] != newlineCharacter)
832 linelen++;
834 if (linelen) {
835 lastLineMaxWidth = widthFromCache(f, i, linelen, leadWidth + lastLineMaxWidth, direction, 0, 0);
841 i += linelen
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlwriter.c 1550 int linelen; local
    [all...]
  /external/libxml2/
xmlwriter.c 1554 int linelen; local
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
BackupManagerService.java 5413 int linelen = (int) extractRadix(data, offset, eol - offset, 10); local
6701 int linelen = (int) extractRadix(data, offset, eol - offset, 10); local
    [all...]

Completed in 420 milliseconds