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

12345

/external/antlr/src/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
H A DANTLRStringStream.java174 seek(state.p);
194 public void seek(int index) { method in class:ANTLRStringStream
199 // seek forward, consume until p hits 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&);
H A DFileWriter.idl46 void seek(in long long position) raises (FileException);
/external/webkit/LayoutTests/http/tests/resources/
H A Dpost-and-verify.cgi19 seek FILE, $values{'start'}, 0;
/external/webkit/Source/WebCore/platform/leveldb/
H A DLevelDBIterator.h48 void seek(const Vector<char>& target);
/external/antlr/src/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:__anon4330
/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 {
H A DmediaControlsAndroid.css100 audio::-webkit-media-controls-seek-back-button, video::-webkit-media-controls-seek-back-button {
101 -webkit-appearance: media-seek-back-button;
107 audio::-webkit-media-controls-seek-forward-button, video::-webkit-media-controls-seek-forward-button {
108 -webkit-appearance: media-seek-forward-button;
H A DmediaControls.css115 audio::-webkit-media-controls-seek-back-button, video::-webkit-media-controls-seek-back-button {
116 -webkit-appearance: media-seek-back-button;
125 audio::-webkit-media-controls-seek-forward-button, video::-webkit-media-controls-seek-forward-button {
126 -webkit-appearance: media-seek-forward-button;
H A DmediaControlsChromium.css180 audio::-webkit-media-controls-seek-back-button, video::-webkit-media-controls-seek-back-button {
181 -webkit-appearance: media-seek-back-button;
185 audio::-webkit-media-controls-seek-forward-button, video::-webkit-media-controls-seek-forward-button {
186 -webkit-appearance: media-seek-forward-button;
H A DmediaControlsEfl.css114 audio::-webkit-media-controls-seek-back-button, video::-webkit-media-controls-seek-back-button {
115 -webkit-appearance: media-seek-back-button;
124 audio::-webkit-media-controls-seek-forward-button, video::-webkit-media-controls-seek-forward-button {
125 -webkit-appearance: media-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.
19 def seek(self, pos): member in class:Reader
20 self.file.seek(pos)
87 f.seek(self.sh_offset[0])
99 f.seek(section.sh_offset[0] + index * section.sh_entsize[0])
122 f.seek(section.sh_offset[0] + index * section.sh_entsize[0])
166 f.seek(16) # Seek to end of e_ident.
189 f.seek(e_shoff[0] + index * e_shentsize[0])
194 f.seek(sections[e_shstrndx[0]].sh_offset[0])
201 f.seek(sectio
[all...]
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_rwops.h46 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
114 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
115 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
/external/zlib/
H A Dgzwrite.c178 /* check for seek request */
179 if (state->seek) {
180 state->seek = 0;
239 /* check for seek request */
240 if (state->seek) {
241 state->seek = 0;
302 /* check for seek request */
303 if (state->seek) {
304 state->seek = 0;
377 /* check for seek reques
[all...]
/external/antlr/src/org/antlr/runtime/debug/
H A DDebugTokenStream.java127 public void seek(int index) { method in class:DebugTokenStream
128 // TODO: implement seek in dbg interface
129 // db.seek(index);
130 input.seek(index);
H A DDebugTreeNodeStream.java115 public void seek(int index) { method in class:DebugTreeNodeStream
116 // TODO: implement seek in dbg interface
117 // db.seek(index);
118 input.seek(index);
/external/antlr/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.java130 seek(index);
138 seek(ret);

Completed in 452 milliseconds

12345