Lines Matching refs:this
4 * Use of this source code is governed by a BSD-style license that can be
74 this->definitions().appendf("const %s %s = %s;\n", type, name, value);
78 this->definitions().appendf("const int %s = %i;\n", name, value);
82 this->definitions().appendf("const float %s = %f;\n", name, value);
86 this->definitions().appendf("const %s %s = ", type, name);
89 this->definitions().appendVAList(fmt, args);
91 this->definitions().append(";\n");
94 void definitionAppend(const char* str) { this->definitions().append(str); }
111 this->code().appendVAList(format, args);
115 void codeAppend(const char* str) { this->code().append(str); }
117 void codeAppend(const char* str, size_t length) { this->code().append(str, length); }
124 this->code().prependVAList(format, args);