/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/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
|
/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/chromium_org/third_party/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 NULL, since we gave the stream to the 32 stream->rewind();
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/ |
ImageFlipper.java | 64 data.rewind(); 71 temp.rewind();
|
/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 NULL, 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/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/ |
OrderedDataOutputStream.java | 38 mByteBuffer.rewind(); 45 mByteBuffer.rewind();
|
/packages/apps/Mms/src/com/android/mms/exif/ |
OrderedDataOutputStream.java | 38 mByteBuffer.rewind(); 45 mByteBuffer.rewind();
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/ |
WireFrustum.java | 78 b.rewind(); 79 a.rewind(); 81 a.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/harmony-tests/src/test/java/tests/api/java/nio/charset/ |
CharsetDecoderTest.java | 253 in.rewind(); 259 in.rewind(); 277 in.rewind(); 283 in.rewind(); 326 in.rewind(); 327 out.rewind(); 339 in.rewind(); 349 in.rewind(); 354 in.rewind(); 366 out.rewind(); [all...] |
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3cyclicdfa.c | 112 is->rewind(is, mark); 123 is->rewind(is, mark); 155 is->rewind(is, mark); 177 is->rewind(is, mark); 184 is->rewind(is, mark);
|