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

Lines Matching refs:chars_decoded

1732             start_flags, bytes_fed, chars_decoded = dec_flags, 0, 0
1741 chars_decoded += len(decoder.decode(next_byte))
1743 if not dec_buffer and chars_decoded <= chars_to_skip:
1746 chars_to_skip -= chars_decoded
1747 start_flags, bytes_fed, chars_decoded = dec_flags, 0, 0
1748 if chars_decoded >= chars_to_skip:
1752 chars_decoded += len(decoder.decode(b'', final=True))
1754 if chars_decoded < chars_to_skip: