Lines Matching defs: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 currentIndentation)
51 currentIndentation += indentation;
62 out += to_formatted_string(v.value, indentation, currentIndentation);
64 currentIndentation -= indentation;
72 BASE_NS::string& out, const typename value_t<T>::array& array, const int indentation, int currentIndentation)
81 currentIndentation += indentation;
89 out += to_formatted_string(v, indentation, currentIndentation);
91 currentIndentation -= indentation;
112 BASE_NS::string to_formatted_string(const value_t<T>& value, const int indentation, const int currentIndentation)
121 append<T>(out, value.object_, indentation, currentIndentation);
125 append<T>(out, value.array_, indentation, currentIndentation);
163 template BASE_NS::string to_formatted_string(const value& value, const int indentation, const int currentIndentation);
165 const standalone_value& value, const int indentation, const int currentIndentation);