| 49 | static bool is_hex_color(std::string color) { return not color.empty() and color[0] == '#'; } |
| 50 | |
| 51 | std::string enclose_name(const std::string& name) |
| 52 | { |
| 53 | return '"' + replace_string(name, "\"", "\\\"") + '"'; |
| 54 | } |
| 55 | |
| 56 | std::string format_shape_name(const migraphx::shape& s, const std::string& linebreak) |
| 57 | { |
nothing calls this directly
no test coverage detected