Lines Matching defs:json
64 std::ostringstream json;
65 json << "{\n";
68 json << ",\n";
70 json << " \"" << name_value.first << "\": \"";
71 json << name_value.second << "\"";
73 json << "\n} ";
74 return json.str();
80 std::ostringstream json;
81 json << "[ ";
84 json << ", ";
86 json << MapToString(object);
88 json << "]\n\n";
89 return json.str();
105 "Content-Type: application/json; charset=UTF-8\r\n"
338 const char* command = MatchPathSegment(path.c_str(), "/json");