HomeSort by relevance Sort by last modified time
    Searched defs:SourceName (Results 1 - 25 of 40) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ITokenSource.cs 68 string SourceName {
ANTLRFileStream.cs 85 override public string SourceName
IIntStream.cs 156 string SourceName {
Parser.cs 99 public override string SourceName {
101 return input.SourceName;
UnbufferedTokenStream.cs 72 public string SourceName {
74 return TokenSource.SourceName;
ANTLRStringStream.cs 85 public ANTLRStringStream(string input, string sourceName)
86 : this(input.ToCharArray(), input.Length, sourceName) {
94 public ANTLRStringStream(char[] data, int numberOfActualCharsInArray, string sourceName) {
104 this.name = sourceName;
275 public virtual string SourceName {
Lexer.cs 169 public override string SourceName {
171 return input.SourceName;
BufferedTokenStream.cs 114 public virtual string SourceName {
116 return _tokenSource.SourceName;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRFileStream.cs 80 public override string SourceName
ITokenSource.cs 68 string SourceName
IIntStream.cs 156 string SourceName
Parser.cs 111 public override string SourceName
115 return input.SourceName;
ANTLRStringStream.cs 88 public ANTLRStringStream( string input, string sourceName )
89 : this( input.ToCharArray(), input.Length, sourceName )
99 public ANTLRStringStream( char[] data, int numberOfActualCharsInArray, string sourceName )
110 this.name = sourceName;
314 public virtual string SourceName
Lexer.cs 207 public override string SourceName
211 return input.SourceName;
UnbufferedTokenStream.cs 79 public string SourceName
83 return TokenSource.SourceName;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTokenStream.cs 159 public virtual string SourceName {
161 return TokenSource.SourceName;
DebugTreeNodeStream.cs 169 public virtual string SourceName {
171 return TokenStream.SourceName;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTreeNodeStream.cs 79 public virtual string SourceName {
84 return TokenStream.SourceName;
TreeParser.cs 84 public override string SourceName {
86 return input.SourceName;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTreeNodeStream.cs 83 public virtual string SourceName
90 return TokenStream.SourceName;
TreeParser.cs 90 public override string SourceName
94 return input.SourceName;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTokenStream.cs 189 public virtual string SourceName
193 return TokenSource.SourceName;
DebugTreeNodeStream.cs 198 public virtual string SourceName
202 return TokenStream.SourceName;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimStringStream.cs 94 public SlimStringStream( string input, string sourceName )
95 : this( input.ToCharArray(), input.Length, sourceName )
105 public SlimStringStream( char[] data, int numberOfActualCharsInArray, string sourceName )
111 this.name = sourceName;
326 public string SourceName
SlimTokenStream.cs 380 public string SourceName
384 return TokenSource.SourceName;

Completed in 350 milliseconds

1 2