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

1 2

  /external/chromium_org/components/autofill/core/browser/
autofill_scanner.cc 41 void AutofillScanner::Rewind() {
  /external/chromium_org/net/spdy/
spdy_frame_reader.h 94 void Rewind() { ofs_ = 0; }
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IIntStream.cs 57 /// Executing Rewind(Mark()) on a stream should not affect the input position.
62 /// <see cref="IIntStream.Rewind(int)"/> to return to the current position.
87 void Rewind(int marker);
90 /// Rewind to the input position of the last marker.
96 /// and Rewind(i) should balance still. It is like invoking
97 /// Rewind(last marker) but it should not "pop" the marker off.
100 void Rewind();
106 /// <see cref="IIntStream.Rewind(int)"/> except it releases resources without
124 /// This is different from rewind in its multi-directional requirement
130 /// <see cref="IIntStream.Mark"/>/<see cref="IIntStream.Rewind(int)"/>
    [all...]
ANTLRStringStream.cs 74 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
219 public virtual void Rewind(int m) {
234 public virtual void Rewind() {
235 Rewind(lastMarker);
BufferedTokenStream.cs 65 /** Track the last mark() call result value for use in rewind(). */
156 public virtual void Rewind(int marker) {
160 public virtual void Rewind() {
LegacyCommonTokenStream.cs 75 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
392 public virtual void Rewind(int marker) {
396 public virtual void Rewind() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IIntStream.cs 57 * when passed to rewind() you get back to the same spot.
58 * rewind(mark()) should not affect the input cursor. The Lexer
86 void Rewind( int marker );
89 * Rewind to the input position of the last marker.
94 * and rewind(i) should balance still. It is
95 * like invoking rewind(last marker) but it should not "pop"
99 void Rewind();
105 * rewind() except it releases resources without the backward seek.
121 * This is different from rewind in its multi-directional
126 * backtracking using the mark/rewind mechanism that restores state an
    [all...]
ANTLRStringStream.cs 76 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
251 public virtual void Rewind( int m )
267 public virtual void Rewind()
269 Rewind( lastMarker );
BufferedTokenStream.cs 67 /** Track the last mark() call result value for use in rewind(). */
179 public virtual void Rewind(int marker)
184 public virtual void Rewind()
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTokenStream.cs 40 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
128 public virtual void Rewind(int marker) {
129 dbg.Rewind(marker);
130 input.Rewind(marker);
133 public virtual void Rewind() {
134 dbg.Rewind();
135 input.Rewind(lastMarker);
DebugTreeNodeStream.cs 50 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
144 public virtual void Rewind(int marker) {
145 dbg.Rewind(marker);
146 input.Rewind(marker);
149 public virtual void Rewind() {
150 dbg.Rewind();
151 input.Rewind(lastMarker);
BlankDebugEventListener.cs 79 public virtual void Rewind(int i) {
81 public virtual void Rewind() {
DebugEventHub.cs 156 public virtual void Rewind(int index) {
159 listener.Rewind(index);
163 public virtual void Rewind() {
166 listener.Rewind();
DebugEventRepeater.cs 92 public virtual void Rewind(int i) {
93 _listener.Rewind(i);
95 public virtual void Rewind() {
96 _listener.Rewind();
IDebugEventListener.cs 133 void Rewind(int marker);
136 * Rewind to the input position of the last marker.
141 * and rewind(i) should balance still.
144 void Rewind();
173 * also must be rewound. Even the rewind for each mark must be unwount.
175 * ugly in the generated code. The rewind is generated in DFA.predict()
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
LookaheadStream.cs 58 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
169 public virtual void Rewind(int marker) {
174 public virtual void Rewind() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
LookaheadStream.cs 61 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
202 public virtual void Rewind( int marker )
208 public virtual void Rewind()
210 Rewind( _lastMarker );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTokenStream.cs 42 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
150 public virtual void Rewind( int marker )
152 dbg.Rewind( marker );
153 input.Rewind( marker );
156 public virtual void Rewind()
158 dbg.Rewind();
159 input.Rewind( lastMarker );
DebugTreeNodeStream.cs 52 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
167 public virtual void Rewind( int marker )
169 dbg.Rewind( marker );
170 input.Rewind( marker );
173 public virtual void Rewind()
175 dbg.Rewind();
176 input.Rewind( lastMarker );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimStringStream.cs 78 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
276 public void Rewind( int m )
288 public void Rewind()
290 Rewind( lastMarker );
SlimTokenStream.cs 62 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
351 public void Rewind( int marker )
356 public void Rewind()
  /external/chromium_org/third_party/libjingle/source/talk/base/
transformadapter.h 78 virtual bool Rewind() { return false; }
  /external/v8/src/
small-pointer-list.h 57 list()->Rewind(old_length);
133 void Rewind(int pos) {
145 list()->Rewind(pos);
unicode-inl.h 217 void InputBuffer<R, I, s>::Rewind() {
  /external/webrtc/src/system_wrappers/source/
file_impl.cc 60 int FileWrapperImpl::Rewind()

Completed in 357 milliseconds

1 2