Searched refs:ateof (Results 1 – 7 of 7) sorted by relevance
/external/curl/lib/ |
D | mime.c | 62 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 …]
|
D | mime.h | 74 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 | 138 self.ateof = 0 146 if self.ateof: 150 self.ateof = 1 251 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)))
|