Lines Matching refs:LabelTy
36 using LabelTy = typename ByteCodeStmtGen<Emitter>::LabelTy; typedef in clang::interp::LoopScope
39 LoopScope(ByteCodeStmtGen<Emitter> *Ctx, LabelTy BreakLabel, in LoopScope()
40 LabelTy ContinueLabel) in LoopScope()
60 using LabelTy = typename ByteCodeStmtGen<Emitter>::LabelTy; typedef in clang::interp::SwitchScope
65 LabelTy BreakLabel, OptLabelTy DefaultLabel) in SwitchScope()
386 LabelTy LabelElse = this->getLabel(); in visitIfStmt()
387 LabelTy LabelEnd = this->getLabel(); in visitIfStmt()
399 LabelTy LabelEnd = this->getLabel(); in visitIfStmt()
415 LabelTy CondLabel = this->getLabel(); // Label before the condition. in visitWhileStmt()
416 LabelTy EndLabel = this->getLabel(); // Label after the loop. in visitWhileStmt()
444 LabelTy StartLabel = this->getLabel(); in visitDoStmt()
445 LabelTy EndLabel = this->getLabel(); in visitDoStmt()
446 LabelTy CondLabel = this->getLabel(); in visitDoStmt()
475 LabelTy EndLabel = this->getLabel(); in visitForStmt()
476 LabelTy CondLabel = this->getLabel(); in visitForStmt()
477 LabelTy IncLabel = this->getLabel(); in visitForStmt()
518 LabelTy EndLabel = this->getLabel(); in visitCXXForRangeStmt()
519 LabelTy CondLabel = this->getLabel(); in visitCXXForRangeStmt()
520 LabelTy IncLabel = this->getLabel(); in visitCXXForRangeStmt()
584 LabelTy EndLabel = this->getLabel(); in visitSwitchStmt()