Lines Matching defs:value
170 m_log->writeSampleValue(val->value.float64);
172 m_log->writeSampleValue(val->value.int64);
446 void TestLog::writeFloat (const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value)
450 if (qpTestLog_writeFloat(m_log, name, description, unit, tag, value) == DE_FALSE)
454 void TestLog::writeInteger (const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value)
458 if (qpTestLog_writeInteger(m_log, name, description, unit, tag, value) == DE_FALSE)
566 void TestLog::writeSampleValue (double value)
569 if (qpTestLog_writeValueFloat(m_log, value) == DE_FALSE)
573 void TestLog::writeSampleValue (deInt64 value)
576 if (qpTestLog_writeValueInteger(m_log, value) == DE_FALSE)
605 void TestLog::supressLogging (bool value)
607 m_logSupressed = value;