Lines Matching refs:styleStr
87 static std::string styleStr(enumStyle_t s) {
554 return std::string("typedef enum ") + pre() + s + styleStr(style) + "_ {\n";
558 return "} " + pre() + s + styleStr(style) + ";\n\n";
563 return indent() + pre() + s + v.second + styleStr(style) + " = " + fmtStyleVal(v.first, style) + ",\n";
588 const auto typeName = opName + styleStr(enumMask);
621 return std::string("enum ") + s + styleStr(style) + " {\n";
630 return indent() + s + v.second + styleStr(style) + " = " + fmtStyleVal(v.first, style) + ",\n";
654 return std::string("enum class ") + s + styleStr(style) + " : unsigned {\n";
683 return indent() + s + styleStr(style) + " = {\n";
712 return indent() + "'" + s + styleStr(style) + "'" + " : {\n";
748 return indent(2) + "public enum " + s + styleStr(style) + "\n" + indent(2) + "{\n";
782 return "enum " + s + styleStr(style) + " : uint\n{\n";
819 return indent(2) + "[AllowDuplicates, CRepr] public enum " + s + styleStr(style) + "\n" + indent(2) + "{\n";