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

12 3

  /external/webkit/WebKit/chromium/src/
WebMediaPlayerClientImpl.cpp 206 void WebMediaPlayerClientImpl::seek(float time) function in class:WebKit::WebMediaPlayerClientImpl
209 m_webMediaPlayer->seek(time);
  /frameworks/base/awt/javax/imageio/stream/
FileCacheImageOutputStream.java 154 raf.seek(readFromPos);
173 raf.seek(streamPos); // Reset the position
178 public void seek(long pos) throws IOException { method in class:FileCacheImageOutputStream
183 raf.seek(pos);
ImageInputStreamImpl.java 272 public void seek(long pos) throws IOException { method in class:ImageInputStreamImpl
275 throw new IllegalArgumentException("trying to seek before flushed pos");
297 seek(p);
  /frameworks/base/libs/utils/
Asset.cpp 291 * Do generic seek() housekeeping. Pass in the offset/whence values from
292 * the seek request, along with the current chunk offset and the chunk
295 * Returns the new chunk offset, or -1 if the seek is illegal.
319 LOGW("seek out of range: want %ld, end=%ld\n",
363 * Seek to end to get file length.
388 /* seek the FILE* to the start of chunk */
482 * Seek to a new position.
484 off_t _FileAsset::seek(off_t offset, int whence) function in class:_FileAsset
768 * Handle a seek request.
774 off_t _CompressedAsset::seek(off_t offset, int whence function in class:_CompressedAsset
    [all...]
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
mistream.h 86 inline void seek (uoff_t newPos);
104 inline void ungetc (void) { seek (pos() - 1); }
143 inline istream_iterator& operator-- (void) { m_pis->seek (m_pis->pos() - 2 * stream_size_of(m_v)); return (operator++()); }
147 inline istream_iterator& operator-= (size_type n) { m_pis->seek (m_pis->pos() - (n + 1) * stream_size_of(m_v)); return (operator++()); }
174 inline void istream::seek (uoff_t newPos) function in class:ustl::istream
188 seek (distance (begin(), newPos));
195 case beg: seek (p); break;
196 case cur: seek (pos() + p); break;
197 case ios_base::end: seek (size() - p); break;
204 seek (pos() + nBytes)
    [all...]
  /frameworks/base/core/java/android/webkit/
HTML5VideoViewProxy.java 66 private static final int SEEK = 101;
92 // The seek position.
210 public static void seek(int time, HTML5VideoViewProxy proxy) { method in class:HTML5VideoViewProxy.VideoPlayer
283 case SEEK: {
286 VideoPlayer.seek(mSeekPosition, this);
527 * Seek into the video stream.
530 public void seek(int time) { method in class:HTML5VideoViewProxy
531 Message message = obtainMessage(SEEK);
  /external/skia/src/core/
SkStream.cpp 303 // if buffer is NULL, seek ahead by size
326 size_t SkMemoryStream::seek(size_t offset) function in class:SkMemoryStream
  /external/stlport/test/unit/
fstream_test.cpp 45 CPPUNIT_TEST(seek);
75 void seek();
371 void FstreamTest::seek() function in class:FstreamTest
  /external/webkit/WebKit/android/WebCoreSupport/
MediaPlayerPrivateAndroid.cpp 144 void MediaPlayerPrivate::seek(float time) function in class:WebCore::MediaPlayerPrivate
306 m_glue->m_seek = env->GetMethodID(clazz, "seek", "(I)V");
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
FileChannelImpl.java 216 return fileSystem.seek(handle, 0L, IFileSystem.SEEK_CUR);
230 fileSystem.seek(handle, newPosition, IFileSystem.SEEK_SET);
388 long currentPosition = fileSystem.seek(handle, 0L,
390 long endOfFilePosition = fileSystem.seek(handle, 0L,
392 fileSystem.seek(handle, currentPosition, IFileSystem.SEEK_SET);
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 72 seek(0);
86 seek(8+4+20+4+4);
99 seek(8+4+20); // magic, checksum, signature
135 seek(mHeaderItem.stringIdsOff);
142 seek(stringOffsets[0]);
144 seek(stringOffsets[i]); // should be a no-op
158 seek(mHeaderItem.typeIdsOff);
176 seek(mHeaderItem.protoIdsOff);
203 seek(offset);
222 seek(mHeaderItem.fieldIdsOff)
425 void seek(int position) throws IOException { method in class:DexData
    [all...]
  /external/opencore/nodes/pvprotocolenginenode/protocol_common/src/
pvmf_protocol_engine_common.h 32 virtual void seek(const uint32 aSeekPosition) = 0;
276 virtual void seek(const uint32 aSeekPosition) function in class:ProtocolState
475 virtual void seek(const uint32 aSeekPosition) function in class:HttpBasedProtocol
477 iCurrState->seek(aSeekPosition);
  /external/webkit/WebCore/platform/graphics/
MediaPlayer.cpp 83 virtual void seek(float) { } function in class:WebCore::NullMediaPlayerPrivate
314 void MediaPlayer::seek(float time) function in class:WebCore::MediaPlayer
316 m_private->seek(time);
  /external/webkit/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.cpp 220 void MediaPlayerPrivate::seek(float time) function in class:WebCore::MediaPlayerPrivate
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
RandomAccessFileTest.java 326 raf.seek(0);
475 raf.seek(0);
529 raf.seek(0);
589 raf.seek(0);
646 raf.seek(0);
697 raf.seek(0);
751 raf.seek(0);
811 raf.seek(0);
871 raf.seek(0);
927 raf.seek(0)
    [all...]
  /external/blktrace/btt/doc/
btt.tex 232 \item[Device Seek Information]
243 The first of the two sections displays values for Q2Q seek distances --
245 are to each other. The second section shows D2D seek distances --
467 \item[seek details] A set of data files containing all IO-to-IO
469 section~\ref{sec:seek}.
687 \newpage\section{\label{sec:seek}Seek Data Files}
690 deltas, providing seek information which can then be plotted. The
696 \item Read data -- just seek deltas for reads
698 \item Write data -- just seek deltas for write
    [all...]
  /external/webkit/WebCore/platform/graphics/gtk/
MediaPlayerPrivateGStreamer.cpp 416 void MediaPlayerPrivate::seek(float time) function in class:WebCore::MediaPlayerPrivate
432 LOG_VERBOSE(Media, "Seek: %" GST_TIME_FORMAT, GST_TIME_ARGS(sec));
438 LOG_VERBOSE(Media, "Seek to %f failed", time);
    [all...]
  /external/webkit/WebCore/html/
HTMLMediaElement.cpp 473 m_player->seek(0);
844 m_player->seek(0);
941 void HTMLMediaElement::seek(float time, ExceptionCode& ec) function in class:WebCore::HTMLMediaElement
984 m_player->seek(time);
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 195 seek(0);
236 seek(0);
509 seek(seekpos >= 0 && seekpos < duration() ? seekpos : 0);
597 seek(0);
613 seek(0);
1680 public long seek(long pos) { method in class:MediaPlaybackService
1828 public long seek(long whereto) { method in class:MediaPlaybackService.MultiPlayer
1921 public long seek(long pos) { method in class:MediaPlaybackService.ServiceStub
    [all...]
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 1226 milliseconds

12 3