/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
UnwantedTokenException.cs | 53 public UnwantedTokenException(int expecting, IIntStream input) 54 : base(expecting, input) { 57 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) 58 : base(expecting, input, tokenNames) { 61 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) 62 : base(message, expecting, input, tokenNames) { 65 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) 66 : base(message, expecting, input, tokenNames, innerException) { 82 string expected = (TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count) ? TokenNames[Expecting] : Expecting.ToString() [all...] |
MismatchedSetException.cs | 54 public MismatchedSetException(BitSet expecting, IIntStream input) 56 this._expecting = expecting; 59 public MismatchedSetException(string message, BitSet expecting, IIntStream input) 61 this._expecting = expecting; 64 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException) 66 this._expecting = expecting; 74 this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet)); 77 public BitSet Expecting { 88 info.AddValue("Expecting", _expecting); 92 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")" [all...] |
MismatchedTreeNodeException.cs | 55 public MismatchedTreeNodeException(int expecting, ITreeNodeStream input) 57 this._expecting = expecting; 60 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input) 62 this._expecting = expecting; 65 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException) 67 this._expecting = expecting; 75 this._expecting = info.GetInt32("Expecting"); 78 public int Expecting { 89 info.AddValue("Expecting", _expecting); 93 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")" [all...] |
MismatchedTokenException.cs | 61 public MismatchedTokenException(int expecting, IIntStream input) 62 : this(expecting, input, null) { 65 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames) 67 this._expecting = expecting; 72 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) 74 this._expecting = expecting; 81 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) 83 this._expecting = expecting; 94 this._expecting = info.GetInt32("Expecting"); 98 public int Expecting { [all...] |
MismatchedNotSetException.cs | 51 public MismatchedNotSetException(BitSet expecting, IIntStream input) 52 : base(expecting, input) { 55 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) 56 : base(message, expecting, input) { 59 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) 60 : base(message, expecting, input, innerException) { 68 return "MismatchedNotSetException(" + UnexpectedType + "!=" + Expecting + ")";
|
BaseRecognizer.cs | 255 if (ute.Expecting == TokenTypes.EndOfFile) { 258 tokenName = tokenNames[ute.Expecting]; 261 " expecting " + tokenName; 265 if (mte.Expecting == TokenTypes.EndOfFile) { 268 tokenName = tokenNames[mte.Expecting]; 274 if (mte.Expecting == TokenTypes.EndOfFile) { 277 tokenName = tokenNames[mte.Expecting]; 280 " expecting " + tokenName; 284 if (mtne.Expecting == TokenTypes.EndOfFile) { 287 tokenName = tokenNames[mtne.Expecting]; [all...] |
MissingTokenException.cs | 40 * We were expecting a token but it's not found. The current token 59 public MissingTokenException(int expecting, IIntStream input, object inserted) 60 : this(expecting, input, inserted, null) { 63 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames) 64 : base(expecting, input, tokenNames) { 68 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames) 69 : base(message, expecting, input, tokenNames) { 73 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException) 74 : base(message, expecting, input, tokenNames, innerException) { 84 return Expecting; [all...] |
Lexer.cs | 284 msg = "mismatched character " + GetCharErrorDisplay(e.Character) + " expecting " + GetCharErrorDisplay(mte.Expecting); 297 msg = "mismatched character " + GetCharErrorDisplay(e.Character) + " expecting set " + mse.Expecting; 300 msg = "mismatched character " + GetCharErrorDisplay(e.Character) + " expecting set " + mse.Expecting; 303 msg = "mismatched character " + GetCharErrorDisplay(e.Character) + " expecting set " +
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
UnwantedTokenException.cs | 58 public UnwantedTokenException(int expecting, IIntStream input) 59 : base(expecting, input) 63 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) 64 : base(expecting, input, tokenNames) 68 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) 69 : base(message, expecting, input, tokenNames) 73 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) 74 : base(message, expecting, input, tokenNames, innerException) 95 string expected = (TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count) ? TokenNames[Expecting] : Expecting.ToString() [all...] |
MismatchedTokenException.cs | 63 public MismatchedTokenException(int expecting, IIntStream input) 64 : this(expecting, input, null) 68 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames) 71 this._expecting = expecting; 77 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) 80 this._expecting = expecting; 86 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) 89 this._expecting = expecting; 101 this._expecting = info.GetInt32("Expecting"); 105 public int Expecting [all...] |
MismatchedSetException.cs | 59 public MismatchedSetException( BitSet expecting, IIntStream input ) 62 this._expecting = expecting; 65 public MismatchedSetException(string message, BitSet expecting, IIntStream input) 68 this._expecting = expecting; 71 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException) 74 this._expecting = expecting; 83 this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet)); 86 public BitSet Expecting 100 info.AddValue("Expecting", _expecting); 105 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")" [all...] |
MismatchedTreeNodeException.cs | 60 public MismatchedTreeNodeException( int expecting, ITreeNodeStream input ) 63 this._expecting = expecting; 66 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input) 69 this._expecting = expecting; 72 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException) 75 this._expecting = expecting; 84 this._expecting = info.GetInt32("Expecting"); 87 public int Expecting 101 info.AddValue("Expecting", _expecting); 106 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")" [all...] |
MismatchedNotSetException.cs | 56 public MismatchedNotSetException(BitSet expecting, IIntStream input) 57 : base(expecting, input) 61 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) 62 : base(message, expecting, input) 66 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) 67 : base(message, expecting, input, innerException) 78 return "MismatchedNotSetException(" + UnexpectedType + "!=" + Expecting + ")";
|
BaseRecognizer.cs | 280 if ( ute.Expecting == TokenTypes.EndOfFile ) 286 tokenName = tokenNames[ute.Expecting]; 289 " expecting " + tokenName; 295 if ( mte.Expecting == TokenTypes.EndOfFile ) 301 tokenName = tokenNames[mte.Expecting]; 309 if ( mte.Expecting == TokenTypes.EndOfFile ) 315 tokenName = tokenNames[mte.Expecting]; 318 " expecting " + tokenName; 324 if ( mtne.Expecting == TokenTypes.EndOfFile ) 330 tokenName = tokenNames[mtne.Expecting]; [all...] |
MissingTokenException.cs | 41 * We were expecting a token but it's not found. The current token 64 public MissingTokenException(int expecting, IIntStream input, object inserted) 65 : this(expecting, input, inserted, null) 69 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames) 70 : base(expecting, input, tokenNames) 75 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames) 76 : base(message, expecting, input, tokenNames) 81 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException) 82 : base(message, expecting, input, tokenNames, innerException) 96 return Expecting; [all...] |
Lexer.cs | 342 msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting " + GetCharErrorDisplay( mte.Expecting ); 361 msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; 366 msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; 371 msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " +
|
/external/webkit/LayoutTests/storage/indexeddb/resources/ |
shared.js | 35 debug("Expecting exception from " + cmd);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/ |
SlimLexer.cs | 359 msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting " + GetCharErrorDisplay( mte.Expecting ); 378 msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; 383 msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; 388 msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " +
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
Antlr.Runtime.pas | [all...] |
/external/v8/src/ |
v8natives.js | 288 'Object.prototype.__defineGetter__: Expecting function'); 314 'Object.prototype.__defineSetter__: Expecting function'); [all...] |
messages.js | 174 "instanceof_function_expected", ["Expecting a function in instanceof check, but got ", "%0"], [all...] |