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

12

/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
H A DLegacyCommonTokenStream.java59 /** Track the last mark() call result value for use in rewind(). */
338 public void rewind(int marker) { method in class:LegacyCommonTokenStream
342 public void rewind() { method in class:LegacyCommonTokenStream
/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/skia/src/images/
H A DSkFDStream.cpp23 bool SkFDStream::rewind() { function in class:SkFDStream
28 SkDebugf("xxxxxxxxxxxxxx rewind failed %d\n", value);
/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/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
H A Dantlr3debugeventlistener.h165 void (*rewind) (pANTLR3_DEBUG_EVENT_LISTENER delboy, ANTLR3_MARKER marker); member in struct:ANTLR3_DEBUG_EVENT_LISTENER_struct
172 * and rewind(i) should balance still.
196 * also must be rewound. Even the rewind for each mark must be unwound.
198 * ugly in the generated code. The rewind is generated in DFA.predict()
/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/openfst/src/lib/
H A Dfst.cc124 // If rewind = true, reposition stream to before call (if possible).
125 bool FstHeader::Read(istream &strm, const string &source, bool rewind) { argument
127 if (rewind) pos = strm.tellg();
133 if (rewind) strm.seekg(pos);
149 if (rewind) strm.seekg(pos);
/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 DBlankDebugEventListener.java50 public void rewind(int i) {} method in class:BlankDebugEventListener
51 public void rewind() {} method in class:BlankDebugEventListener
/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/skia/include/core/
H A DSkReader32.h41 void rewind() { fCurr = fBase; } function in class:SkReader32
/external/skia/include/gpu/
H A DSkGr.h108 virtual void rewind() { this->reset(*fClipStack); } function in class:SkGrClipIterator
148 virtual void rewind() { this->reset(*fRegion); } function in class:SkGrRegionIterator
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DFontCustomPlatformData.cpp140 virtual bool rewind() function in class:WebCore::RemoteFontStream

Completed in 334 milliseconds

12