Lines Matching refs:src
91 src = ""
97 src += "\n"
98 src += "%s CallLogWrapper::%s (%s)\n{\n" % (eglwPrefix(command.type), command.name, ", ".join(eglwPrefix(p.declaration) for p in command.params))
113 src += "\tif (m_enableLog)\n"
114 src += "\t\tm_log << TestLog::Message << %s;\n" % " << ".join(callPrintItems)
120 src += "\t%s;\n" % callStr
122 src += "\t%s returnValue = %s;\n" % (eglwPrefix(command.type), callStr)
126 src += "\tif (m_enableLog)\n\t{\n"
130 src += "\t\tm_log << TestLog::Message << \"// %s = \" << %s << TestLog::EndMessage;\n" % (param.name, logSpec.argOutPrints[paramNdx](param.name))
132 src += "\t}\n"
140 src += "\tif (m_enableLog)\n"
141 src += "\t\tm_log << TestLog::Message << \"// \" << %s << \" returned\" << TestLog::EndMessage;\n" % returnPrint
142 src += "\treturn returnValue;\n"
144 src += "}"
145 return src