Lines Matching full:insertafter
73 * input.insertAfter(t, "text to put after t");}
74 * input.insertAfter(u, "text after u");}
85 * tokens.insertAfter("pass1", t, "text to put after t");}
86 * tokens.insertAfter("pass2", u, "text after u");}
237 public virtual void InsertAfter(IToken t, object text) { in InsertAfter() method in Antlr.Runtime.TokenRewriteStream
238 InsertAfter(DEFAULT_PROGRAM_NAME, t, text); in InsertAfter()
241 public virtual void InsertAfter(int index, object text) { in InsertAfter() method in Antlr.Runtime.TokenRewriteStream
242 InsertAfter(DEFAULT_PROGRAM_NAME, index, text); in InsertAfter()
245 public virtual void InsertAfter(string programName, IToken t, object text) { in InsertAfter() method in Antlr.Runtime.TokenRewriteStream
246 InsertAfter(programName, t.TokenIndex, text); in InsertAfter()
249 public virtual void InsertAfter(string programName, int index, object text) { in InsertAfter() method in Antlr.Runtime.TokenRewriteStream
432 // So, if they did an insertAfter(lastValidIndex, "foo"), include in ToString()