OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thisline
(Results
1 - 8
of
8
) sorted by null
/external/toybox/toys/posix/
uniq.c
64
char *
thisline
= NULL, *prevline = NULL, *tmpline, eol = '\n';
local
76
while (getdelim(&
thisline
, &thissize, eol, infile) > 0) {
82
t1 = skip(
thisline
);
85
t1 =
thisline
;
104
prevline =
thisline
;
105
thisline
= tmpline;
119
free(
thisline
);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
quopri.py
92
# length limitations. Then do the
thisline
->prevline dance.
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/llvm/utils/vim/indent/
llvm.vim
35
let
thisline
= getline(v:lnum)
36
if
thisline
=~ '^\s*}'
46
if
thisline
=~ ':\s*$'
/prebuilts/gdb/darwin-x86/lib/python2.7/
quopri.py
92
# length limitations. Then do the
thisline
->prevline dance.
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
/prebuilts/gdb/linux-x86/lib/python2.7/
quopri.py
92
# length limitations. Then do the
thisline
->prevline dance.
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
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
quopri.py
92
# length limitations. Then do the
thisline
->prevline dance.
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
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
quopri.py
92
# length limitations. Then do the
thisline
->prevline dance.
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/e2fsprogs/lib/ext2fs/
tdbtool.c
383
static char
thisline
[1024];
local
386
thisline
[0] = 0;
387
p = fgets(
thisline
, sizeof(
thisline
)-1, stdin);
390
return p?
thisline
:NULL;
Completed in 1122 milliseconds