Lines Matching refs:input
10 def decode(input, errors='strict'):
11 return codecs.utf_32_decode(input, errors, True)
18 def encode(self, input, final=False):
20 result = codecs.utf_32_encode(input, self.errors)[0]
26 return self.encoder(input, self.errors)[0]
53 def _buffer_decode(self, input, errors, final):
56 codecs.utf_32_ex_decode(input, errors, 0, final)
64 return self.decoder(input, self.errors, final)
108 def encode(self, input, errors='strict'):
110 result = codecs.utf_32_encode(input, errors)
117 return self.encoder(input, errors)
128 def decode(self, input, errors='strict'):
130 codecs.utf_32_ex_decode(input, errors, 0, False)