Lines Matching refs:Take
49 Ch Take() { Ch c = current_; current_ = Encoding::Take(is_); return c; } in RAPIDJSON_DIAG_OFF()
73 if (static_cast<unsigned char>(is_.Peek()) == 0xEFu) is_.Take(); in EncodedInputStream()
74 if (static_cast<unsigned char>(is_.Peek()) == 0xBBu) is_.Take(); in EncodedInputStream()
75 if (static_cast<unsigned char>(is_.Peek()) == 0xBFu) is_.Take(); in EncodedInputStream()
78 Ch Take() { return is_.Take(); } in Take() function
115 Ch Take() { RAPIDJSON_ASSERT(false); return 0;} in Take() function
148 static const TakeFunc f[] = { RAPIDJSON_ENCODINGS_FUNC(Take) };
157 Ch Take() { Ch c = current_; current_ = takeFunc_(*is_); return c; } in Take() function
185 … { type_ = kUTF32BE; hasBOM_ = true; is_->Take(); is_->Take(); is_->Take(); is_->Take… in DetectType()
186 …) { type_ = kUTF32LE; hasBOM_ = true; is_->Take(); is_->Take(); is_->Take(); is_->Take… in DetectType()
187 … & 0xFFFF) == 0xFFFE) { type_ = kUTF16BE; hasBOM_ = true; is_->Take(); is_->Take(); … in DetectType()
188 … & 0xFFFF) == 0xFEFF) { type_ = kUTF16LE; hasBOM_ = true; is_->Take(); is_->Take(); … in DetectType()
189 …FFFF) == 0xBFBBEF) { type_ = kUTF8; hasBOM_ = true; is_->Take(); is_->Take(); is_->Take(); … in DetectType()
265 Ch Take() { RAPIDJSON_ASSERT(false); return 0;} in Take() function