Searched defs:Take (Results 1 - 11 of 11) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
H A Dmemorystream.h40 Ch Take() { return (src_ == end_) ? '\0' : *src_++; } function in struct:MemoryStream
H A Dfilereadstream.h44 Ch Take() { Ch c = *current_; Read(); return c; } function in class:FileReadStream
H A Dfilewritestream.h71 char Take() { RAPIDJSON_ASSERT(false); return 0; } function in class:FileWriteStream
H A Dencodedstream.h43 Ch Take() { Ch c = current_; current_ = Encoding::Take(is_); return c; } function in class:EncodedInputStream
81 Ch Take() { RAPIDJSON_ASSERT(false); } function in class:EncodedOutputStream
114 static const TakeFunc f[] = { RAPIDJSON_ENCODINGS_FUNC(Take) };
123 Ch Take() { Ch c = current_; current_ = takeFunc_(*is_); return c; } function in class:AutoUTFInputStream
151 if (bom == 0xFFFE0000) { type_ = kUTF32BE; hasBOM_ = true; is_->Take(); is_->Take(); is_->Take(); is_->Take(); }
152 else if (bom == 0x0000FEFF) { type_ = kUTF32LE; hasBOM_ = true; is_->Take(); is
231 Ch Take() { RAPIDJSON_ASSERT(false); } function in class:AutoUTFOutputStream
[all...]
H A Dencodings.h67 //! Take a character from input byte stream, skip BOM if exist.
71 //! Take a character from input byte stream.
73 static Ch Take(InputByteStream& is);
125 #define COPY() c = is.Take(); *codepoint = (*codepoint << 6) | ((unsigned char)c & 0x3Fu)
128 Ch c = is.Take();
154 #define COPY() os.Put(c = is.Take())
199 Ch c = Take(is);
201 c = is.Take();
203 c = is.Take();
205 c = is.Take();
210 static Ch Take(InputByteStream& is) { function in struct:UTF8
307 static CharType Take(InputByteStream& is) { function in struct:UTF16LE
339 static CharType Take(InputByteStream& is) { function in struct:UTF16BE
413 static CharType Take(InputByteStream& is) { function in struct:UTF32LE
449 static CharType Take(InputByteStream& is) { function in struct:UTF32BE
516 static Ch Take(InputByteStream& is) { function in struct:ASCII
[all...]
H A Drapidjson.h517 Ch Take();
577 Ch Take() { return *src_++; } function in struct:GenericStringStream
612 Ch Take() { return *src_++; } function in struct:GenericInsituStringStream
H A Dpointer.h954 Ch Take() { function in class:GenericPointer::PercentDecodeStream
H A Dreader.h252 s.Take();
469 is.Take(); // Skip '{'
477 is.Take();
492 if (is.Take() != ':')
504 switch (is.Take()) {
519 is.Take(); // Skip '['
527 is.Take();
540 switch (is.Take()) {
554 is.Take();
556 if (is.Take()
737 RAPIDJSON_FORCEINLINE Ch Take() { return is.Take(); } function in class:GenericReader::NumberStream
[all...]
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Dprettywritertest.cpp107 Ch Take() { assert(false); return '\0'; } function in class:OStreamWrapper
H A Dwritertest.cpp150 Ch Take() { assert(false); return '\0'; } function in class:OStreamWrapper
H A Dreadertest.cpp860 EXPECT_EQ(' ', s.Take());
861 EXPECT_EQ('a', s.Take());
882 EXPECT_EQ(' ', s.Take());
883 EXPECT_EQ('a', s.Take());
964 EXPECT_EQ(expected[i], ss.Take());
978 Ch Take() { return *src_++; } function in class:CustomStringStream
1030 Ch Take() { function in class:IStreamWrapper

Completed in 45 milliseconds