Lines Matching refs:In
9 In the tutorial, `Value` and `Document` was used. Similarly to `std::string`, these are actually `…
69 `Document` provides several functions for parsing. In below, (1) is the fundamental function, while…
86 // (4) In situ parsing
90 // (5) In situ parsing, using default parse flags
105 … of string. The examples of [stream](doc/stream.md) uses the first three. *In situ* parsing will b…
113 `kParseInsituFlag` | In-situ(destructive) parsing.
168 ## In Situ Parsing {#InSituParsing}
172 > *In situ* ... is a Latin phrase that translates literally to "on site" or "in position". It means…
174 > (In computer science) An algorithm is said to be an in situ algorithm, or in-place algorithm, if …
176 In normal parsing process, a large overhead is to decode JSON strings and copy them to other buffer…
182 In normal parsing, the decoded string are copied to freshly allocated buffers. `"\\n"` (2 character…
186 *In situ* parsing just modified the original JSON. Updated characters are highlighted in the diagra…
201 // In situ parsing the buffer into d, buffer will also be modified
213 In situ parsing minimizes allocation overheads and memory copying. Generally this improves cache co…
222 *In situ* parsing is mostly suitable for short-term JSON that only need to be processed once, and t…
240 In RapidJSON, stringifying a DOM with `Writer` may be look a little bit weired.