Searched refs:Pop (Results 201 - 216 of 216) sorted by last modified time

123456789

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DParseTreeBuilder.cs97 callStack.Pop();
H A DProfiler.cs111 currentGrammarFileName.Pop();
112 currentRuleName.Pop();
188 DecisionEvent d = decisionStack.Pop();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBufferedTreeNodeStream.cs439 public virtual int Pop() { method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
440 int ret = calls.Pop();
H A DCommonTreeNodeStream.cs182 public virtual int Pop() { method in class:Antlr.Runtime.Tree.CommonTreeNodeStream
183 int ret = _calls.Pop();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
H A DITreeNodeStreamFixture.cs413 stream.Pop();
468 stream.Pop();
472 stream.Pop();
515 stream.Pop();
528 stream.Pop();
543 Assert.AreEqual(10, stream.Pop());
544 Assert.AreEqual(9, stream.Pop());
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DListStack`1.cs71 public T Pop() method in class:Antlr.Runtime.Misc.ListStack
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBufferedTreeNodeStream.cs520 public virtual int Pop() method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
522 int ret = calls.Pop();
H A DCommonTreeNodeStream.cs210 public virtual int Pop() method in class:Antlr.Runtime.Tree.CommonTreeNodeStream
212 int ret = _calls.Pop();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DUnbufferedTokenStream.cs122 _realTokens.Pop();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DParseTreeBuilder.cs109 callStack.Pop();
H A DProfiler.cs115 currentGrammarFileName.Pop();
116 currentRuleName.Pop();
202 DecisionEvent d = decisionStack.Pop();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStackExtensions.cs59 return stack.Pop();
81 stack.Pop();
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Collections.pas69 function Pop: T; function
128 function Pop: T; function
319 function TStackList<T>.Pop: T;
H A DAntlr.Runtime.Tree.pas745 function Pop: Integer;
1428 function Pop: Integer;
3211 function TCommonTreeNodeStream.Pop: Integer;
3213 Result := FCalls.Pop;
4914 FCurrentNode := FNodeStack.Pop;
4919 FCurrentChildIndex := FIndexStack.Pop;
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Collections.Tests.pas116 CheckEquals(FIStackList.Pop,'Item 2');
117 CheckEquals(FIStackList.Pop,'Item 1');
125 FIStackList.Pop;
127 CheckEquals(FIStackList.Pop, 'Item 2');
H A DAntlr.Runtime.Tree.Tests.pas1030 Stream.Pop;
1034 Stream.Pop;
1082 Stream.Pop;
1127 Stream.Pop;
1140 Stream.Pop;
1226 CheckEquals(Stream.Pop, 10);
1227 CheckEquals(Stream.Pop, 9);

Completed in 8831 milliseconds

123456789