Searched refs:is_ (Results 1 – 3 of 3) sorted by relevance
38 EncodedInputStream(InputByteStream& is) : is_(is) { in EncodedInputStream()39 current_ = Encoding::TakeBOM(is_); in EncodedInputStream()43 Ch Take() { Ch c = current_; current_ = Encoding::Take(is_); return c; } in Take()44 size_t Tell() const { return is_.Tell(); } in Tell()56 InputByteStream& is_; variable111 …AutoUTFInputStream(InputByteStream& is, UTFType type = kUTF8) : is_(&is), type_(type), hasBOM_(fal…116 current_ = takeFunc_(*is_);123 Ch Take() { Ch c = current_; current_ = takeFunc_(*is_); return c; } in Take()124 size_t Tell() const { return is_->Tell(); } in Tell()145 const unsigned char* c = (const unsigned char *)is_->Peek4(); in DetectType()[all …]
287 IStreamWrapper(std::istream& is) : is_(is) {291 int c = is_.peek();296 int c = is_.get();300 size_t Tell() const { return (size_t)is_.tellg(); } // 3311 std::istream& is_;
1023 IStreamWrapper(std::istream& is) : is_(is) {} in IStreamWrapper()1026 int c = is_.peek(); in Peek()1031 int c = is_.get(); in Take()1035 size_t Tell() const { return (size_t)is_.tellg(); } in Tell()1046 std::istream& is_; member in IStreamWrapper