HomeSort by relevance Sort by last modified time
    Searched defs:movie (Results 1 - 11 of 11) sorted by null

  /external/skia/src/images/
SkImageDecoder_Factory.cpp 63 SkMovie* movie = curr->factory()(stream); local
64 if (movie) {
65 return movie;
68 // movie, who may have already started reading from it
SkMovie.cpp 87 SkMovie* movie = NULL; local
91 movie = SkMovie::DecodeStream(&stream);
95 SkDebugf("Movie file not found <%s>\n", path);
99 return movie;
  /external/skia/src/ports/
SkImageDecoder_empty.cpp 81 SkMovie* movie = gMovieProcs[i](stream); local
82 if (NULL != movie) {
83 return movie;
  /external/skia/src/animator/
SkDisplayEvents.cpp 54 SkDisplayMovie* movie = (SkDisplayMovie*) *ptr; local
56 movie->doEvent(kind, state);
SkAnimateMaker.cpp 240 SkDisplayMovie* movie = (SkDisplayMovie*) displayable;
241 SkAnimateMaker* movieMaker = movie->fMovie.fMaker;
334 SkDisplayMovie* movie = (SkDisplayMovie*) *ptr; local
335 movie->fMovie.fMaker->setEnableTime(appTime, expectedTime);
SkDisplayPost.cpp 269 SkDisplayMovie* movie = (SkDisplayMovie*) displayable; local
270 fTargetMaker = movie->fMovie.fMaker;
SkAnimator.cpp 191 const SkDisplayMovie* movie = (const SkDisplayMovie*) displayable; local
192 return movie->getAnimator();
440 SkDisplayMovie* movie = (SkDisplayMovie*) *ptr; local
441 movie->doEvent(evt);
  /external/webkit/Source/WebCore/platform/graphics/win/
QTMovieVisualContext.cpp 52 QTMovie* movie() const;
143 void QTMovieVisualContextPriv::setMovie(PassRefPtr<QTMovie> movie)
145 if (movie == m_movie)
153 if (movie)
154 OSStatus status = SetMovieVisualContext(movie->getMovieHandle(), m_visualContext);
156 m_movie = movie;
159 QTMovie* QTMovieVisualContextPriv::movie() const function in class:QTMovieVisualContextPriv
210 void QTMovieVisualContext::setMovie(PassRefPtr<QTMovie> movie)
212 m_private->setMovie(movie);
215 QTMovie* QTMovieVisualContext::movie() cons function in class:QTMovieVisualContext
    [all...]
QTMovieGWorld.cpp 84 Movie m_movie;
143 pascal OSErr movieDrawingCompleteProc(Movie movie, long data)
241 // Do not change movie box before reaching load state loaded as we grab
243 // we need the initial size to be able to scale movie properly.
286 void QTMovieGWorldPrivate::movieLoadStateChanged(QTMovie* movie)
288 long loadState = GetMovieLoadState(movie->getMovieHandle());
291 // we only need to erase the movie gworld when the load state changes to loaded while it
359 // FIXME: If we could determine the movie has no alpha, we could use BitBlt for those cases, which might be faster.
381 QTMovieGWorld* movie = static_cast<QTMovieGWorld*>(GetPropW(wnd, fullscreenQTMovieGWorldPointerProp)) local
462 QTMovie* QTMovieGWorld::movie() const function in class:QTMovieGWorld
    [all...]
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 286 r = movie();
363 bool BootAnimation::movie() function in class:android::BootAnimation
  /frameworks/base/core/java/android/content/res/
Resources.java 25 import android.graphics.Movie;
713 * Return a movie object associated with the particular resource ID.
720 public Movie getMovie(int id) throws NotFoundException {
722 Movie movie = Movie.decodeStream(is); local
729 return movie;
    [all...]

Completed in 117 milliseconds