Lines Matching refs:Value
47 if (Value* stars = Pointer("/stars").Get(d))
58 Value& hello = Pointer("/hello").GetWithDefault(d, "world");
63 Value x("C++");
88 if (Value* stars = GetValueByPointer(d, "/stars"))
93 Value& hello = GetValueByPointerWithDefault(d, "/hello", "world");
95 Value x("C++");
136 …et the other functions can resolve this for array, equivalent to calling `Value::PushBack()` to th…
145 ## Resolving Document and Value
147 When using `p.Get(root)` or `GetValueByPointer(root, p)`, `root` is a (const) `Value&`. That means,…
149 …ture. One group uses `Document& document` as parameter, another one uses `Value& root`. The first …
164 void SetLocation(Value& location, const char* country, const char* addresses[2]) {
165 Value::Allocator& a = document_->GetAllocator();