Update Sdc.i
This commit is contained in:
parent
b484abc622
commit
acd43bdd8a
45
sdc/Sdc.i
45
sdc/Sdc.i
|
|
@ -1325,6 +1325,51 @@ filter_pins(const char *property,
|
|||
return filter_objects<const Pin>(property, op, pattern, pins);
|
||||
}
|
||||
|
||||
ClockSeq
|
||||
filter_clocks(const char *property,
|
||||
const char *op,
|
||||
const char *pattern,
|
||||
ClockSeq *clocks)
|
||||
{
|
||||
return filter_objects<Clock>(property, op, pattern, clocks);
|
||||
}
|
||||
|
||||
LibertyCellSeq
|
||||
filter_lib_cells(const char *property,
|
||||
const char *op,
|
||||
const char *pattern,
|
||||
LibertyCellSeq *cells)
|
||||
{
|
||||
return filter_objects<LibertyCell>(property, op, pattern, cells);
|
||||
}
|
||||
|
||||
LibertyPortSeq
|
||||
filter_lib_pins(const char *property,
|
||||
const char *op,
|
||||
const char *pattern,
|
||||
LibertyPortSeq *pins)
|
||||
{
|
||||
return filter_objects<LibertyPort>(property, op, pattern, pins);
|
||||
}
|
||||
|
||||
LibertyLibrarySeq
|
||||
filter_libs(const char *property,
|
||||
const char *op,
|
||||
const char *pattern,
|
||||
LibertyLibrarySeq *libs)
|
||||
{
|
||||
return filter_objects<LibertyLibrary>(property, op, pattern, libs);
|
||||
}
|
||||
|
||||
NetSeq
|
||||
filter_nets(const char *property,
|
||||
const char *op,
|
||||
const char *pattern,
|
||||
NetSeq *nets)
|
||||
{
|
||||
return filter_objects<const Net>(property, op, pattern, nets);
|
||||
}
|
||||
|
||||
EdgeSeq
|
||||
filter_timing_arcs(const char *property,
|
||||
const char *op,
|
||||
|
|
|
|||
Loading…
Reference in New Issue