HomeSort by relevance Sort by last modified time
    Searched refs:naturalSize (Results 1 - 25 of 34) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayerPrivate.h 60 virtual IntSize naturalSize() const = 0;
MediaPlayer.cpp 98 virtual IntSize naturalSize() const { return IntSize(0, 0); }
473 IntSize MediaPlayer::naturalSize()
475 return m_private->naturalSize();
MediaPlayer.h 186 IntSize naturalSize();
  /external/webkit/Source/WebCore/platform/graphics/wince/
MediaPlayerPrivateWinCE.h 49 IntSize naturalSize() const;
  /external/webkit/Source/WebKit/chromium/public/
WebMediaPlayer.h 117 virtual WebSize naturalSize() const = 0;
  /external/webkit/Source/WebCore/html/
HTMLVideoElement.cpp 144 return player()->naturalSize().width();
151 return player()->naturalSize().height();
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
MediaPlayerPrivateAndroid.h 51 virtual IntSize naturalSize() const { return m_naturalSize; }
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.h 81 IntSize naturalSize() const;
MediaPlayerPrivateQt.h 88 IntSize naturalSize() const;
MediaPlayerPrivatePhonon.cpp 437 IntSize MediaPlayerPrivatePhonon::naturalSize() const
440 LOG(Media, "MediaPlayerPrivatePhonon::naturalSize() -> %dx%d",
446 LOG(Media, "MediaPlayerPrivatePhonon::naturalSize() -> %dx%d",
452 IntSize naturalSize(videoSize.width(), videoSize.height());
453 LOG(Media, "MediaPlayerPrivatePhonon::naturalSize() -> %dx%d",
454 naturalSize.width(), naturalSize.height());
455 return naturalSize;
  /external/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.mm 867 IntSize MediaPlayerPrivateQTKit::naturalSize() const
879 FloatSize naturalSize([[m_qtMovie.get() attributeForKey:QTMovieNaturalSizeAttribute] sizeValue]);
880 if (naturalSize.isEmpty() && m_isStreaming) {
884 naturalSize = m_cachedNaturalSize;
887 // event when this happens, so we must cache the last valid naturalSize here:
888 m_cachedNaturalSize = naturalSize;
891 return IntSize(naturalSize.width() * m_scaleFactor.width(), naturalSize.height() * m_scaleFactor.height());
    [all...]
MediaPlayerPrivateQTKit.h 86 IntSize naturalSize() const;
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
MediaPlayerPrivateGStreamer.h 53 IntSize naturalSize() const;
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.h 84 IntSize naturalSize() const;
MediaPlayerPrivateQuickTimeVisualContext.h 73 IntSize naturalSize() const;
MediaPlayerPrivateQuickTimeVisualContext.cpp 121 FloatSize naturalSize = m_parent->naturalSize();
124 FloatSize ratio(parentSize.width() / naturalSize.width(), parentSize.height() / naturalSize.height());
499 IntSize MediaPlayerPrivateQuickTimeVisualContext::naturalSize() const
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebMediaPlayerClientImpl.h 94 virtual WebCore::IntSize naturalSize() const;
WebMediaPlayerClientImpl.cpp 267 IntSize WebMediaPlayerClientImpl::naturalSize() const
270 return m_webMediaPlayer->naturalSize();
  /external/webkit/Source/WebCore/rendering/
RenderMediaControls.cpp 48 #define wkMeasureMediaUIPart(part, themeStyle, bounds, naturalSize) WKMeasureMediaUIPart(part, themeStyle, bounds, naturalSize)
RenderVideo.cpp 113 return player->naturalSize();
  /external/chromium/webkit/glue/
webmediaplayer_impl.h 226 virtual WebKit::WebSize naturalSize() const;
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundation.h 126 virtual IntSize naturalSize() const;
MediaPlayerPrivateAVFoundationObjC.mm 676 // AVAsset's 'naturalSize' property only considers the movie's first video track, so we need to compute
680 CGSize trackSize = [track naturalSize];
689 CGSize naturalSize = CGSizeApplyAffineTransform(trackUnionRect.size, [m_avAsset.get() preferredTransform]);
692 setNaturalSize(IntSize(naturalSize));
700 @"naturalSize",
  /external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
WebKitSystemInterface.h 231 void WKMeasureMediaUIPart(int part, int themeStyle, CGRect *bounds, CGSize *naturalSize);
  /external/webkit/Source/WebCore/platform/mac/
WebCoreSystemInterface.mm 48 void (*wkMeasureMediaUIPart)(int part, int themeStyle, CGRect *bounds, CGSize *naturalSize);

Completed in 4824 milliseconds

1 2