| 122 | } |
| 123 | |
| 124 | static std::string get_cell_name (const lay::CellViewRef *cv) |
| 125 | { |
| 126 | if (cv->cell () == 0) { |
| 127 | return std::string (); |
| 128 | } else { |
| 129 | return (*cv)->layout ().cell_name (cv->cell_index ()); |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | static void cv_descend (lay::CellViewRef *cv, const std::vector<db::InstElement> &path) |
| 134 | { |
nothing calls this directly
no test coverage detected