Lines Matching refs:JSON
3 Document Object Model(DOM) is an in-memory representation of JSON for query and manipulation. The b…
34 The `Encoding` parameter specifies the encoding of JSON String value in memory. Possible options ar…
36 …gs stored in JSON files. Unicode-enabled functions in Windows use UTF-16 (wide character) encoding…
63 …ially, and cannot deallocate one by one. This is very suitable when parsing a JSON into a DOM tree.
114 `kParseValidateEncodingFlag` | Validate encoding of JSON strings.
116 `kParseStopWhenDoneFlag` | After parsing a complete JSON root from stream, stop further proces…
176 …JSON strings and copy them to other buffers. *In situ* parsing decodes those JSON string at the pl…
178 The following diagrams compare normal and *in situ* parsing. The JSON string values contain pointer…
186 … situ* parsing just modified the original JSON. Updated characters are highlighted in the diagram.…
211 The JSON strings are marked as const-string. But they may not be really "constant". The life cycle …
217 1. The whole JSON is in memory.
220 4. If the DOM need to be used for long period after parsing, and there are few JSON strings in the …
222 …JSON that only need to be processed once, and then be released from memory. In practice, these sit…
226 … the encoding of the DOM. For example, the source stream contains a UTF-8 JSON, while the DOM is u…
228 When writing a JSON from DOM to output stream, transcoding can also be used. An example is in [Enco…