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 49 SkMovie* movie = curr->factory()(stream); local
50 if (movie) {
51 return movie;
54 // 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);
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 265 r = movie();
344 bool BootAnimation::movie() function in class:android::BootAnimation
  /external/webkit/WebKit/win/
FullscreenVideoController.cpp 191 if (movie())
192 movie()->exitFullscreen();
195 QTMovieWin* FullscreenVideoController::movie() const function in class:FullscreenVideoController
214 if (!movie())
217 m_videoWindow = movie()->enterFullscreen(this);
229 if (movie())
230 movie()->exitFullscreen();
  /external/webkit/WebCore/platform/graphics/win/
QTMovieWin.cpp 107 Movie m_movie;
260 // we only need to erase the movie gworld when the load state changes to loaded while it
416 // Do not change movie box before reaching load state loaded as we grab
418 // we need the initial size to be able to scale movie properly.
649 // FIXME: If we could determine the movie has no alpha, we could use BitBlt for those cases, which might be faster.
714 // Add the movie data location to the property array
782 // Set the aperture mode property on a movie to signal that we want aspect ratio
947 pascal OSErr movieDrawingCompleteProc(Movie movie, long data)
974 // look at all movie importers that can import in place and are installed.
1103 QTMovieWin* movie = static_cast<QTMovieWin*>(GetProp(wnd, fullscreenQTMovieWinPointerProp)); local
    [all...]
  /frameworks/base/core/java/android/content/res/
Resources.java 25 import android.graphics.Movie;
586 * Return a movie object associated with the particular resource ID.
593 public Movie getMovie(int id) throws NotFoundException {
595 Movie movie = Movie.decodeStream(is); local
602 return movie;
    [all...]

Completed in 881 milliseconds