Searched defs:rewind (Results 1 - 25 of 62) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DANTLRStringStream.as56 /** Track the last mark() call result value for use in rewind(). */
157 public function rewind():void { function
H A DCommonTokenStream.as57 /** 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/
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
H A DANTLRStringStream.java63 /** 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);
H A DBufferedTokenStream.java59 /** Track the last mark() call result value for use in rewind(). */
93 public void rewind(int marker) { method in class:BufferedTokenStream
97 public void rewind() { method in class:BufferedTokenStream
/external/google-breakpad/src/processor/
H A Dbinarystream.h78 void rewind() { function in class:google_breakpad::binarystream
/external/llvm/lib/CodeGen/
H A DAllocationOrder.h47 /// returning 0 until rewind() is called.
74 void rewind() { Pos = -int(Hints.size()); } function in class:llvm::AllocationOrder
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as89 /** 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/
H A DANTLRStringStream.pm165 sub rewind { subroutine
H A DCommonTokenStream.pm309 sub rewind { subroutine
310 Readonly my $usage => 'void rewind(int marker) | void rewind()';
/external/pdfium/core/src/fxge/agg/agg23/
H A Dfx_agg_path_storage.cpp78 void path_storage::rewind(unsigned path_id) function in class:agg::path_storage
H A Dfx_agg_vcgen_dash.cpp95 void vcgen_dash::rewind(unsigned) function in class:agg::vcgen_dash
110 rewind(0);
H A Dfx_agg_vcgen_stroke.cpp78 void vcgen_stroke::rewind(unsigned) function in class:agg::vcgen_stroke
97 rewind(0);
H A Dagg_conv_adaptor_vcgen.h25 void rewind(unsigned) {} function in struct:agg::null_markers
65 void rewind(unsigned path_id) function in class:agg::conv_adaptor_vcgen
67 m_source->rewind(path_id);
123 m_generator.rewind(0);
H A Dagg_curves.h94 void rewind(unsigned) function in class:agg::curve4_div
168 void rewind(unsigned path_id) function in class:agg::curve4
170 m_curve_div.rewind(path_id);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3intstream.h129 * 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/
H A DLookaheadStream.h47 /** 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/
H A Ddebug.rb149 def rewind( marker = nil ) method in class:ANTLR3.Debug.TreeNodeStream
150 @debug_listener.rewind( marker )
/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);
/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
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Devent-hub.rb183 def rewind( marker ) method in class:ANTLR3.Debug.EventHub
185 listener.rewind( marker )
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb120 === mark / rewind / release
127 Used in tandem with, <tt>stream.rewind(mark = last_marker)</tt>, the marker can
191 # returns a value to pass to #rewind at a later time
200 # :method: rewind( marker = last_marker )
203 abstract :rewind
568 # position with the #rewind method. This method is used to implement backtracking.
580 def rewind( marker = @markers.length - 1, release = true ) method in class:ANTLR3.that.StringStream
856 # rewind the stream to its initial state
878 def rewind( marker = @last_marker, release = true ) method in class:ANTLR3.that.CommonTokenStream
/external/openfst/src/lib/
H A Dfst.cc127 // If rewind = true, reposition stream to before call (if possible).
128 bool FstHeader::Read(istream &strm, const string &source, bool rewind) { argument
130 if (rewind) pos = strm.tellg();
136 if (rewind) strm.seekg(pos);
152 if (rewind) strm.seekg(pos);
/external/skia/src/core/
H A DSkChunkAlloc.cpp86 void SkChunkAlloc::rewind() { function in class:SkChunkAlloc

Completed in 838 milliseconds

123