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

1 2 3 4 5 6 7 8 910

  /external/antlr/src/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...]
ANTLRStringStream.java 63 /** Track the last mark() call result value for use in rewind(). */
171 public void rewind(int m) { method in class:ANTLRStringStream
180 public void rewind() { method in class:ANTLRStringStream
181 rewind(lastMarker);
  /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/skia/gpu/include/
GrClipIterator.h 37 * Rewind the iterator to replay the set of clip elements again
39 virtual void rewind() = 0;
78 * Call to rewind iter, first checking to see if iter is NULL
82 iter->rewind();
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_MultiByte_EUC_JP.java     [all...]
OldCharset_MultiByte_EUC_JP_Android.java     [all...]
OldCharset_AbstractTest.java 113 outputBB.rewind();
128 outputCB.rewind();
160 outputBB.rewind();
173 // inputCB.rewind();
176 inputCB.rewind();
178 inputCB.rewind();
179 intermediateBB.rewind();
182 outputCB.rewind();
186 outputCB.rewind();
205 inputCB.rewind();
    [all...]
OldCharset_SingleByteAbstractTest.java 54 outputCB.rewind();
70 outputCB.rewind();
94 // outputCB.rewind();
109 outputBB.rewind();
  /external/skia/src/images/
SkImageDecoder_Factory.cpp 38 // we rewind here, because we promise later when we call "decode", that
40 stream->rewind();
48 stream->rewind();
67 // we must rewind only if we got NULL, since we gave the stream to the
69 stream->rewind();
  /external/skia/include/ports/
SkStream_Win.h 42 virtual bool rewind();
  /external/antlr/src/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);
DebugEventRepeater.java 61 public void rewind(int i) { listener.rewind(i); } method in class:DebugEventRepeater
62 public void rewind() { listener.rewind(); } method in class:DebugEventRepeater
BlankDebugEventListener.java 50 public void rewind(int i) {} method in class:BlankDebugEventListener
51 public void rewind() {} method in class:BlankDebugEventListener
DebugEventListener.java 116 public void rewind(int marker); method in interface:DebugEventListener
118 /** Rewind to the input position of the last marker.
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/llvm/lib/CodeGen/
AllocationOrder.h 47 /// It will keep returning 0 until rewind() is called.
64 /// rewind - Start over from the beginning.
65 void rewind() { Pos = 0; } function in class:llvm::AllocationOrder
  /external/apache-harmony/nio_char/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...]
CharsetEncoderTest.java 291 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...]
  /frameworks/base/opengl/libs/GLES2_dbg/test/
test_server.cpp 76 rewind(file);
78 rewind(file);
119 rewind(file);
185 rewind(file);
214 rewind(file);
220 rewind(file);
222 rewind(file);
227 rewind(file);
230 rewind(file);
236 rewind(file)
    [all...]
  /frameworks/base/core/jni/android/graphics/
Utils.h 32 virtual bool rewind();
  /external/antlr/src/org/antlr/runtime/misc/
LookaheadStream.java 54 /** 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
  /external/clang/test/Analysis/
stream.c 14 extern void rewind (FILE *__stream);
37 rewind(p); // expected-warning {{Stream pointer might be NULL.}}
  /hardware/ril/mock-ril/src/java/com/android/internal/telephony/
RilChannel.java 102 * read from sc until bb is filled then rewind bb
117 * Rewind bb then write the contents to sc
124 bb.rewind();
129 * read from sc until bb is filled then rewind bb
137 bb.rewind();
  /external/skia/include/core/
SkStream.h 26 /** Called to rewind to the beginning of the stream. If this cannot be
29 virtual bool rewind() = 0;
130 virtual bool rewind();
154 virtual bool rewind();
186 virtual bool rewind();
223 virtual bool rewind();
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
MMap.h 31 rewind(fp);

Completed in 830 milliseconds

1 2 3 4 5 6 7 8 910