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

1 23 4 5 6 7

  /prebuilts/tools/windows/sdl/include/SDL/
SDL_rwops.h 43 /** Seek to 'offset' relative to whence, one of stdio's whence values:
47 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
113 /** @name Seek Reference Points */
115 #define RW_SEEK_SET 0 /**< Seek from the beginning of data */
116 #define RW_SEEK_CUR 1 /**< Seek relative to current read point */
117 #define RW_SEEK_END 2 /**< Seek relative to the end of data */
122 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
123 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationSeeking.java 83 animView.seek(progress);
121 public void seek(long seekTime) { method in class:AnimationSeeking.MyAnimationView
ReversingAnimation.java 97 public void seek(long seekTime) { method in class:ReversingAnimation.MyAnimationView
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3commontreenodestream.c 73 static void seek (pANTLR3_INT_STREAM is, ANTLR3_MARKER index);
213 stream->tnstream->istream->seek = seek;
355 stream->tnstream->istream->seek = seek;
690 is->seek(is, marker);
696 is->seek(is, is->lastMarker);
703 seek (pANTLR3_INT_STREAM is, ANTLR3_MARKER index) function
957 ctns->tnstream->istream->seek(ctns->tnstream->istream, index);
966 ctns->tnstream->istream->seek(ctns->tnstream->istream, retVal)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BufferedTokenStream.java 94 seek(marker);
98 seek(lastMarker);
106 public void seek(int index) { p = index; } method in class:BufferedTokenStream
LegacyCommonTokenStream.java 339 seek(marker);
343 seek(lastMarker);
351 public void seek(int index) { method in class:LegacyCommonTokenStream
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeNodeStream.java 115 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/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/
byte_reader.js 38 * Seek relative to the beginning of the buffer.
44 * Seek relative to the current position.
50 * Seek relative to the end of the buffer.
482 * Seek to a give position relative to opt_seekStart.
488 ByteReader.prototype.seek = function(pos, opt_seekStart, opt_end) {
501 throw new Error('Seek outside of buffer: ' + (newPos - opt_end));
507 * Seek to a given position relative to opt_seekStart, saving the current
517 this.seek(pos, opt_seekStart);
518 // Alter the seekStack_ after the call to seek(), in case it throws.
526 this.seek(this.seekStack_.pop())
    [all...]
  /external/chromium_org/content/renderer/media/
webmediaplayer_ms.cc 177 void WebMediaPlayerMS::seek(double seconds) { function in class:content::WebMediaPlayerMS
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap_newlib.cc 62 OP(fdio, seek); \
118 int WRAP(seek)(int fd, off_t offset, int whence, off_t* new_offset) { function
275 CHECK_REAL(seek);
276 return REAL(seek)(fd, offset, whence, new_offset);
  /external/chromium_org/third_party/skia/include/core/
SkStream.h 108 * If an attempt is made to seek past the end of the stream, the position will be set
111 virtual bool seek(size_t position) { return false; } function in class:SkStream
146 /** SkStreamSeekable is a SkStreamRewindable for which position, seek, move, and fork are required. */
153 virtual bool seek(size_t position) SK_OVERRIDE = 0;
266 virtual bool seek(size_t position) SK_OVERRIDE;
338 virtual bool seek(size_t position) SK_OVERRIDE;
  /external/skia/include/core/
SkStream.h 108 * If an attempt is made to seek past the end of the stream, the position will be set
111 virtual bool seek(size_t position) { return false; } function in class:SkStream
146 /** SkStreamSeekable is a SkStreamRewindable for which position, seek, move, and fork are required. */
153 virtual bool seek(size_t position) SK_OVERRIDE = 0;
266 virtual bool seek(size_t position) SK_OVERRIDE;
338 virtual bool seek(size_t position) SK_OVERRIDE;
  /external/zlib/src/
gzguts.h 184 /* seek request */
186 int seek; /* true if seek request pending */ member in struct:__anon29023
  /frameworks/base/libs/androidfw/
Asset.cpp 309 * Do generic seek() housekeeping. Pass in the offset/whence values from
310 * the seek request, along with the current chunk offset and the chunk
313 * Returns the new chunk offset, or -1 if the seek is illegal.
337 ALOGW("seek out of range: want %ld, end=%ld\n",
381 * Seek to end to get file length.
406 /* seek the FILE* to the start of chunk */
500 * Seek to a new position.
502 off64_t _FileAsset::seek(off64_t offset, int whence) function in class:_FileAsset
796 * Handle a seek request.
802 off64_t _CompressedAsset::seek(off64_t offset, int whence function in class:_CompressedAsset
    [all...]
  /frameworks/wilhelm/src/android/
android_GenericPlayer.cpp 163 seek(0);
167 void GenericPlayer::seek(int64_t timeMsec) { function in class:android::GenericPlayer
168 SL_LOGV("GenericPlayer::seek %lld", timeMsec);
170 SL_LOGE("GenericPlayer::seek error, can't seek to negative time %lldms", timeMsec);
615 // if we observe the player position going backwards, even without without a seek, then recover
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
codecs.py 373 def seek(self, offset, whence=0): member in class:StreamWriter
374 self.stream.seek(offset, whence)
604 def seek(self, offset, whence=0): member in class:StreamReader
609 self.stream.seek(offset, whence)
702 def seek(self, offset, whence=0): member in class:StreamReaderWriter
703 self.stream.seek(offset, whence)
    [all...]
gzip.py 289 self.fileobj.seek(0, 2) # Seek to end of file
293 self.fileobj.seek( pos ) # Return to original position
317 # so seek back to the start of the unused data, finish up
319 # (The number of bytes to seek back is the length of the unused
321 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
342 self.fileobj.seek(-8, 1)
358 self.fileobj.seek(-1, 1)
399 self.fileobj.seek(0)
415 def seek(self, offset, whence=0) member in class:GzipFile
    [all...]
sre_parse.py 208 def seek(self, index): member in class:Tokenizer
498 source.seek(here)
tempfile.py 524 newfile.seek(file.tell(), 0)
589 def seek(self, *args): member in class:SpooledTemporaryFile
590 self._file.seek(*args)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
codecs.py 373 def seek(self, offset, whence=0): member in class:StreamWriter
374 self.stream.seek(offset, whence)
604 def seek(self, offset, whence=0): member in class:StreamReader
609 self.stream.seek(offset, whence)
702 def seek(self, offset, whence=0): member in class:StreamReaderWriter
703 self.stream.seek(offset, whence)
    [all...]
gzip.py 289 self.fileobj.seek(0, 2) # Seek to end of file
293 self.fileobj.seek( pos ) # Return to original position
317 # so seek back to the start of the unused data, finish up
319 # (The number of bytes to seek back is the length of the unused
321 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
342 self.fileobj.seek(-8, 1)
358 self.fileobj.seek(-1, 1)
399 self.fileobj.seek(0)
415 def seek(self, offset, whence=0) member in class:GzipFile
    [all...]
sre_parse.py 208 def seek(self, index): member in class:Tokenizer
498 source.seek(here)
tempfile.py 524 newfile.seek(file.tell(), 0)
589 def seek(self, *args): member in class:SpooledTemporaryFile
590 self._file.seek(*args)
  /bionic/libc/tools/zoneinfo/
ZoneCompactor.java 39 public void seek(int offset) { method in class:ZoneCompactor.ByteArrayBufferIteratorBE
168 // Write dummy values for the three offsets, and remember where we need to seek back to later
214 f.seek(index_offset_offset);
216 f.seek(data_offset_offset);
218 f.seek(zonetab_offset_offset);
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
RemotePlayer.java 157 public void seek(final PlaylistItem item) { method in class:RemotePlayer
409 Log.d(TAG, "seek: item=" + item);
411 mClient.seek(item.getRemoteItemId(), item.getPosition(), null, new ItemActionCallback() {
415 logStatus("seek: succeeded", sessionId, sessionStatus, itemId, itemStatus);
423 logError("seek: failed", error, code);

Completed in 535 milliseconds

1 23 4 5 6 7