Lines Matching refs:m_log
142 : m_log(other.m_log) in MessageBuilder()
149 m_log = other.m_log; in operator =()
156 m_log->writeMessage(m_str.str().c_str()); in operator <<()
157 return *m_log; in operator <<()
164 m_log->startSample(); in operator <<()
169 m_log->writeSampleValue(val->value.float64); in operator <<()
171 m_log->writeSampleValue(val->value.int64); in operator <<()
176 m_log->endSample(); in operator <<()
178 return *m_log; in operator <<()
184 : m_log(qpTestLog_createFileLog(fileName, flags)) in TestLog()
186 if (!m_log) in TestLog()
192 qpTestLog_destroy(m_log); in ~TestLog()
197 if (qpTestLog_writeText(m_log, DE_NULL, DE_NULL, QP_KEY_TAG_LAST, msgStr) == DE_FALSE) in writeMessage()
203 if (qpTestLog_startImageSet(m_log, name, description) == DE_FALSE) in startImageSet()
209 if (qpTestLog_endImageSet(m_log) == DE_FALSE) in endImageSet()
247 if ((qpTestLog_getLogFlags(m_log) & QP_TEST_LOG_EXCLUDE_IMAGES) != 0) in writeImage()
362 …if (qpTestLog_writeImage(m_log, name, description, compressionMode, format, width, height, stride,… in writeImage()
368 if (qpTestLog_startSection(m_log, name, description) == DE_FALSE) in startSection()
374 if (qpTestLog_endSection(m_log) == DE_FALSE) in endSection()
380 if (qpTestLog_startShaderProgram(m_log, linkOk?DE_TRUE:DE_FALSE, linkInfoLog) == DE_FALSE) in startShaderProgram()
386 if (qpTestLog_endShaderProgram(m_log) == DE_FALSE) in endShaderProgram()
392 if (qpTestLog_writeShader(m_log, type, source, compileOk?DE_TRUE:DE_FALSE, infoLog) == DE_FALSE) in writeShader()
398 if (qpTestLog_writeSpirVAssemblySource(m_log, source) == DE_FALSE) in writeSpirVAssemblySource()
404 if (qpTestLog_writeKernelSource(m_log, source) == DE_FALSE) in writeKernelSource()
410 …if (qpTestLog_writeCompileInfo(m_log, name, description, compileOk ? DE_TRUE : DE_FALSE, infoLog) … in writeCompileInfo()
416 if (qpTestLog_writeFloat(m_log, name, description, unit, tag, value) == DE_FALSE) in writeFloat()
422 if (qpTestLog_writeInteger(m_log, name, description, unit, tag, value) == DE_FALSE) in writeInteger()
428 if (qpTestLog_startEglConfigSet(m_log, name, description) == DE_FALSE) in startEglConfigSet()
434 if (qpTestLog_writeEglConfig(m_log, config) == DE_FALSE) in writeEglConfig()
440 if (qpTestLog_endEglConfigSet(m_log) == DE_FALSE) in endEglConfigSet()
446 if (qpTestLog_startCase(m_log, testCasePath, testCaseType) == DE_FALSE) in startCase()
452 if (qpTestLog_endCase(m_log, result, description) == DE_FALSE) in endCase()
458 if (qpTestLog_terminateCase(m_log, result) == DE_FALSE) in terminateCase()
464 if (qpTestLog_startSampleList(m_log, name.c_str(), description.c_str()) == DE_FALSE) in startSampleList()
470 if (qpTestLog_startSampleInfo(m_log) == DE_FALSE) in startSampleInfo()
476 …if (qpTestLog_writeValueInfo(m_log, name.c_str(), description.c_str(), unit.empty() ? DE_NULL : un… in writeValueInfo()
482 if (qpTestLog_endSampleInfo(m_log) == DE_FALSE) in endSampleInfo()
488 if (qpTestLog_startSample(m_log) == DE_FALSE) in startSample()
494 if (qpTestLog_writeValueFloat(m_log, value) == DE_FALSE) in writeSampleValue()
500 if (qpTestLog_writeValueInteger(m_log, value) == DE_FALSE) in writeSampleValue()
506 if (qpTestLog_endSample(m_log) == DE_FALSE) in endSample()
512 if (qpTestLog_endSampleList(m_log) == DE_FALSE) in endSampleList()