Home
last modified time | relevance | path

Searched refs:ateof (Results 1 – 7 of 7) sorted by relevance

/external/curl/lib/
Dmime.c62 static size_t encoder_nop_read(char *buffer, size_t size, bool ateof,
65 static size_t encoder_7bit_read(char *buffer, size_t size, bool ateof,
67 static size_t encoder_base64_read(char *buffer, size_t size, bool ateof,
70 static size_t encoder_qp_read(char *buffer, size_t size, bool ateof,
355 static size_t encoder_nop_read(char *buffer, size_t size, bool ateof, in encoder_nop_read() argument
361 (void) ateof; in encoder_nop_read()
383 static size_t encoder_7bit_read(char *buffer, size_t size, bool ateof, in encoder_7bit_read() argument
389 (void) ateof; in encoder_7bit_read()
409 static size_t encoder_base64_read(char *buffer, size_t size, bool ateof, in encoder_base64_read() argument
456 if(ateof) { in encoder_base64_read()
[all …]
Dmime.h74 size_t (*encodefunc)(char *buffer, size_t size, bool ateof,
/external/python/cpython2/Tools/scripts/
Dcleanfuture.py139 self.ateof = 0
147 if self.ateof:
151 self.ateof = 1
252 if self.ateof:
/external/python/cpython3/Tools/scripts/
Dcleanfuture.py138 self.ateof = 0
146 if self.ateof:
150 self.ateof = 1
251 if self.ateof:
/external/python/cpython2/Lib/email/
Dfeedparser.py84 for ateof in self._eofstack[::-1]:
85 if ateof(line):
/external/python/cpython3/Lib/email/
Dfeedparser.py89 for ateof in reversed(self._eofstack):
90 if ateof(line):
/external/python/cpython2/Lib/test/
Dtest_descr.py2937 ateof = 0 variable in ClassPropertiesAndMethods.test_basic_inheritance.CountedInput
2939 if self.ateof:
2946 self.ateof = 1
2959 self.assertEqual(f.ateof, (i > len(lines)))