Lines Matching refs:control
159 inline void SetControl(GateRef control)
161 impl_->SetControl(control);
163 inline void SetPreControl(GateRef control)
165 impl_->SetPreControl(control);
167 inline void MergeControl(GateRef control)
169 impl_->MergeControl(control);
187 LabelImpl(Environment *env, GateRef control)
188 : env_(env), control_(control), predeControl_(-1), isSealed_(false)
205 void SetControl(GateRef control)
207 control_ = control;
209 void SetPreControl(GateRef control)
211 predeControl_ = control;
213 void MergeControl(GateRef control)
216 predeControl_ = control;
219 otherPredeControls_.push_back(control);
343 inline LabelImpl *NewLabel(Environment *env, GateRef control = -1)
345 auto impl = new Label::LabelImpl(env, control);
352 GateRef control = currentLabel_->GetControl();
356 currentLabel_->SetControl(control);
363 GateRef control = currentLabel_->GetControl();
367 currentLabel_->SetControl(control);