Lines Matching defs:string
26 BASE_NS::string to_formatted_string(const CORE_NS::json::value_t<T>& value,
33 void append(BASE_NS::string& out, const typename value_t<T>::string& string)
36 out.append(escape(string));
42 BASE_NS::string& out, const typename value_t<T>::object& object, const int indentation, int currentIndentation)
72 BASE_NS::string& out, const typename value_t<T>::array& array, const int indentation, int currentIndentation)
98 void append(BASE_NS::string& out, const double floatingPoint)
105 // "At most bufsz - 1 characters are written." string has size() characters + 1 for null so use size() +
106 // 1 as the total size. If resize() failed string size() hasn't changed, buffer will point to the null
112 BASE_NS::string to_formatted_string(const value_t<T>& value, const int indentation, const int currentIndentation)
114 BASE_NS::string out;
128 case type::string:
163 template BASE_NS::string to_formatted_string(const value& value, const int indentation, const int currentIndentation);
164 template BASE_NS::string to_formatted_string(