Lines Matching refs:mayFollow
717 bool mayFollow = emitStatementList(); in emitScope() local
724 return mayFollow; in emitScope()
902 bool mayFollow = emitStatementList(); in emitTry() local
906 return mayFollow; in emitTry()
911 bool mayFollow = false; in emitCatch() local
915 mayFollow |= emitStatementList(); in emitCatch()
920 return mayFollow; in emitCatch()
926 bool mayFollow = emitStatementList(); in emitFinally() local
930 return mayFollow; in emitFinally()
944 bool mayFollow = emitTry(); in emitTryCatchFinally() local
947 mayFollow |= emitCatch(); in emitTryCatchFinally()
950 mayFollow &= emitFinally(); in emitTryCatchFinally()
957 mayFollow = (mayFollow | emitCatch()); in emitTryCatchFinally()
958 mayFollow &= emitFinally(); in emitTryCatchFinally()
964 return mayFollow; in emitTryCatchFinally()
974 bool mayFollow = false; in emitSwitch() local
995 mayFollow = true; in emitSwitch()
1008 return mayFollow; in emitSwitch()