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

1 2 3 4

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
rewind.c 1 /* $OpenBSD: rewind.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */
38 rewind(FILE *fp) function
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
AbstractBoxParser.java 67 bb.rewind();
83 bb.rewind();
96 header.rewind();
ChannelHelper.java 39 buf.rewind();
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
FreeBox.java 67 header.rewind();
69 data.rewind();
UnknownBox.java 48 data.rewind();
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRStringStream.as 56 /** Track the last mark() call result value for use in rewind(). */
157 public function rewind():void { function
CommonTokenStream.as 57 /** Track the last mark() call result value for use in rewind(). */
321 public function rewind():void { function
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
IntStream.java 45 * when passed to rewind() you get back to the same spot.
46 * rewind(mark()) should not affect the input cursor. The Lexer
66 void rewind(int marker); method in interface:IntStream
68 /** Rewind to the input position of the last marker.
73 * and rewind(i) should balance still. It is
74 * like invoking rewind(last marker) but it should not "pop"
77 void rewind(); method in interface:IntStream
82 * rewind() except it releases resources without the backward seek.
94 * This is different from rewind in its multi-directional
99 * backtracking using the mark/rewind mechanism that restores state an
    [all...]
  /external/llvm/lib/CodeGen/
AllocationOrder.h 47 /// returning 0 until rewind() is called.
74 void rewind() { Pos = -int(Hints.size()); } function in class:llvm::AllocationOrder
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
ByteBufferHelper.java 44 buffer.rewind();
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTokenStream.java 39 /** Track the last mark() call result value for use in rewind(). */
114 public void rewind(int marker) { method in class:DebugTokenStream
115 dbg.rewind(marker);
116 input.rewind(marker);
119 public void rewind() { method in class:DebugTokenStream
120 dbg.rewind();
121 input.rewind(lastMarker);
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
ChunkedWritableByteChannel.java 64 tmpBuf.put(buffer).rewind();
87 mBuffer.rewind();
107 buffer.rewind();
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTreeNodeStream.as 89 /** Track the last mark() call result value for use in rewind(). */
296 public function rewind():void { function
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
ANTLRStringStream.pm 165 sub rewind { subroutine
CommonTokenStream.pm 309 sub rewind { subroutine
310 Readonly my $usage => 'void rewind(int marker) | void rewind()';
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/
AbstractDescriptorBox.java 45 data.rewind(); // has been fforwarded by parsing
72 data.rewind();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
RollRecoveryEntry.java 51 content.rewind();
UnknownEntry.java 37 this.content = (ByteBuffer) content.duplicate().rewind();
42 this.content = (ByteBuffer) byteBuffer.duplicate().rewind();
53 bb.rewind();
TemporalLevelEntry.java 50 content.rewind();
VisualRandomAccessEntry.java 61 content.rewind();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
AbstractBox.java 127 deadBytes.rewind();
133 content.rewind();
136 bb.rewind();
149 content.rewind();
228 deadBytes.rewind();
233 content.rewind();
234 bb.rewind();
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3intstream.h 129 * when passed to rewind() you get back to the same spot.
130 * rewind(mark()) should not affect the input cursor.
147 void (*rewind) (struct ANTLR3_INT_STREAM_struct * intStream, ANTLR3_MARKER marker); member in struct:ANTLR3_INT_STREAM_struct
157 * rewind() except it releases resources without the backward seek.
166 * This is different from rewind in its multi-directional
171 * backtracking using the mark/rewind mechanism that restores state and
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
LookaheadStream.h 47 /** Track the last mark() call result value for use in rewind(). */
148 public void rewind(int marker) { function in class:FastQueue
154 public void rewind() { function in class:FastQueue
155 seek(lastMarker); // rewind but do not release marker
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
debug.rb 149 def rewind( marker = nil ) method in class:ANTLR3.Debug.TreeNodeStream
150 @debug_listener.rewind( marker )
  /external/chromium_org/third_party/skia/src/utils/
SkFrontBufferedStream.cpp 21 virtual bool rewind() SK_OVERRIDE;
92 bool FrontBufferedStream::rewind() { function in class:FrontBufferedStream
93 // Only allow a rewind if we have not exceeded the buffer.

Completed in 1411 milliseconds

1 2 3 4