Searched refs:rewind (Results 1 - 25 of 276) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DIntStream.java45 * 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
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 and
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRIntStream.h36 // 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
H A DANTLRDebugTreeNodeStream.h61 - (void) rewind:(NSUInteger) marker;
62 - (void) rewind;
H A DANTLRLookaheadStream.h61 - (void) rewind:(NSInteger) marker;
62 - (void) rewind;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRIntStream.h36 // 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
H A DANTLRDebugTreeNodeStream.h61 - (void) rewind:(NSUInteger) marker;
62 - (void) rewind;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRIntStream.h36 // 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/
H A DANTLRIntStream.h40 // 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
/external/skia/include/gpu/
H A DGrClipIterator.h32 virtual void rewind() = 0;
71 * Call to rewind iter, first checking to see if iter is NULL
75 iter->rewind();
/external/skia/src/images/
H A DSkImageDecoder_Factory.cpp30 // we rewind here, because we promise later when we call "decode", that
32 stream->rewind();
40 stream->rewind();
59 // we must rewind only if we got NULL, since we gave the stream to the
61 stream->rewind();
/external/skia/include/ports/
H A DSkStream_Win.h35 virtual bool rewind();
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTokenStream.java39 /** 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);
H A DDebugTreeNodeStream.java44 /** 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);
H A DDebugEventRepeater.java61 public void rewind(int i) { listener.rewind(i); } method in class:DebugEventRepeater
62 public void rewind() { listener.rewind(); } method in class:DebugEventRepeater
H A DBlankDebugEventListener.java50 public void rewind(int i) {} method in class:BlankDebugEventListener
51 public void rewind() {} method in class:BlankDebugEventListener
H A DDebugEventListener.java116 public void rewind(int marker); method in interface:DebugEventListener
123 * and rewind(i) should balance still.
125 public void rewind(); method in interface:DebugEventListener
147 * also must be rewound. Even the rewind for each mark must be unwount.
149 * ugly in the generated code. The rewind is generated in DFA.predict()
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DIntStream.as44 * when passed to rewind() you get back to the same spot.
45 * rewind(mark()) should not affect the input cursor. The Lexer
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/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DImageFlipper.java64 data.rewind();
71 temp.rewind();
/external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
H A DWireFrustum.java78 b.rewind();
79 a.rewind();
81 a.rewind();
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
H A DCharsetDecoderTest.java253 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...]
H A DCharsetEncoderTest.java291 out.rewind();
332 in.rewind();
336 in.rewind();
342 in.rewind();
346 in.rewind();
353 in.rewind();
360 in.rewind();
368 in.rewind();
377 in.rewind();
378 out.rewind();
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3cyclicdfa.c112 is->rewind(is, mark);
123 is->rewind(is, mark);
155 is->rewind(is, mark);
177 is->rewind(is, mark);
184 is->rewind(is, mark);
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DBitmapTextPage.java123 quads.rewind();
148 fpb.rewind();
153 ftb.rewind();
158 bcb.rewind();
163 sib.rewind();
190 fpb.rewind();
191 ftb.rewind();
192 sib.rewind();
193 bcb.rewind();
/external/llvm/lib/CodeGen/
H A DAllocationOrder.h46 /// It will keep returning 0 until rewind() is called.
63 /// rewind - Start over from the beginning.
64 void rewind() { Pos = 0; } function in class:llvm::AllocationOrder
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DLookaheadStream.java54 /** Track the last mark() call result value for use in rewind(). */
139 public void rewind(int marker) { method in class:LookaheadStream
145 public void rewind() { method in class:LookaheadStream
146 seek(lastMarker); // rewind but do not release marker

Completed in 373 milliseconds

1234567891011>>