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

1 2

  /frameworks/base/core/jni/android/graphics/
Movie.cpp 30 static SkMovie* J2Movie(JNIEnv* env, jobject movie) {
32 SkASSERT(movie);
33 SkASSERT(env->IsInstanceOf(movie, gMovie_class));
34 SkMovie* m = (SkMovie*)env->GetIntField(movie, gMovie_nativeInstanceID);
41 static int movie_width(JNIEnv* env, jobject movie) {
42 NPE_CHECK_RETURN_ZERO(env, movie);
43 return J2Movie(env, movie)->width();
46 static int movie_height(JNIEnv* env, jobject movie) {
47 NPE_CHECK_RETURN_ZERO(env, movie);
48 return J2Movie(env, movie)->height()
    [all...]
  /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/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.h 75 QTMovie* movie() const;
QTMovieVisualContext.h 67 QTMovie* movie() const;
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...]
MediaPlayerPrivateQuickTimeWin.cpp 173 // WebCore loaded the page with the movie URL with CFNetwork but QuickTime will
174 // use WinINet to download the movie, so we need to copy any cookies needed to
175 // download the movie into WinInet before asking QuickTime to open it.
471 // Cancel the load by destroying the movie.
489 // element, eg. QuickTime VR, a movie with a sprite track, etc. Tell the
718 void MediaPlayerPrivate::movieEnded(QTMovie* movie)
723 ASSERT(m_qtMovie.get() == movie);
727 void MediaPlayerPrivate::movieLoadStateChanged(QTMovie* movie)
732 ASSERT(m_qtMovie.get() == movie);
736 void MediaPlayerPrivate::movieTimeChanged(QTMovie* movie)
    [all...]
MediaPlayerPrivateQuickTimeVisualContext.cpp 259 // WebCore loaded the page with the movie URL with CFNetwork but QuickTime will
260 // use WinINet to download the movie, so we need to copy any cookies needed to
261 // download the movie into WinInet before asking QuickTime to open it.
617 // Cancel the load by destroying the movie.
635 // element, eg. QuickTime VR, a movie with a sprite track, etc. Tell the
    [all...]
  /external/skia/src/ports/
SkImageDecoder_empty.cpp 73 SkMovie* movie = gMovieProcs[i](stream); local
74 if (NULL != movie) {
75 return movie;
  /external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
MovieControllerLayer.h 69 - (void)setMovie:(QTMovie *)movie;
main.m 72 QTMovie *movie;
176 [obj->movie stop];
238 if (!obj->movie)
241 if ([obj->movie rate] == 0)
242 [obj->movie play];
244 [obj->movie stop];
282 // Hide the controller layer if the movie is playing.
283 if ([obj->movie rate])
304 [obj->movie stepForward];
306 [obj->movie stepBackward]
    [all...]
MovieControllerLayer.m 186 #pragma mark Movie handling
251 - (void)setMovie:(QTMovie *)movie
253 if (_movie == movie)
266 _movie = [movie retain];
  /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);
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 84 bool movie();
BootAnimation.cpp 298 r = movie();
390 bool BootAnimation::movie() function in class:android::BootAnimation
  /external/webkit/WebKitLibraries/
WebKitSystemInterface.h 222 int WKQTMovieGetType(QTMovie* movie);
224 BOOL WKQTMovieHasClosedCaptions(QTMovie* movie);
225 void WKQTMovieSetShowClosedCaptions(QTMovie* movie, BOOL showClosedCaptions);
226 void WKQTMovieSelectPreferredAlternates(QTMovie* movie);
227 void WKQTMovieSelectPreferredAlternateTrackForMediaType(QTMovie* movie, NSString* mediaType);
230 int WKQTMovieDataRate(QTMovie* movie);
231 float WKQTMovieMaxTimeLoaded(QTMovie* movie);
232 float WKQTMovieMaxTimeSeekable(QTMovie* movie);
  /packages/apps/Mms/src/com/android/mms/ui/
SlideListItemView.java 117 mAttachmentIcon.setImageResource(R.drawable.movie);
  /external/webkit/Source/WebKit/mac/WebView/
WebVideoFullscreenController.mm 159 ASSERT([movieLayer movie]);
163 object:[movieLayer movie]];
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
MovieActivity.java 152 getMenuInflater().inflate(R.menu.movie, menu);
  /packages/apps/Music/src/com/android/music/
MediaPickerActivity.java 291 iv.setImageResource(R.drawable.movie);
  /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 654 milliseconds

1 2