Lines Matching refs:can
53 These events can be easily matched with the JSON, except some event parameters need further explana…
94 …handler type, instead of using class with virtual functions. This paradigm can improve the perform…
130 … Normally it should returns `true`. If the handler encounters an error, it can return `false` to n…
132 …ed that the JSON does not conform to the required schema, then the handler can return `false` and …
151 … For example, to parse a UTF-8 stream and outputs UTF-16 string events, you can define a reader by:
174 If an error occurs during parsing, it will return `false`. User can also calls `bool HasParseEror()…
224 …loads. One is the same as defined in handler concept with 3 parameters. It can handle string with …
226 …s not pass any parameters in `EndArray()` and `EndObject()`. An `SizeType` can be passed but it wi…
232 2. `Writer::String()` can handle string escaping (e.g. converting code point `U+000A` to `\n`) and …
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.
276 …can only output a single JSON, which can be any JSON type at the root. Once the singular event for…
278 …valid (i.e. having more than one root). To reuse the `Writer` object, user can call `Writer::Reset…
395 …can handle the events published by `Reader`. `condense` example simply set a `Writer` as handler o…
397 Actually, we can add intermediate layer(s) to filter the contents of JSON via these SAX-style API. …
475 More complicated filters can be developed. However, since SAX-style API can only provide informatio…