Home
last modified time | relevance | path

Searched refs:GenericDocument (Results 1 – 11 of 11) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Ddom.md20 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 …]
Dfeatures.md45 …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…
Dstream.md153 Document d; // Document is GenericDocument<UTF8<> >
168 Document d; // Document is GenericDocument<UTF8<> >
206 Document d; // Document is GenericDocument<UTF8<> >
Dencoding.md67 …, the `Encoding` template parameter in `GenericValue<Encoding>` and `GenericDocument<Encoding>` in…
72 typedef GenericDocument<UTF16<> > WDocument;
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
Ddocument.h73 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 …]
Dpointer.h443 …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/
Ddocumenttest.cpp71 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;
Djsoncheckertest.cpp70GenericDocument<UTF8<>, CrtAllocator> document; // Use Crt allocator to check exception-safety (no… in TEST()
90GenericDocument<UTF8<>, CrtAllocator> document; // Use Crt allocator to check exception-safety (no… in TEST()
Dnamespacetest.cpp36 typedef GenericDocument<UTF8<>, CrtAllocator> DocumentType; in TEST()
Dvaluetest.cpp186 GenericDocument<UTF8<>, CrtAllocator> z(&crtAllocator); in TEST()
/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
Drapidjsontest.cpp168 GenericDocument<UTF8<>, CrtAllocator> doc; in TEST_F()