Lines Matching refs:Label
45 void EvalEmitter::emitLabel(LabelTy Label) { in emitLabel() argument
46 CurrentLabel = Label; in emitLabel()
69 bool EvalEmitter::jumpTrue(const LabelTy &Label) { in jumpTrue() argument
72 ActiveLabel = Label; in jumpTrue()
77 bool EvalEmitter::jumpFalse(const LabelTy &Label) { in jumpFalse() argument
80 ActiveLabel = Label; in jumpFalse()
85 bool EvalEmitter::jump(const LabelTy &Label) { in jump() argument
87 CurrentLabel = ActiveLabel = Label; in jump()
91 bool EvalEmitter::fallthrough(const LabelTy &Label) { in fallthrough() argument
93 ActiveLabel = Label; in fallthrough()
94 CurrentLabel = Label; in fallthrough()