Searched refs:GenericDocument (Results 1 – 11 of 11) sorted by relevance
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
D | dom.md | 20 class GenericDocument : public GenericValue<Encoding, Allocator> { 25 typedef GenericDocument<UTF8<> > Document; 41 typedef GenericDocument<UTF16<> > WDocument; 63 The default allocator used in `GenericDocument` is `MemoryPoolAllocator`. This allocator actually a… 76 GenericDocument& GenericDocument::ParseStream(InputStream& is); 80 GenericDocument& GenericDocument::ParseStream(InputStream& is); 84 GenericDocument& GenericDocument::ParseStream(InputStream& is); 88 GenericDocument& GenericDocument::ParseInsitu(Ch* str); 91 GenericDocument& GenericDocument::ParseInsitu(Ch* str); 95 GenericDocument& GenericDocument::Parse(const Ch* str); [all …]
|
D | features.md | 45 …XML, RapidJSON can parse JSON into a DOM representation (`rapidjson::GenericDocument`), for easy m… 46 …* The DOM style API (`rapidjson::GenericDocument`) is actually implemented with SAX style API (`ra…
|
D | encoding.md | 67 …, the `Encoding` template parameter in `GenericValue<Encoding>` and `GenericDocument<Encoding>` in… 72 typedef GenericDocument<UTF16<> > WDocument;
|
D | stream.md | 153 Document d; // Document is GenericDocument<UTF8<> > 168 Document d; // Document is GenericDocument<UTF8<> > 206 Document d; // Document is GenericDocument<UTF8<> >
|
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
D | document.h | 73 class GenericDocument; variable 455 explicit GenericValue(GenericDocument<Encoding,Allocator,StackAllocator>&& rhs); 459 GenericValue& operator=(GenericDocument<Encoding,Allocator,StackAllocator>&& rhs); 1577 template <typename, typename, typename> friend class GenericDocument; 1772 class GenericDocument : public GenericValue<Encoding, Allocator> { 1785 …explicit GenericDocument(Type type, Allocator* allocator = 0, size_t stackCapacity = kDefaultStack… 1798 …explicit GenericDocument(Allocator* allocator = 0, size_t stackCapacity = kDefaultStackCapacity, S… 1807 GenericDocument(GenericDocument&& rhs) RAPIDJSON_NOEXCEPT 1820 ~GenericDocument() { 1826 GenericDocument& operator=(GenericDocument&& rhs) RAPIDJSON_NOEXCEPT [all …]
|
D | pointer.h | 443 …ValueType& Create(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>… 538 …ValueType& GetWithDefault(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAl… in GetWithDefault() 544 …ValueType& GetWithDefault(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAl… in GetWithDefault() 551 …ValueType& GetWithDefault(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAl… in GetWithDefault() 562 …GetWithDefault(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& d… in GetWithDefault() 614 …ValueType& Set(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& d… in Set() 620 …ValueType& Set(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& d… in Set() 626 …ValueType& Set(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& d… in Set() 633 …ValueType& Set(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& d… in Set() 644 …Set(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& document, T … in Set() [all …]
|
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
D | documenttest.cpp | 71 typedef GenericDocument<UTF8<>, Allocator, StackAllocator> DocumentType; in ParseTest() 123 GenericDocument<UTF16<> > d; in TEST() 263 typedef GenericDocument<UTF8<>, MemoryPoolAllocator<>, MemoryPoolAllocator<> > DocumentType; in TEST() 293 GenericDocument< UTF16<> > json; in TEST() 354 typedef GenericDocument<UTF8<>, Allocator> Document; in TYPED_TEST() 388 typedef GenericDocument<UTF8<>, Allocator> Document; in TYPED_TEST() 422 typedef GenericDocument<Encoding, Allocator> Document; 447 typedef GenericDocument<UTF8<>, Allocator> Document; in TYPED_TEST() 483 typedef GenericDocument<UTF8<>, Allocator> Document; in TYPED_TEST() 519 typedef GenericDocument<Encoding, Allocator> Document;
|
D | jsoncheckertest.cpp | 70 …GenericDocument<UTF8<>, CrtAllocator> document; // Use Crt allocator to check exception-safety (no… in TEST() 90 …GenericDocument<UTF8<>, CrtAllocator> document; // Use Crt allocator to check exception-safety (no… in TEST()
|
D | namespacetest.cpp | 36 typedef GenericDocument<UTF8<>, CrtAllocator> DocumentType; in TEST()
|
D | valuetest.cpp | 186 GenericDocument<UTF8<>, CrtAllocator> z(&crtAllocator); in TEST()
|
/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/ |
D | rapidjsontest.cpp | 168 GenericDocument<UTF8<>, CrtAllocator> doc; in TEST_F()
|