Searched defs:GenCode (Results 1 – 1 of 1) sorted by relevance
195 void GenCode(T t, REST... args) { in GenCode() function201 void GenCode(T t) { in GenCode() function220 void GenCode(T *t) { in GenCode() function234 void GenCode(bool t) { code << std::boolalpha << t; } in GenCode() function235 void GenCode(int8_t t) { code << std::to_string(t); } in GenCode() function236 void GenCode(uint8_t t) { code << std::to_string(t); } in GenCode() function237 void GenCode(decltype(nullptr) t) { code << "NULL"; } in GenCode() function238 void GenCode(const char *t) { code << t; } in GenCode() function239 void GenCode(LiteDataType t) { code << "(LiteDataType)" << t; } in GenCode() function