MCPcopy Create free account
hub / github.com/KLayout/klayout / combined_unspecific_path

Method combined_unspecific_path

src/laybasic/laybasic/layCellView.cc:111–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109}
110
111CellView::unspecific_cell_path_type
112CellView::combined_unspecific_path () const
113{
114 CellView::unspecific_cell_path_type path;
115 path.reserve (m_unspecific_path.size () + m_specific_path.size ());
116 path.insert (path.end (), m_unspecific_path.begin (), m_unspecific_path.end ());
117 for (CellView::specific_cell_path_type::const_iterator p = m_specific_path.begin (); p != m_specific_path.end (); ++p) {
118 path.push_back (p->inst_ptr.cell_index ());
119 }
120 return path;
121}
122
123void
124CellView::set_cell (cell_index_type index)

Callers 13

descendMethod · 0.80
cm_ascendMethod · 0.80
double_clickedMethod · 0.80
show_cellMethod · 0.80
update_cell_listMethod · 0.80
apply_clickedMethod · 0.80
do_update_contentMethod · 0.80
cutMethod · 0.80
menu_activatedMethod · 0.80
cm_cell_replaceMethod · 0.80
cm_cell_deleteMethod · 0.80

Calls 8

is_validFunction · 0.70
reserveMethod · 0.45
sizeMethod · 0.45
insertMethod · 0.45
endMethod · 0.45
beginMethod · 0.45
push_backMethod · 0.45
cell_indexMethod · 0.45

Tested by

no test coverage detected