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

1 2 3

  /external/webrtc/webrtc/
common_types.cc 17 int InStream::Rewind() { return -1; }
19 int OutStream::Rewind() { return -1; }
  /frameworks/base/tools/aapt2/io/
BigBufferStreams.cpp 59 bool BigBufferInputStream::Rewind() {
Io.h 43 // Returns true if this InputStream can rewind. If so, Rewind() can be called.
47 // Returns true if the rewind succeeded.
49 virtual bool Rewind() { return false; }
  /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 );
  /external/webrtc/webrtc/base/
transformadapter.cc 193 bool TransformAdapter::Rewind() {
  /system/connectivity/wifilogd/
message_buffer.cpp 78 void MessageBuffer::Rewind() { read_pos_ = 0; }
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
CodeFragmentCollector.py 143 ## Rewind() method
149 def Rewind(self):
274 self.Rewind()
373 self.Rewind()
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
CodeFragmentCollector.py 148 ## Rewind() method
154 def Rewind(self):
275 # In the end, rewind the file buffer pointer to the beginning
283 self.Rewind()
401 self.Rewind()
405 self.Rewind()
522 self.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);
  /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/webrtc/webrtc/modules/audio_coding/test/
PCMFile.cc 129 rewind(pcm_file_);
199 void PCMFile::Rewind() {
200 rewind(pcm_file_);
  /external/webrtc/webrtc/system_wrappers/source/
file_impl.cc 54 int FileWrapperImpl::Rewind() {
273 int FileWrapper::Rewind() {
  /frameworks/base/tools/aapt2/compile/
PngChunkFilter.cpp 171 bool PngChunkFilter::Rewind() {
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
payload.h 47 void Rewind() { const_cursor_ = buffer_.cbegin(); }

Completed in 534 milliseconds

1 2 3