HomeSort by relevance Sort by last modified time
    Searched defs:seek (Results 1 - 25 of 184) 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.8/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.15-4.8/sysroot/usr/include/
af_vfs.h 43 AFfileoffset (*seek) (AFvirtualfile *vfile, AFfileoffset 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/flac/include/FLAC/
callback.h 117 /** Signature for the seek callback.
167 * If the seek requirement for an interface is optional, you can signify that
168 * a data sorce is not seekable by setting the \a seek field to \c NULL.
173 FLAC__IOCallback_Seek seek; member in struct:__anon9276
  /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
  /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
  /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/src/tools/perf/ui/
browser.h 26 void (*seek)(struct ui_browser *self, off_t offset, int whence); member in struct:ui_browser
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/io/
BridgeBufferIterator.java 37 public void seek(int offset) { method in class:BridgeBufferIterator
  /frameworks/compile/libbcc/lib/Support/
FileBase.cpp 264 off_t FileBase::seek(off_t pOffset) { function in class:FileBase

Completed in 4078 milliseconds

1 2 3 4 5 6 7 8