Home | History | Annotate | Download | only in python2.7

Lines Matching full:encoder

126             The encoder must be able to handle zero length input and
181 Resets the encoder to the initial state.
186 Return the current state of the encoder.
192 Set the current state of the encoder. state must have been
199 incremental encoder if the encoder must keep some of the output in a
931 its encoder function.
954 or the codecs doesn't provide an incremental encoder.
957 encoder = lookup(encoding).incrementalencoder
958 if encoder is None:
960 return encoder
1005 encoder
1007 output = encoder.encode(input)
1010 output = encoder.encode("", True)