HomeSort by relevance Sort by last modified time
    Searched defs:Rewind (Results 26 - 50 of 50) sorted by null

12

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
IDebugEventListener.cs 135 void Rewind( int marker );
138 * Rewind to the input position of the last marker.
143 * and rewind(i) should balance still.
146 void Rewind();
175 * also must be rewound. Even the rewind for each mark must be unwount.
177 * ugly in the generated code. The rewind is generated in DFA.predict()
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
LegacyCommonTokenStream.cs 74 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
448 public virtual void Rewind( int marker )
453 public virtual void Rewind()
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
BlankDebugEventListener.cs 95 public virtual void Rewind( int i )
98 public virtual void Rewind()
DebugEventHub.cs 185 public virtual void Rewind( int index )
190 listener.Rewind( index );
194 public virtual void Rewind()
199 listener.Rewind();
DebugEventRepeater.cs 108 public virtual void Rewind( int i )
110 _listener.Rewind( i );
112 public virtual void Rewind()
114 _listener.Rewind();
DebugEventSocketProxy.cs 228 public override void Rewind( int i )
230 Transmit( "rewind\t" + i );
233 public override void Rewind()
235 Transmit( "rewind" );
Profiler.cs 315 * rewind m
349 public override void Rewind(int i)
352 Console.WriteLine("rewind " + i);
355 public override void Rewind()
358 Console.WriteLine("rewind");
  /external/chromium_org/v8/src/
list-inl.h 168 void List<T, P>::Rewind(int pos) {
small-pointer-list.h 57 list()->Rewind(old_length);
139 void Rewind(int pos) {
151 list()->Rewind(pos);
frames.cc 866 // which will allow RestoreOperandStack to rewind the handlers.
913 stack_handler_index = handler->Rewind(isolate(), store, i, fp());
    [all...]
  /external/v8/src/
list-inl.h 147 void List<T, P>::Rewind(int pos) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventSocketProxy.cs 200 public override void Rewind(int i) {
201 Transmit("rewind\t" + i);
204 public override void Rewind() {
205 Transmit("rewind");
Profiler.cs 289 * rewind m
319 public override void Rewind(int i) {
321 Console.WriteLine("rewind " + i);
324 public override void Rewind() {
326 Console.WriteLine("rewind");
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 147 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
406 public virtual void Rewind(int marker) {
410 public virtual void Rewind() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 156 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
481 public virtual void Rewind( int marker )
486 public virtual void Rewind()
  /external/chromium_org/third_party/skia/src/core/
SkPathRef.h 182 static void Rewind(SkAutoTUnref<SkPathRef>* pathRef) {
189 (*pathRef)->fConicWeights.rewind();
  /external/clang/lib/StaticAnalyzer/Checkers/
StreamChecker.cpp 85 void Rewind(CheckerContext &C, const CallExpr *CE) const;
127 II_rewind = &Ctx.Idents.get("rewind");
170 Rewind(C, CE);
289 void StreamChecker::Rewind(CheckerContext &C, const CallExpr *CE) const {
  /external/skia/src/core/
SkPathRef.h 182 static void Rewind(SkAutoTUnref<SkPathRef>* pathRef) {
189 (*pathRef)->fConicWeights.rewind();
  /external/chromium/third_party/libjingle/source/talk/base/
stream.h 204 inline bool Rewind() { return SetPosition(0); }
  /external/chromium_org/third_party/libjingle/source/talk/base/
stream.h 218 inline bool Rewind() { return SetPosition(0); }
  /external/chromium_org/third_party/libwebp/demux/
demux.c 140 static WEBP_INLINE void Rewind(MemBuffer* const mem, size_t size) {
272 Rewind(mem, CHUNK_HEADER_SIZE);
515 Rewind(mem, CHUNK_HEADER_SIZE);
  /external/webp/src/demux/
demux.c 142 static WEBP_INLINE void Rewind(MemBuffer* const mem, size_t size) {
270 Rewind(mem, CHUNK_HEADER_SIZE);
515 Rewind(mem, CHUNK_HEADER_SIZE);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 82 /// Executing Rewind(Mark()) on a stream should not affect the input position.
87 /// <see cref="IIntStream.Rewind(Integer)"/> to return to the current position.
112 procedure Rewind(const Marker: Integer); overload;
115 /// Rewind to the input position of the last marker.
121 /// and Rewind(I) should balance still. It is like invoking
122 /// Rewind(last marker) but it should not "pop" the marker off.
125 procedure Rewind; overload;
131 /// <see cref="IIntStream.Rewind(Integer)"/> except it releases resources without
149 /// This is different from rewind in its multi-directional requirement
155 /// <see cref="IIntStream.Mark"/>/<see cref="IIntStream.Rewind(Integer)"/
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvoiceengine.cc 273 stream_->Rewind();
    [all...]
  /external/webrtc/src/
common_types.h 34 virtual int Rewind() {return -1;}
44 virtual int Rewind() {return -1;}

Completed in 714 milliseconds

12