Searched refs:Pointer (Results 1 – 5 of 5) sorted by relevance
35 TEST(Pointer, Parse) { in TEST() argument37 Pointer p(""); in TEST()43 Pointer p("/"); in TEST()52 Pointer p("/foo"); in TEST()62 Pointer p(std::string("/foo")); in TEST()72 Pointer p("/foo/0"); in TEST()85 Pointer p("/a~1b"); in TEST()94 Pointer p("/m~0n"); in TEST()103 Pointer p("/"); in TEST()112 Pointer p("//a"); in TEST()[all …]
1 # Pointer chapter5 …Pointer is a standardized ([RFC6901]) way to select a value inside a JSON Document (DOM). This can…7 Using RapidJSON's implementation of JSON Pointer can simplify some manipulations of the DOM.11 # JSON Pointer {#JsonPointer}13 A JSON Pointer is a list of zero-to-many tokens, each prefixed by `/`. Each token can be a string o…28 Note that, an empty JSON Pointer `""` (zero token) resolves to the whole JSON.41 Pointer("/project").Set(d, "RapidJSON");42 Pointer("/stars").Set(d, 10);47 if (Value* stars = Pointer("/stars").Get(d))53 Pointer("/a/b/0").Create(d);[all …]
51 | `Ch* str` | Pointer to the string (may own) |4 |8 | 58 | `Member* members` | Pointer to array of members (owned) |4 |8 | 65 | `Value* values` | Pointer to array of values (owned) |4 |8 |
132 typedef typename BaseType::pointer Pointer; typedef192 Pointer operator->() const { return ptr_; }201 explicit GenericMemberIterator(Pointer p) : ptr_(p) {} in GenericMemberIterator()203 Pointer ptr_; //!< raw pointer
1012 typedef GenericPointer<Value> Pointer; typedef