Searched refs:seek (Results 1 - 25 of 221) sorted by relevance

123456789

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DIntStream.java61 * essentially calling release() and seek(). If there are markers
75 * the marker off. It's like seek(last marker's input position).
82 * rewind() except it releases resources without the backward seek.
90 * normally used to seek ahead in the input stream. No buffering is
91 * required to do this unless you know your stream will use seek to
105 * The index is 0..n-1. A seek to position i means that LA(1) will
109 void seek(int index); method in interface:IntStream
/external/okhttp/src/main/java/libcore/io/
H A DBufferIterator.java29 public abstract void seek(int offset); method in class:BufferIterator
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRIntStream.h50 // essentially calling -release: and -seek:. If there are markers
61 // rewind() except it releases resources without the backward seek.
66 // normally used to seek ahead in the input stream. No buffering is
67 // required to do this unless you know your stream will use seek to
80 - (void) seek:(NSInteger) index;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRIntStream.h50 // essentially calling -release: and -seek:. If there are markers
61 // rewind() except it releases resources without the backward seek.
66 // normally used to seek ahead in the input stream. No buffering is
67 // required to do this unless you know your stream will use seek to
80 - (void) seek:(NSInteger) index;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRIntStream.h50 // essentially calling -release: and -seek:. If there are markers
61 // rewind() except it releases resources without the backward seek.
66 // normally used to seek ahead in the input stream. No buffering is
67 // required to do this unless you know your stream will use seek to
80 - (void) seek:(NSInteger) index;
/external/webkit/Source/WebCore/fileapi/
H A DFileWriterSync.idl37 void seek(in long long position) raises (FileException);
H A DFileWriterSync.h57 void seek(long long position, ExceptionCode&);
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestfile.c97 if (0!=rwops->seek(rwops,0L,RW_SEEK_SET)) RWOP_ERR_QUIT(rwops);
103 if (0!=rwops->seek(rwops,0L,RW_SEEK_SET)) RWOP_ERR_QUIT(rwops);
104 if (20!=rwops->seek(rwops,-7,RW_SEEK_END)) RWOP_ERR_QUIT(rwops);
109 if (0!=rwops->seek(rwops,-27,RW_SEEK_CUR)) RWOP_ERR_QUIT(rwops);
121 if (0!=rwops->seek(rwops,0L,RW_SEEK_SET)) RWOP_ERR_QUIT(rwops);
123 if (0!=rwops->seek(rwops,0L,RW_SEEK_SET)) RWOP_ERR_QUIT(rwops);
124 if (20!=rwops->seek(rwops,-7,RW_SEEK_END)) RWOP_ERR_QUIT(rwops);
129 if (0!=rwops->seek(rwops,-27,RW_SEEK_CUR)) RWOP_ERR_QUIT(rwops);
141 if (0!=rwops->seek(rwops,0L,RW_SEEK_SET)) RWOP_ERR_QUIT(rwops);
143 if (0!=rwops->seek(rwop
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DIntStream.as60 * essentially calling release() and seek(). If there are markers
74 * the marker off. It's like seek(last marker's input position).
81 * rewind() except it releases resources without the backward seek.
89 * normally used to seek ahead in the input stream. No buffering is
90 * required to do this unless you know your stream will use seek to
104 * The index is 0..n-1. A seek to position i means that LA(1) will
108 function seek(index:int):void;
/external/elfutils/tests/
H A Drun-ranlib-test2.sh40 dd of=$original seek=24 bs=1 count=12 conv=notrunc 2>/dev/null
/external/webkit/LayoutTests/http/tests/resources/
H A Dpost-and-verify.cgi19 seek FILE, $values{'start'}, 0;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRIntStream.h58 // essentially calling -release: and -seek:. If there are markers
69 // rewind() except it releases resources without the backward seek.
74 // normally used to seek ahead in the input stream. No buffering is
75 // required to do this unless you know your stream will use seek to
88 - (void) seek:(NSInteger) anIndex;
H A DLookaheadStream.m150 seek(marker); // assume marker is top
155 seek(lastMarker); // rewind but do not release marker
159 * case where you seek beyond end of existing buffer. Normally used
160 * to seek backwards in the buffer. Does not force loading of nodes.
162 public void seek(int index) { p = index; }
H A DLookaheadStream.h150 seek(marker); // assume marker is top
155 seek(lastMarker); // rewind but do not release marker
159 * case where you seek beyond end of existing buffer. Normally used
160 * to seek backwards in the buffer. Does not force loading of nodes.
162 public void seek(int index) { p = index; } function in class:FastQueue
/external/webkit/Source/WebCore/platform/leveldb/
H A DLevelDBIterator.h48 void seek(const Vector<char>& target);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DLookaheadStream.java141 seek(marker); // assume marker is top
146 seek(lastMarker); // rewind but do not release marker
150 * case where you seek beyond end of existing buffer. Normally used
151 * to seek backwards in the buffer. Does not force loading of nodes.
155 public void seek(int index) { p = index; } method in class:LookaheadStream
/external/blktrace/btt/doc/
H A DMakefile5 btt.tex: activity.eps qhist.eps dhist.eps seek.eps
/external/flac/include/FLAC/
H A Dcallback.h116 /** Signature for the seek callback.
166 * If the seek requirement for an interface is optional, you can signify that
167 * a data sorce is not seekable by setting the \a seek field to \c NULL.
172 FLAC__IOCallback_Seek seek; member in struct:__anon5993
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DRandomAccessFileTest.java56 raf.seek(0);
62 raf.seek(0);
68 raf.seek(0);
254 raf.seek(0);
266 raf.seek(0);
278 raf.seek(0);
290 raf.seek(0);
303 raf.seek(0);
317 raf.seek(0);
333 raf.seek(
[all...]
/external/blktrace/btt/
H A DAndroid.mk5 latency.c misc.c output.c proc.c seek.c trace.c \
/external/quake/tools/
H A Ddumpms2.py42 f.seek(4 + 4 + 4 * numCommands)
47 f.seek(4 + 4)
/external/webkit/Source/WebCore/css/
H A DmediaControlsGtk.css74 audio::-webkit-media-controls-seek-back-button, video::-webkit-media-controls-seek-back-button {
79 audio::-webkit-media-controls-seek-forward-button, video::-webkit-media-controls-seek-forward-button {
/external/llvm/test/Scripts/
H A Dmacho-dumpx12 # Snarf all the data so we can seek.
24 def seek(self, pos): member in class:Reader
25 self.file.seek(pos)
171 f.seek(stroff)
177 f.seek(symoff)
183 f.seek(prev_pos)
228 f.seek(indirectsymoff)
235 f.seek(prev_pos)
265 f.seek(reloc_offset)
274 f.seek(offse
[all...]
H A Delf-dump12 # Snarf all the data so we can seek.
20 def seek(self, pos): member in class:Reader
21 self.file.seek(pos)
88 f.seek(self.sh_offset[0])
100 f.seek(section.sh_offset[0] + index * section.sh_entsize[0])
123 f.seek(section.sh_offset[0] + index * section.sh_entsize[0])
180 f.seek(16) # Seek to end of e_ident.
209 f.seek(e_shoff[0] + index * e_shentsize[0])
214 f.seek(sections[e_shstrndx[0]].sh_offset[0])
221 f.seek(sectio
[all...]
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_rwops.h47 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
122 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
123 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)

Completed in 717 milliseconds

123456789