Home | History | Annotate | Download | only in antlr3

Lines Matching refs:channel

109         """@brief Get the channel of the token
111 Using setter/getter methods is deprecated. Use o.channel instead."""
115 def setChannel(self, channel):
116 """@brief Set the channel of the token
118 Using setter/getter methods is deprecated. Use o.channel instead."""
177 def __init__(self, type=None, channel=DEFAULT_CHANNEL, text=None,
185 self.channel = oldToken.channel
198 self.channel = channel
267 return self.channel
269 def setChannel(self, channel):
270 self.channel = channel
292 if self.channel > 0:
293 channelStr = ",channel=" + str(self.channel)
323 def __init__(self, type=None, text=None, channel=DEFAULT_CHANNEL,
333 self.channel = oldToken.channel
339 self.channel = channel
372 return self.channel
374 def setChannel(self, channel):
375 self.channel = channel
394 if self.channel > 0:
395 channelStr = ",channel=" + str(self.channel)