Searched refs:ateof (Results 1 – 7 of 7) sorted by relevance
/external/curl/lib/ |
D | mime.c | 57 static size_t encoder_nop_read(char *buffer, size_t size, bool ateof, 60 static size_t encoder_7bit_read(char *buffer, size_t size, bool ateof, 62 static size_t encoder_base64_read(char *buffer, size_t size, bool ateof, 65 static size_t encoder_qp_read(char *buffer, size_t size, bool ateof, 349 static size_t encoder_nop_read(char *buffer, size_t size, bool ateof, in encoder_nop_read() argument 355 (void) ateof; in encoder_nop_read() 372 static size_t encoder_7bit_read(char *buffer, size_t size, bool ateof, in encoder_7bit_read() argument 378 (void) ateof; in encoder_7bit_read() 395 static size_t encoder_base64_read(char *buffer, size_t size, bool ateof, in encoder_base64_read() argument 434 if(ateof && size >= 4) { in encoder_base64_read() [all …]
|
D | mime.h | 71 size_t (*encodefunc)(char *buffer, size_t size, bool ateof,
|
/external/python/cpython2/Tools/scripts/ |
D | cleanfuture.py | 139 self.ateof = 0 147 if self.ateof: 151 self.ateof = 1 252 if self.ateof:
|
/external/python/cpython3/Tools/scripts/ |
D | cleanfuture.py | 139 self.ateof = 0 147 if self.ateof: 151 self.ateof = 1 252 if self.ateof:
|
/external/python/cpython2/Lib/email/ |
D | feedparser.py | 84 for ateof in self._eofstack[::-1]: 85 if ateof(line):
|
/external/python/cpython3/Lib/email/ |
D | feedparser.py | 89 for ateof in reversed(self._eofstack): 90 if ateof(line):
|
/external/python/cpython2/Lib/test/ |
D | test_descr.py | 2937 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)))
|