Lines Matching refs:indentation
27 const int indentation = JSON_DEFAULT_INDENTATION, const int currentIndentation = 0);
42 …BASE_NS::string& out, const typename value_t<T>::object& object, const int indentation, int curren… in append() argument
51 currentIndentation += indentation; in append()
62 out += to_formatted_string(v.value, indentation, currentIndentation); in append()
64 currentIndentation -= indentation; in append()
72 …BASE_NS::string& out, const typename value_t<T>::array& array, const int indentation, int currentI… in append() argument
81 currentIndentation += indentation; in append()
89 out += to_formatted_string(v, indentation, currentIndentation); in append()
91 currentIndentation -= indentation; in append()
112 BASE_NS::string to_formatted_string(const value_t<T>& value, const int indentation, const int curre… in to_formatted_string() argument
121 append<T>(out, value.object_, indentation, currentIndentation); in to_formatted_string()
125 append<T>(out, value.array_, indentation, currentIndentation); in to_formatted_string()
163 template BASE_NS::string to_formatted_string(const value& value, const int indentation, const int c…
165 const standalone_value& value, const int indentation, const int currentIndentation);