Searched refs:Current (Results 1 - 25 of 442) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DHashList.cs145 public object Current property in class:Antlr.Runtime.Collections.HashList.HashListEnumerator
304 result.Append((iter.Current == null) ? "null" : iter.Current);
308 result.Append((iter.Current == null) ? "null" : iter.Current);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DParseTreeBuilder.cs57 return enumerator.Current;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBufferedTreeNodeStream.cs78 public object Current { property in class:Antlr.Runtime.Tree.BufferedTreeNodeStream.StreamIterator
H A DCommonTreeNodeStream.cs135 object t = _it.Current;
141 return _it.Current; // don't give last UP; get EOF
151 t = _it.Current; // t is now DOWN, so get first real node next
154 t = _it.Current;
H A DTreeIterator.cs73 public object Current { property in class:Antlr.Runtime.Tree.TreeIterator
97 Current = tree;
101 Current = nodes.Dequeue();
105 Current = eof;
111 Current = down;
127 Current = nodes.Dequeue();
134 Current = nodes.Dequeue();
141 return Current != eof;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBufferedTreeNodeStream.cs82 public object Current property in class:Antlr.Runtime.Tree.BufferedTreeNodeStream.StreamIterator
H A DCommonTreeNodeStream.cs154 object t = _it.Current;
162 return _it.Current; // don't give last UP; get EOF
175 t = _it.Current; // t is now DOWN, so get first real node next
178 t = _it.Current;
H A DTreeIterator.cs78 public object Current property in class:Antlr.Runtime.Tree.TreeIterator
107 Current = tree;
114 Current = nodes.Dequeue();
121 Current = eof;
130 Current = down;
150 Current = nodes.Dequeue();
159 Current = nodes.Dequeue();
166 bool result = Current != eof || !reachedEof;
167 reachedEof = Current == eof;
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Collections.pas96 property Current: TPair<TKey, TValue> read GetCurrent;
H A DAntlr.Runtime.Tools.pas281 property Current: TPair<TKey,TValue> read GetCurrent;
H A DAntlr.Runtime.Tree.pas1092 property Current: IANTLRInterface read GetCurrent;
1673 /// <summary>Current char</summary>
2064 /// This routine does *not* cause the 'Current' property to ever return the
H A DAntlr.Runtime.pas1614 /// <summary>Current line number within the input (1..n )</summary>
5655 Current: IToken;
5662 Current := FInput.LT(1);
5663 if (Current.TokenType = TToken.EOF) then
5664 Current := FInput.LT(-1);
5665 T.Line := Current.Line;
5666 T.CharPositionInLine := Current.CharPositionInLine;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-lexer.rb27 Current load path:
H A Dgroup-file-parser.rb27 Current load path:
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
H A DRuby.stg49 Current load path:
/external/bison/doc/
H A Drefcard.tex460 \key{Current lookahead token.} {yychar}
/external/bison/examples/calc++/
H A Dcalc++-parser.cc83 # define YYLLOC_DEFAULT(Current, Rhs, N) \
87 (Current).begin = YYRHSLOC (Rhs, 1).begin; \
88 (Current).end = YYRHSLOC (Rhs, N).end; \
92 (Current).begin = (Current).end = YYRHSLOC (Rhs, 0).end; \
/external/bison/src/
H A Dparse-gram.c114 #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N)
979 # define YYLLOC_DEFAULT(Current, Rhs, N) \
983 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
984 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
985 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
986 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
990 (Current).first_line = (Current).last_line = \
992 (Current)
[all...]
H A Dparse-gram.y38 #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N)
/external/chromium_org/base/debug/
H A Dtrace_event.h332 trace_event_internal::TraceEventSamplingStateScope<bucket_number>::Current()
1521 previous_state_ = TraceEventSamplingStateScope<BucketNumber>::Current();
1529 static inline const char* Current() { function in class:trace_event_internal::TraceEventSamplingStateScope
/external/chromium_org/base/process/
H A Dkill_posix.cc357 ProcessHandle our_pid = Process::Current().handle();
H A Dprocess.h24 static Process Current();
H A Dprocess_posix.cc17 Process Process::Current() { function in class:base::Process
H A Dprocess_util_unittest.cc338 base::Process process(base::Process::Current().handle());
H A Dprocess_win.cc78 Process Process::Current() { function in class:base::Process

Completed in 553 milliseconds

1234567891011>>