Searched refs:thisline (Results 1 – 7 of 7) sorted by relevance
/external/toybox/toys/posix/ |
D | uniq.c | 62 char *thisline = 0, *prevline = 0, *tmpline, eol = '\n'; in uniq_main() local 73 while (getdelim(&thisline, &thissize, eol, infile) > 0) { in uniq_main() 79 t1 = skip(thisline); in uniq_main() 82 t1 = thisline; in uniq_main() 97 prevline = thisline; in uniq_main() 98 thisline = tmpline; in uniq_main() 112 free(thisline); in uniq_main()
|
/external/python/cpython2/Lib/ |
D | quopri.py | 93 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/ |
D | quopri.py | 94 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/swiftshader/third_party/llvm-7.0/llvm/utils/vim/indent/ |
D | llvm.vim | 35 let thisline = getline(v:lnum) 36 if thisline =~ '^\s*}' 46 if thisline =~ ':\s*$'
|
/external/llvm/utils/vim/indent/ |
D | llvm.vim | 35 let thisline = getline(v:lnum) 36 if thisline =~ '^\s*}' 46 if thisline =~ ':\s*$'
|
/external/e2fsprogs/lib/ext2fs/ |
D | tdbtool.c | 383 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/ |
D | contentmanager.py | 137 thisline = data[i:i+unencoded_bytes_per_line] 138 encoded_lines.append(binascii.b2a_base64(thisline).decode('ascii'))
|