HomeSort by relevance Sort by last modified time
    Searched defs:seek (Results 1 - 25 of 168) sorted by null

1 2 3 4 5 6 7

  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 29 public abstract void seek(int offset); method in class:BufferIterator
NioBufferIterator.java 40 public void seek(int offset) { method in class:NioBufferIterator
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
af_vfs.h 39 long (*seek) (AFvirtualfile *vfile, long offset, int is_relative); member in struct:_AFvirtualfile
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
af_vfs.h 39 long (*seek) (AFvirtualfile *vfile, long offset, int is_relative); member in struct:_AFvirtualfile
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
af_vfs.h 39 long (*seek) (AFvirtualfile *vfile, long offset, int is_relative); member in struct:_AFvirtualfile
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRStringStream.as 151 seek(state.p);
171 public function seek(index:int):void { function
176 // seek forward, consume until p hits index
CommonTokenStream.as 318 seek(marker);
322 seek(lastMarker);
325 public function seek(index:int):void { function
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
IntStream.java 61 * 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/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriterSync.cpp 64 void FileWriterSync::seek(long long position, ExceptionState& exceptionState) function in class:WebCore::FileWriterSync
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
seek_unittest.py 6 from telemetry.page.actions import seek namespace
22 """Tests that with no selector Seek action seeks first media element."""
24 action = seek.SeekAction(data)
32 """Tests that Seek action seeks video element matching selector."""
34 action = seek.SeekAction(data)
45 """Tests that Seek action seeks all video elements with selector='all'."""
47 action = seek.SeekAction(data)
59 """Tests that wait_for_seeked timeouts if video does not seek."""
64 action = seek.SeekAction(data)
72 """Tests that seek action fails with no seek time.""
    [all...]
  /external/flac/include/FLAC/
callback.h 116 /** 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:__anon18273
  /external/marisa-trie/lib/marisa/
mapper.cc 88 temp.seek(offset, whence);
112 temp.seek(offset, whence);
135 void Mapper::seek(long offset, int whence) { function in class:marisa::Mapper
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
mapper.cc 91 temp.seek(offset, whence);
116 temp.seek(offset, whence);
139 void Mapper::seek(long offset, int whence) { function in class:marisa_alpha::Mapper
  /frameworks/av/libvideoeditor/osal/inc/
M4OSA_FileReader.h 84 M4OSA_ERR (*seek) (M4OSA_Context context, member in struct:__anon29115
M4OSA_FileWriter.h 80 M4OSA_ERR (*seek) (M4OSA_Context context, member in struct:__anon29117
108 /* Pierre Lebeaupin 2008/04/29: WARNING! the feature of file*Seek which returns
109 the position in the file (from the beginning) after the seek in the "position"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 11 f.seek(pos) # set current position
12 f.seek(pos, mode) # mode 0: absolute; 1: relative; 2: relative to EOF
54 def seek(self, pos, mode = 0): member in class:DBRecIO
164 f.seek(len(lines[0]))
166 f.seek(0)
171 f.seek(-len(line), 1)
174 raise RuntimeError, 'bad result after seek back'
175 f.seek(len(line2), 1)
178 f.seek(f.tell() - len(line))
181 raise RuntimeError, 'bad result after seek back from EOF
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
chunk.py 41 read, close, seek, tell, isatty.
96 def seek(self, pos, whence=0): member in class:Chunk
97 """Seek to specified position into the chunk.
105 raise IOError, "cannot seek"
112 self.file.seek(self.offset + pos, 0)
158 self.file.seek(n, 1)
multifile.py 58 def seek(self, pos, whence=0): member in class:MultiFile
70 raise Error, 'bad MultiFile.seek() call'
71 self.fp.seek(pos + self.start)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 11 f.seek(pos) # set current position
12 f.seek(pos, mode) # mode 0: absolute; 1: relative; 2: relative to EOF
54 def seek(self, pos, mode = 0): member in class:DBRecIO
164 f.seek(len(lines[0]))
166 f.seek(0)
171 f.seek(-len(line), 1)
174 raise RuntimeError, 'bad result after seek back'
175 f.seek(len(line2), 1)
178 f.seek(f.tell() - len(line))
181 raise RuntimeError, 'bad result after seek back from EOF
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
chunk.py 41 read, close, seek, tell, isatty.
96 def seek(self, pos, whence=0): member in class:Chunk
97 """Seek to specified position into the chunk.
105 raise IOError, "cannot seek"
112 self.file.seek(self.offset + pos, 0)
158 self.file.seek(n, 1)
multifile.py 58 def seek(self, pos, whence=0): member in class:MultiFile
70 raise Error, 'bad MultiFile.seek() call'
71 self.fp.seek(pos + self.start)
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTreeNodeStream.as 293 seek(marker);
297 seek(lastMarker);
300 public function seek(index:int):void { function
315 seek(index);
318 /** Seek back to previous index saved during last push() call.
323 seek(ret);
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
ANTLRStringStream.pm 176 $self->seek($state->get_p);
195 sub seek { subroutine
204 # seek forward, consume until p hits index
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3intstream.h 142 * essentially calling release() and seek(). If there are markers
157 * rewind() except it releases resources without the backward seek.
162 * normally used to seek ahead in the input stream. No buffering is
163 * required to do this unless you know your stream will use seek to
177 void (*seek) (struct ANTLR3_INT_STREAM_struct * intStream, ANTLR3_MARKER index); member in struct:ANTLR3_INT_STREAM_struct
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
LookaheadStream.h 150 seek(marker); // assume marker is top
155 seek(lastMarker); // rewind but do not release marker
158 /** Seek to a 0-indexed position within data buffer. Can't handle
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

Completed in 224 milliseconds

1 2 3 4 5 6 7