# File lib/rchardet/escprober.rb, line 65 def feed(aBuf) aBuf.each_byte do |b| c = b.chr for codingSM in @codingSM next unless codingSM next unless codingSM.active codingState = codingSM.next_state(c) if codingState == EError codingSM.active = false @activeSM -= 1 if @activeSM <= 0 @state = ENotMe return get_state() end elsif codingState == EItsMe @state = EFoundIt @detectedCharset = codingSM.get_coding_state_machine() return get_state() end end end return get_state() end
# File lib/rchardet/escprober.rb, line 53 def get_charset_name return @detectedCharset end
Generated with the Darkfish Rdoc Generator 2.