App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Public Member Functions | List of all members
google.appengine._internal.antlr3.streams.ANTLRInputStream Class Reference
Inheritance diagram for google.appengine._internal.antlr3.streams.ANTLRInputStream:
google.appengine._internal.antlr3.streams.ANTLRStringStream google.appengine._internal.antlr3.streams.CharStream google.appengine._internal.antlr3.streams.IntStream

Public Member Functions

def __init__
 
- Public Member Functions inherited from google.appengine._internal.antlr3.streams.ANTLRStringStream
def __init__
 
def reset
 
def consume
 
def LA
 
def LT
 
def index
 
def size
 
def mark
 
def rewind
 
def release
 
def seek
 
def substring
 
def getLine
 
def getCharPositionInLine
 
def setLine
 
def setCharPositionInLine
 
def getSourceName
 
- Public Member Functions inherited from google.appengine._internal.antlr3.streams.CharStream
def substring
 
def LT
 
def getLine
 
def setLine
 
def getCharPositionInLine
 
def setCharPositionInLine
 
- Public Member Functions inherited from google.appengine._internal.antlr3.streams.IntStream
def consume
 
def LA
 
def mark
 
def index
 
def rewind
 
def release
 
def seek
 
def size
 
def getSourceName
 

Additional Inherited Members

- Public Attributes inherited from google.appengine._internal.antlr3.streams.ANTLRStringStream
 p
 
 line
 
 charPositionInLine
 
 lastMarker
 
 markDepth
 
- Static Public Attributes inherited from google.appengine._internal.antlr3.streams.CharStream
int EOF = -1
 

Detailed Description

@brief CharStream that reads data from a file-like object.

This is a char buffer stream that is loaded from a file like object
all at once when you construct the object.

All input is consumed from the file, but it is not closed.

Constructor & Destructor Documentation

def google.appengine._internal.antlr3.streams.ANTLRInputStream.__init__ (   self,
  file,
  encoding = None 
)
@param file A file-like object holding your input. Only the read()
   method must be implemented.

@param encoding If you set the optional encoding argument, then the
   data will be decoded on the fly.

The documentation for this class was generated from the following file: