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 55 SkMovie* movie = curr->factory()(stream); local
56 if (movie) {
57 return movie;
60 // movie, who may have already started reading from it
SkMovie.cpp 94 SkMovie* movie = NULL; local
98 movie = SkMovie::DecodeStream(&stream);
102 SkDebugf("Movie file not found <%s>\n", path);
106 return movie;
  /external/skia/src/ports/
SkImageDecoder_empty.cpp 73 SkMovie* movie = gMovieProcs[i](stream); local
74 if (NULL != movie) {
75 return movie;
  /external/skia/src/animator/
SkDisplayEvents.cpp 46 SkDisplayMovie* movie = (SkDisplayMovie*) *ptr; local
48 movie->doEvent(kind, state);
SkAnimateMaker.cpp 234 SkDisplayMovie* movie = (SkDisplayMovie*) displayable;
235 SkAnimateMaker* movieMaker = movie->fMovie.fMaker;
328 SkDisplayMovie* movie = (SkDisplayMovie*) *ptr; local
329 movie->fMovie.fMaker->setEnableTime(appTime, expectedTime);
SkDisplayPost.cpp 261 SkDisplayMovie* movie = (SkDisplayMovie*) displayable; local
262 fTargetMaker = movie->fMovie.fMaker;
SkAnimator.cpp 183 const SkDisplayMovie* movie = (const SkDisplayMovie*) displayable; local
184 return movie->getAnimator();
432 SkDisplayMovie* movie = (SkDisplayMovie*) *ptr; local
433 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 298 r = movie();
390 bool BootAnimation::movie() function in class:android::BootAnimation
  /frameworks/base/core/java/android/content/res/
Resources.java 25 import android.graphics.Movie;
707 * Return a movie object associated with the particular resource ID.
714 public Movie getMovie(int id) throws NotFoundException {
716 Movie movie = Movie.decodeStream(is); local
723 return movie;
    [all...]

Completed in 210 milliseconds