Lines Matching refs:Label
46 void EvalEmitter::emitLabel(LabelTy Label) { in emitLabel() argument
47 CurrentLabel = Label; in emitLabel()
80 bool EvalEmitter::jumpTrue(const LabelTy &Label) { in jumpTrue() argument
83 ActiveLabel = Label; in jumpTrue()
88 bool EvalEmitter::jumpFalse(const LabelTy &Label) { in jumpFalse() argument
91 ActiveLabel = Label; in jumpFalse()
96 bool EvalEmitter::jump(const LabelTy &Label) { in jump() argument
98 CurrentLabel = ActiveLabel = Label; in jump()
102 bool EvalEmitter::fallthrough(const LabelTy &Label) { in fallthrough() argument
104 ActiveLabel = Label; in fallthrough()
105 CurrentLabel = Label; in fallthrough()