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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRIntStream.h 36 // when passed to rewind() you get back to the same spot.
37 // rewind(mark()) should not affect the input cursor.
55 - (void) rewind;
56 - (void) rewind:(NSInteger) marker;
61 // rewind() except it releases resources without the backward seek.
69 // This is different from rewind in its multi-directional
74 // backtracking using the mark/rewind mechanism that restores state and
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRIntStream.h 36 // when passed to rewind() you get back to the same spot.
37 // rewind(mark()) should not affect the input cursor.
55 - (void) rewind;
56 - (void) rewind:(NSInteger) marker;
61 // rewind() except it releases resources without the backward seek.
69 // This is different from rewind in its multi-directional
74 // backtracking using the mark/rewind mechanism that restores state and
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRIntStream.h 36 // when passed to rewind() you get back to the same spot.
37 // rewind(mark()) should not affect the input cursor.
55 - (void) rewind;
56 - (void) rewind:(NSInteger) marker;
61 // rewind() except it releases resources without the backward seek.
69 // This is different from rewind in its multi-directional
74 // backtracking using the mark/rewind mechanism that restores state and
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRIntStream.h 40 // when passed to rewind() you get back to the same spot.
41 // rewind(mark()) should not affect the input cursor.
63 - (void) rewind;
64 - (void) rewind:(NSInteger) marker;
69 // rewind() except it releases resources without the backward seek.
77 // This is different from rewind in its multi-directional
82 // backtracking using the mark/rewind mechanism that restores state and
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/app/
PlaybackControlSupportGlueTest.java 158 PlaybackControlsRow.MultiAction rewind = (PlaybackControlsRow.MultiAction) adapter local
166 assertEquals(0, rewind.getIndex());
172 assertEquals(0, rewind.getIndex());
176 assertEquals(0, rewind.getIndex());
180 assertEquals(0, rewind.getIndex());
184 assertEquals(0, rewind.getIndex());
190 assertEquals(0, rewind.getIndex());
203 PlaybackControlsRow.MultiAction rewind = (PlaybackControlsRow.MultiAction) adapter local
211 assertEquals(0, rewind.getIndex());
214 glue.onActionClicked(rewind);
248 PlaybackControlsRow.MultiAction rewind = (PlaybackControlsRow.MultiAction) adapter local
306 PlaybackControlsRow.MultiAction rewind = (PlaybackControlsRow.MultiAction) adapter local
    [all...]
PlaybackControlGlueTest.java 156 PlaybackControlsRow.MultiAction rewind = (PlaybackControlsRow.MultiAction) adapter local
164 assertEquals(0, rewind.getIndex());
170 assertEquals(0, rewind.getIndex());
174 assertEquals(0, rewind.getIndex());
178 assertEquals(0, rewind.getIndex());
182 assertEquals(0, rewind.getIndex());
188 assertEquals(0, rewind.getIndex());
201 PlaybackControlsRow.MultiAction rewind = (PlaybackControlsRow.MultiAction) adapter local
209 assertEquals(0, rewind.getIndex());
212 glue.onActionClicked(rewind);
246 PlaybackControlsRow.MultiAction rewind = (PlaybackControlsRow.MultiAction) adapter local
304 PlaybackControlsRow.MultiAction rewind = (PlaybackControlsRow.MultiAction) adapter local
    [all...]
  /external/skia/src/gpu/text/
GrTextBlobCache.cpp 22 fCache.rewind();
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_MultiByte_EUC_JP.java 43 inputCB.rewind();
45 inputCB.rewind();
46 intermediateBB.rewind();
48 outputCB.rewind();
OldCharset_AbstractTest.java 113 outputBB.rewind();
127 outputCB.rewind();
140 outputBB.rewind();
153 // inputCB.rewind();
156 inputCB.rewind();
158 inputCB.rewind();
159 intermediateBB.rewind();
162 outputCB.rewind();
166 outputCB.rewind();
190 inputCB.rewind();
    [all...]
  /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);
DebugTreeNodeStream.java 44 /** Track the last mark() call result value for use in rewind(). */
102 public void rewind(int marker) { method in class:DebugTreeNodeStream
103 dbg.rewind(marker);
104 input.rewind(marker);
107 public void rewind() { method in class:DebugTreeNodeStream
108 dbg.rewind();
109 input.rewind(lastMarker);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
IntStream.as 44 * when passed to rewind() you get back to the same spot.
45 * rewind(mark()) should not affect the input cursor. The Lexer
67 /** Rewind to the input position of the last marker.
72 * and rewind(i) should balance still. It is
73 * like invoking rewind(last marker) but it should not "pop"
76 function rewind():void;
81 * rewind() except it releases resources without the backward seek.
93 * This is different from rewind in its multi-directional
98 * backtracking using the mark/rewind mechanism that restores state and
  /external/skia/src/images/
SkImageDecoder_FactoryRegistrar.cpp 26 // we rewind here, because we promise later when we call "decode", that
28 bool rewindSuceeded = stream->rewind();
30 // our image decoder's require that rewind is supported so we fail early
33 SkDEBUGF(("Unable to rewind the image stream."));
52 if (!stream->rewind()) {
54 "Unable to rewind the image stream\n");
SkImageDecoder_FactoryDefault.cpp 30 // we must rewind only if we got nullptr, since we gave the stream to the
32 stream->rewind();
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
OrderedDataOutputStream.java 38 mByteBuffer.rewind();
45 mByteBuffer.rewind();
  /packages/apps/Camera2/src/com/android/camera/exif/
OrderedDataOutputStream.java 38 mByteBuffer.rewind();
45 mByteBuffer.rewind();
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
OrderedDataOutputStream.java 38 mByteBuffer.rewind();
45 mByteBuffer.rewind();
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
OrderedDataOutputStream.java 38 mByteBuffer.rewind();
45 mByteBuffer.rewind();
  /packages/apps/Camera2/src/com/android/camera/processing/memory/
ByteBufferDirectPool.java 38 byteBuffer.rewind();
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
ICUBinaryTest.java 96 bytes.rewind();
104 bytes.rewind();
112 bytes.rewind();
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ICUBinaryTest.java 92 bytes.rewind();
100 bytes.rewind();
108 bytes.rewind();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
UnknownEntry.java 37 this.content = (ByteBuffer) content.duplicate().rewind();
42 this.content = (ByteBuffer) byteBuffer.duplicate().rewind();
53 bb.rewind();
  /libcore/luni/src/test/java/libcore/java/nio/
CharBufferTest.java 31 cb.rewind();
42 cb.rewind();
52 cb.rewind();

Completed in 877 milliseconds

1 2 3 4 5 6 7 8 91011>>