HomeSort by relevance Sort by last modified time
    Searched defs:seek (Results 26 - 50 of 85) sorted by null

12 3 4

  /external/stlport/test/unit/
sstream_test.cpp 34 CPPUNIT_TEST(seek);
54 void seek();
386 void SstreamTest::seek() function in class:SstreamTest
fstream_test.cpp 45 CPPUNIT_TEST(seek);
75 void seek();
371 void FstreamTest::seek() function in class:FstreamTest
  /external/zlib/
gzguts.h 107 /* seek request */
109 int seek; /* true if seek request pending */ member in struct:__anon14467
  /ndk/tests/device/test-gnustl-full/unit/
sstream_test.cpp 34 CPPUNIT_TEST(seek);
54 void seek();
386 void SstreamTest::seek() function in class:SstreamTest
fstream_test.cpp 45 CPPUNIT_TEST(seek);
75 void seek();
389 void FstreamTest::seek() function in class:FstreamTest
  /ndk/tests/device/test-stlport/unit/
sstream_test.cpp 34 CPPUNIT_TEST(seek);
54 void seek();
386 void SstreamTest::seek() function in class:SstreamTest
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_rwops.h 42 /* Seek to 'offset' relative to whence, one of stdio's whence values:
46 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
109 #define RW_SEEK_SET 0 /* Seek from the beginning of data */
110 #define RW_SEEK_CUR 1 /* Seek relative to current read point */
111 #define RW_SEEK_END 2 /* Seek relative to the end of data */
114 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
115 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_rwops.h 42 /* Seek to 'offset' relative to whence, one of stdio's whence values:
46 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
109 #define RW_SEEK_SET 0 /* Seek from the beginning of data */
110 #define RW_SEEK_CUR 1 /* Seek relative to current read point */
111 #define RW_SEEK_END 2 /* Seek relative to the end of data */
114 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
115 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
  /prebuilt/windows/sdl/include/SDL/
SDL_rwops.h 42 /* Seek to 'offset' relative to whence, one of stdio's whence values:
46 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
109 #define RW_SEEK_SET 0 /* Seek from the beginning of data */
110 #define RW_SEEK_CUR 1 /* Seek relative to current read point */
111 #define RW_SEEK_END 2 /* Seek relative to the end of data */
114 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
115 #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/src/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/src/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/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 270 void MediaPlayerPrivatePhonon::seek(float position) function in class:WebCore::MediaPlayerPrivatePhonon
272 LOG(Media, "MediaPlayerPrivatePhonon::seek(%f)", position);
280 m_mediaObject->seek(position * 1000.0f);
  /frameworks/base/libs/utils/
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 LOGW("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...]
  /system/extras/ext4_utils/
output_file.c 43 int (*seek)(struct output_file *, off64_t); member in struct:output_file_ops
93 .seek = file_seek,
131 .seek = gz_file_seek,
435 ret = out->ops->seek(out, len - 1);
459 ret = out->ops->seek(out, off);
491 ret = out->ops->seek(out, off);
541 ret = out->ops->seek(out, off);
  /system/media/wilhelm/src/android/
android_GenericPlayer.cpp 161 seek(0);
165 void GenericPlayer::seek(int64_t timeMsec) { function in class:android::GenericPlayer
166 SL_LOGV("GenericPlayer::seek %lld", timeMsec);
168 SL_LOGE("GenericPlayer::seek error, can't seek to negative time %lldms", timeMsec);
603 // if we observe the player position going backwards, even without without a seek, then recover
  /frameworks/base/core/java/android/webkit/
HTML5VideoViewProxy.java 56 private static final int SEEK = 101;
84 // The seek position.
225 public static void seek(int time, HTML5VideoViewProxy proxy) { method in class:HTML5VideoViewProxy.VideoPlayer
326 case SEEK: {
329 VideoPlayer.seek(mSeekPosition, this);
609 seek(position);
618 * Seek into the video stream.
621 public void seek(int time) { method in class:HTML5VideoViewProxy
622 Message message = obtainMessage(SEEK);
  /external/antlr/src/org/antlr/runtime/tree/
BufferedTreeNodeStream.java 326 seek(marker);
330 seek(lastMarker);
333 public void seek(int index) { method in class:BufferedTreeNodeStream
348 seek(index);
351 /** Seek back to previous index saved during last push() call.
356 seek(ret);
  /external/llvm/lib/Support/
raw_ostream.cpp 578 uint64_t raw_fd_ostream::seek(uint64_t off) { function in class:raw_fd_ostream
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundation.cpp 291 void MediaPlayerPrivateAVFoundation::seek(float time) function in class:WebCore::MediaPlayerPrivateAVFoundation
293 LOG(Media, "MediaPlayerPrivateAVFoundation::seek(%p) - seeking to %f", this, time);
589 // AVFoundation may call our observer more than once during a seek, and we can't currently tell
590 // if we will be able to seek to an exact time, so assume that we are done seeking if we are
591 // "close enough" to the seek time.
  /external/webkit/Source/WebCore/platform/network/
BlobResourceHandle.cpp 241 seek();
297 void BlobResourceHandle::seek() function in class:WebCore::BlobResourceHandle
  /external/webkit/Source/WebKit/android/WebCoreSupport/
MediaPlayerPrivateAndroid.cpp 120 void MediaPlayerPrivate::seek(float time) function in class:WebCore::MediaPlayerPrivate
149 m_duration(1), // keep this minimal to avoid initial seek problem
320 m_glue->m_seek = env->GetMethodID(clazz, "seek", "(I)V");
449 m_glue->m_seek = env->GetMethodID(clazz, "seek", "(I)V");
  /external/webkit/Source/WebKit/chromium/src/
WebMediaPlayerClientImpl.cpp 308 void WebMediaPlayerClientImpl::seek(float time) function in class:WebKit::WebMediaPlayerClientImpl
311 m_webMediaPlayer->seek(time);

Completed in 1093 milliseconds

12 3 4