Home
last modified time | relevance | path

Searched refs:thisline (Results 1 – 6 of 6) sorted by relevance

/external/toybox/toys/posix/
Duniq.c64 char *thisline = NULL, *prevline = NULL, *tmpline, eol = '\n'; in uniq_main() local
76 while (getdelim(&thisline, &thissize, eol, infile) > 0) { in uniq_main()
82 t1 = skip(thisline); in uniq_main()
85 t1 = thisline; in uniq_main()
104 prevline = thisline; in uniq_main()
105 thisline = tmpline; in uniq_main()
119 free(thisline); in uniq_main()
/external/python/cpython2/Lib/
Dquopri.py93 thisline = EMPTYSTRING.join(outline)
94 while len(thisline) > MAXLINESIZE:
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n')
98 thisline = thisline[MAXLINESIZE-1:]
100 prevline = thisline
/external/python/cpython3/Lib/
Dquopri.py94 thisline = EMPTYSTRING.join(outline)
95 while len(thisline) > MAXLINESIZE:
98 write(thisline[:MAXLINESIZE-1], lineEnd=b'=\n')
99 thisline = thisline[MAXLINESIZE-1:]
101 prevline = thisline
/external/llvm/utils/vim/indent/
Dllvm.vim35 let thisline = getline(v:lnum)
36 if thisline =~ '^\s*}'
46 if thisline =~ ':\s*$'
/external/e2fsprogs/lib/ext2fs/
Dtdbtool.c383 static char thisline[1024]; in tdb_getline() local
386 thisline[0] = 0; in tdb_getline()
387 p = fgets(thisline, sizeof(thisline)-1, stdin); in tdb_getline()
390 return p?thisline:NULL; in tdb_getline()
/external/python/cpython3/Lib/email/
Dcontentmanager.py137 thisline = data[i:i+unencoded_bytes_per_line]
138 encoded_lines.append(binascii.b2a_base64(thisline).decode('ascii'))