/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/include/images/ |
SkMovie.h | 20 /** Try to create a movie from the stream. If the stream format is not 24 /** Try to create a movie from the specified file path. If the file is not 25 found, or the format is not supported, return NULL. If a movie is 26 returned, the stream may be retained by the movie (via ref()) until 27 the movie is finished with it (by calling unref()). 30 /** Try to create a movie from the specified memory. 31 If the format is not supported, return NULL. If a movie is returned, 43 from the movie. Returns true if this time code generated a different
|
/frameworks/base/graphics/java/android/graphics/ |
Movie.java | 22 public class Movie { 25 private Movie(int nativeMovie) { 27 throw new RuntimeException("native movie creation failed"); 45 public static native Movie decodeStream(InputStream is); 46 public static native Movie decodeByteArray(byte[] data, int offset, 51 public static Movie decodeFile(String pathName) { 71 private static Movie decodeTempStream(InputStream is) { 72 Movie moov = null;
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
MovieTest.java | 29 import android.graphics.Movie; 36 private Movie mMovie; 37 private final int MOVIE = com.android.cts.stub.R.drawable.animated; 46 mMovie = getActivity().getResources().getMovie(MOVIE); 69 mMovie = Movie.decodeFile(imagefile.getPath()); 73 mMovie = Movie.decodeFile("/no file path"); 82 source = getActivity().getResources().openRawResource(MOVIE); 115 InputStream is = getActivity().getResources().openRawResource(MOVIE); 117 mMovie = Movie.decodeByteArray(bytes, 0, bytes.length); 127 .openRawResource(MOVIE); [all...] |
/external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/ |
test.html | 4 <title>Netscape Core Animation Movie Plug-In</title> 10 type="test/x-netscape-core-animation-movie-plugin"></embed> 13 type="test/x-netscape-core-animation-movie-plugin"></embed>
|
Info.plist | 27 <key>test/x-netscape-core-animation-movie-plugin</key> 30 <string>Netscape Core Animation Movie Plug-in</string> 34 <string>Netscape Core Animation Movie Plug-in</string>
|
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...] |
/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/manual-tests/ |
audio-volume.html | 22 <p>TEST: Audio volume should be 0.05 when the movie begins playing.</p> 23 <input type="button" value="Load movie" onclick="load()">
|
show-hide-object.html | 16 The Flash movie hides when "Hide Flash" is clicked, and shows again when "Show Flash" is clicked. 20 The Flash movie hides when "Hide Flash" is clicked, but does not show again when "Show Flash" is clicked. Clicking on "Hide Flash" and then "Show Flash" again will show the movie. 53 <param name="movie" value="resources/spinbox.swf">
|
contenteditable-link.html | 4 <TITLE> Webkit bugzilla repro movie: #7156 </TITLE> 16 <P>Repro movie for bug <a href="http://bugs.webkit.org/show_bug.cgi?id=7156">#7156</a></P>
|
media-muted.html | 28 <input type="button" value="Load movie" onclick="load()">
|
/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...] |
/external/skia/src/ports/ |
SkImageDecoder_empty.cpp | 73 SkMovie* movie = gMovieProcs[i](stream); local 74 if (NULL != movie) { 75 return movie;
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-values/ |
webkit | 54 movie
|
/packages/apps/VideoEditor/src/com/android/videoeditor/ |
ExportOptionsDialog.java | 39 * @param movieHeight The movie height (from MediaProperties) 40 * @param movieBitrate The movie bitrate (from MediaProperties) 110 // Setup the movie size spinner 123 // Setup the movie quality spinner 138 * Convert the spinner selection to a movie height 143 * @return The movie height 152 * Convert the spinner selection to a movie quality 156 * @return The movie bitrate
|
/cts/tests/res/anim/ |
movie_test.xml | 19 <movie src="lineartest.xml"/>
|
/external/skia/src/animator/ |
SkDisplayMovie.h | 20 DECLARE_DISPLAY_MEMBER_INFO(Movie);
|
/packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
MovieTheme.java | 29 * Movie theme description 123 * @param previewMovieResId The preview movie 124 * @param beginTransition The movie begin transition 126 * @param endTransition The movie end transition 170 * @return The preview movie resource id
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
BitmapDecode.java | 45 private Movie mMovie; 106 mMovie = Movie.decodeStream(is); 109 mMovie = Movie.decodeByteArray(array, 0, array.length);
|
/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);
|
/external/webkit/Source/WebCore/manual-tests/plugins/ |
windowed-in-iframe.html | 12 in the upper left of the frame. When this page loads you should not see the Flash movie.
|
/packages/apps/VideoEditor/res/values/ |
strings.xml | 3 <string name="short_app_name">Movie Studio</string> 4 <string name="full_app_name">Android Movie Studio</string> 18 <!-- Menu item used to share the movie (e.g. to YouTube). --> 19 <string name="editor_share_movie">Share movie</string> 20 <!-- Menu item used to export the movie. --> 21 <string name="editor_export_movie">Export movie</string> 22 <!-- Menu item used to play the exported movie. --> 23 <string name="editor_play_exported_movie">Play exported movie</string> 24 <!-- Menu item used to change the aspect ratio of the movie. --> 129 <!-- Error message displayed in a toast if a movie cannot be applied. -- [all...] |