Lines Matching refs:value
132 std::string value
150 << value << " ]";
197 std::string value = "\"" + std::string(buffer) + "\"";
200 node->add_attrib("str", key, value);
206 float value
209 if (std::isinf(value))
211 if (value > 0.0f)
213 value = std::numeric_limits<float>::max();
217 value = -std::numeric_limits<float>::max();
222 sprintf(buffer, "%.20g", (double)value);
230 int value
233 node->add_attrib("int", key, std::to_string(value));
239 unsigned int value
242 node->add_attrib("int", key, std::to_string(value));