Home | History | Annotate | Download | only in Antlr3.Runtime

Lines Matching refs:fileName

50         protected string fileName;
52 public ANTLRFileStream( string fileName )
53 : this( fileName, null )
57 public ANTLRFileStream( string fileName, Encoding encoding )
59 this.fileName = fileName;
60 Load( fileName, encoding );
63 public virtual void Load( string fileName, Encoding encoding )
65 if ( fileName == null )
72 text = File.ReadAllText(fileName);
74 text = File.ReadAllText(fileName, encoding);
84 return fileName;