Home
last modified time | relevance | path

Searched refs:vhdl_case_branch (Results 1 – 3 of 3) sorted by relevance

/dports/cad/iverilog/verilog-11.0/tgt-vhdl/
H A Dvhdl_syntax.hh513 class vhdl_case_branch : public vhdl_element { class
516 explicit vhdl_case_branch(vhdl_expr *when) : when_(when) {} in vhdl_case_branch() function in vhdl_case_branch
517 ~vhdl_case_branch();
526 typedef std::list<vhdl_case_branch*> case_branch_list_t;
533 void add_branch(vhdl_case_branch *b) { branches_.push_back(b); } in add_branch()
H A Dstmt.cc1106 vhdl_case_branch *branch = new vhdl_case_branch(when); in draw_case()
1114 vhdl_case_branch *others = in draw_case()
1115 new vhdl_case_branch(new vhdl_var_ref("others", NULL)); in draw_case()
H A Dvhdl_syntax.cc1010 vhdl_case_branch::~vhdl_case_branch() in ~vhdl_case_branch()
1015 void vhdl_case_branch::emit(std::ostream &of, int level) const in emit()