Lines Matching defs:value
155 void writeFloat (const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value);
156 void writeInteger (const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value);
174 void writeSampleValue (double value);
175 void writeSampleValue (deInt64 value);
183 void supressLogging (bool value);
205 MessageBuilder& operator<< (const T& value);
237 } value;
239 Value (void) : type(TYPE_LAST) { value.int64 = 0; }
240 Value (double v) : type(TYPE_FLOAT64) { value.float64 = v; }
241 Value (deInt64 v) : type(TYPE_INT64) { value.int64 = v; }
405 LogNumber (const std::string& name, const std::string& desc, const std::string& unit, qpKeyValueTag tag, T value)
410 , m_value (value)
477 inline MessageBuilder& MessageBuilder::operator<< (const T& value)
480 m_str << value;