Searched refs:seekable (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.10/WebCore-7600.1.25/html/
H A DMediaController.idl34 readonly attribute TimeRanges seekable;
H A DMediaControllerInterface.h45 virtual PassRefPtr<TimeRanges> seekable() const = 0;
H A DMediaController.cpp102 PassRefPtr<TimeRanges> MediaController::seekable() const function in class:MediaController
107 // The seekable attribute must return a new static normalized TimeRanges object that represents
110 RefPtr<TimeRanges> seekableRanges = m_mediaElements.first()->seekable();
112 seekableRanges->intersectWith(*m_mediaElements[index]->seekable().get());
H A DMediaController.h58 virtual PassRefPtr<TimeRanges> seekable() const override;
H A DHTMLMediaElement.idl72 readonly attribute TimeRanges seekable;
H A DHTMLMediaElement.h183 virtual PassRefPtr<TimeRanges> seekable() const override;
H A DHTMLMediaElement.cpp2426 // seekable attribute, then let it be the position in one of the ranges given in the seekable attribute
2427 // that is the nearest to the new playback position. ... If there are no ranges given in the seekable
2429 RefPtr<TimeRanges> seekableRanges = seekable();
4379 PassRefPtr<TimeRanges> HTMLMediaElement::seekable() const function in class:WebCore::HTMLMediaElement
4382 return TimeRanges::create(*m_player->seekable());
4449 RefPtr<TimeRanges> seekableRanges = seekable();
/macosx-10.10/tcl-105/tcl_ext/snack/snack/generic/
H A DSnackOgg.c80 int seekable; member in struct:OggVorbis_File
85 /* If the FILE handle isn't seekable (eg, a pipe), only the current
612 vorbis_info structs and PCM positions. Only called by the seekable
720 if(vf->seekable){
833 int link=(vf->seekable?vf->current_link:0);
849 if(vf->seekable && link>0)
884 if(!vf->seekable){
893 /* This is different in the seekable and non-seekable cases.
895 In the seekable cas
[all...]
/macosx-10.10/gnutar-453/gnutar/src/
H A Dsparse.c51 bool seekable; /* Is fd seekable? */ member in struct:tar_sparse_file
52 off_t offset; /* Current offset in fd if seekable==false.
63 lseek if the output file is not seekable */
179 if (file->seekable
348 if (file->seekable && sys_truncate (file->fd))
392 file.seekable = true; /* File *must* be seekable for dump to work */
448 file.seekable = lseek (fd, 0, SEEK_SET) == 0;
569 file.seekable
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gstreamer/
H A DWebKitMediaSourceGStreamer.cpp66 gboolean seekable; member in struct:_WebKitMediaSrcPrivate
249 priv->seekable = FALSE;
288 priv->seekable = FALSE;
632 if (!priv->seekable) {
665 if (!priv->seekable) {
H A DWebKitWebSourceGStreamer.cpp137 gboolean seekable; member in struct:_WebKitWebSrcPrivate
425 priv->seekable = FALSE;
751 if (!priv->seekable)
850 priv->seekable = length > 0 && g_ascii_strcasecmp("none", response.httpHeaderField(HTTPHeaderName::AcceptRanges).utf8().data());
/macosx-10.10/less-25/less/
H A Dch.c668 * data. They are sometimes, but not always, seekable.
669 * Force them to be non-seekable here.
753 seekable(f) function
761 * In MS-DOS, pipes are seekable. Check for
762 * standard input, and pretend it is not seekable.
802 if ((flags & CH_CANSEEK) && !seekable(f))
H A Dfuncs.h48 public int seekable ();
H A Dfilename.c478 if (!seekable(f))
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DMediaPlayerPrivate.h125 virtual std::unique_ptr<PlatformTimeRanges> seekable() const { return maxTimeSeekableDouble() ? PlatformTimeRanges::create(MediaTime::createWithDouble(minTimeSeekable()), MediaTime::createWithDouble(maxTimeSeekableDouble())) : PlatformTimeRanges::create(); } function in class:WebCore::MediaPlayerPrivateInterface
H A DMediaPlayer.h384 std::unique_ptr<PlatformTimeRanges> seekable();
H A DMediaPlayer.cpp715 std::unique_ptr<PlatformTimeRanges> MediaPlayer::seekable() function in class:WebCore::MediaPlayer
717 return m_private->seekable();
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/objc/
H A DMediaPlayerPrivateMediaSourceAVFObjC.h124 virtual std::unique_ptr<PlatformTimeRanges> seekable() const override;
H A DMediaPlayerPrivateMediaSourceAVFObjC.mm524 std::unique_ptr<PlatformTimeRanges> MediaPlayerPrivateMediaSourceAVFObjC::seekable() const
/macosx-10.10/WebCore-7600.1.25/platform/ios/
H A DWebVideoFullscreenModelMediaElement.mm125 // FIXME: 130788 - find a better event to update seekable ranges from.
126 m_videoFullscreenInterface->setSeekableRanges(*m_mediaElement->seekable());
/macosx-10.10/WebCore-7600.1.25/plugins/
H A Dnpfunctions.h102 typedef NPError (*NPP_NewStreamProcPtr)(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype);
H A Dnpapi.h783 NPStream* stream, NPBool seekable,
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/
H A DNetscapePlugin.h136 NPError NPP_NewStream(NPMIMEType, NPStream*, NPBool seekable, uint16_t* stype);
H A DNetscapePlugin.cpp417 NPError NetscapePlugin::NPP_NewStream(NPMIMEType mimeType, NPStream* stream, NPBool seekable, uint16_t* streamType) argument
419 return m_pluginModule->pluginFuncs().newstream(&m_npp, mimeType, stream, seekable, streamType);
/macosx-10.10/WebCore-7600.1.25/Modules/mediacontrols/
H A DmediaControlsApple.js711 this.video.seekable.start(0));

Completed in 419 milliseconds

12