Lines Matching refs:be
53 These events can be easily matched with the JSON, except some event parameters need further explana…
124 … And beware that, the character type depends on the target encoding, which will be explained later.
132 …n `false` and let the `Reader` stop further parsing. And the `Reader` will be in error state with …
180 …use. If your application only need to converts some data into JSON, it may be a good choice to use…
226 …parameters in `EndArray()` and `EndObject()`. An `SizeType` can be passed but it will be simply ig…
234 4. `Writer` implements the event handler concept. It can be used to handle events from `Reader`, `D…
235 5. `Writer` can be optimized for different platforms.
256 …ream` template parameter is the type of output stream. It cannot be deduced and must be specified …
258 The `SourceEncoding` template parameter specifies the encoding to be used in `String(const Ch*, ...…
276 A `Writer` can only output a single JSON, which can be any JSON type at the root. Once the singular…
278 When a JSON is complete, the `Writer` cannot accept any new events. Otherwise the output will be in…
288 In the following `messagereader` example, `ParseMessages()` parses a JSON which should be an object…
391 …bject()` will be called. However, at that moment `state_ = kExpectValue`, so that function returns…
395 …me relationship, but replacing `Writer` by `PrettyWriter`. So `pretty` can be used to reformat a J…
475 …be developed. However, since SAX-style API can only provide information about a single event at a …