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

1 2 3 4 5 6 7 8

  /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/x86_64-linux-glibc2.11-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.11-4.8/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:blink::FileWriterSync
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
seek_unittest.py 6 from telemetry.page.actions import seek namespace
20 """Tests that with no selector Seek action seeks first media element."""
21 action = seek.SeekAction(seconds=1, timeout_in_seconds=10)
29 """Tests that Seek action seeks video element matching selector."""
30 action = seek.SeekAction(seconds=1, selector='#video_1',
42 """Tests that Seek action seeks all video elements with selector='all'."""
43 action = seek.SeekAction(seconds=1, selector='all',
55 """Tests that wait_for_seeked timeouts if video does not seek."""
56 action = seek.SeekAction(seconds=1, selector='#video_1',
  /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:__anon26074
  /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
CommonTokenStream.pm 315 $self->seek($self->last_marker);
318 $self->seek($marker);
322 sub seek { subroutine
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap_newlib.cc 65 OP(fdio, seek); \
125 int WRAP(seek)(int fd, off_t offset, int whence, off_t* new_offset) { function
313 CHECK_REAL(seek);
314 return REAL(seek)(fd, offset, whence, new_offset);
  /packages/apps/FMRadio/src/com/android/fmradio/
FmNative.java 69 * seek with frequency in direction
76 static native float seek(float frequency, boolean isUp); method in class:FmNative
86 * Stop scan, also can stop seek, other native when scan should call stop
  /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
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
browser.h 26 void (*seek)(struct ui_browser *self, off_t offset, int whence); member in struct:ui_browser
  /external/srec/portable/include/
PFile.h 140 ESR_ReturnCode(*seek)(struct PFile_t* self, long offset, int origin); member in struct:PFile_t

Completed in 717 milliseconds

1 2 3 4 5 6 7 8