Home | History | Annotate | Download | only in src

Lines Matching defs:IfBuilder

787   // expressions that use an IfBuilder.
1477 class IfBuilder FINAL {
1480 IfBuilder();
1482 explicit IfBuilder(HGraphBuilder* builder);
1483 IfBuilder(HGraphBuilder* builder,
1486 ~IfBuilder() {
1573 // Captures the current state of this IfBuilder in the specified
1574 // continuation and ends this IfBuilder.
1577 // Joins the specified continuation from this IfBuilder and ends this
1578 // IfBuilder. This appends a Goto instruction from the true branch of
1579 // this IfBuilder to the true branch of the continuation unless the
1580 // true branch of this IfBuilder is already finished. And vice versa
1583 // The basic idea is as follows: You have several nested IfBuilder's
1591 // IfBuilder if_whatever(this);
1599 // IfBuilder if_something(this);
1607 // IfBuilder if_finally(this, &cont);