HomeSort by relevance Sort by last modified time
    Searched full:slide (Results 1 - 25 of 261) sorted by null

1 2 3 4 5 6 7 8 91011

  /packages/apps/Mms/src/com/android/mms/ui/
MmsThumbnailPresenter.java 44 SlideModel slide = ((SlideshowModel) mModel).get(0); local
45 if (slide != null) {
46 presentFirstSlide((SlideViewInterface) mView, slide);
50 private void presentFirstSlide(SlideViewInterface view, SlideModel slide) {
53 if (slide.hasImage()) {
54 presentImageThumbnail(view, slide.getImage());
55 } else if (slide.hasVideo()) {
56 presentVideoThumbnail(view, slide.getVideo());
57 } else if (slide.hasAudio()) {
58 presentAudioThumbnail(view, slide.getAudio())
108 SlideModel slide = ((SlideshowModel) mModel).get(0); local
    [all...]
SlideshowEditor.java 35 * An utility to edit contents of a slide.
55 * Add a new slide to the end of message.
57 * @return true if success, false if reach the max slide number.
65 * Add a new slide at the specified position in the message.
67 * @return true if success, false if reach the max slide number.
74 SlideModel slide = new SlideModel(mModel); local
79 slide.add(text);
81 mModel.add(position, slide);
89 * Add an existing slide at the specified position in the message.
91 * @return true if success, false if reach the max slide number
148 SlideModel slide = mModel.get(position); local
169 SlideModel slide = mModel.get(position); local
177 SlideModel slide = mModel.get(position); local
    [all...]
SlideEditorActivity.java 67 * This activity allows user to edit the contents of a slide.
162 // Confirm that we have at least 1 slide to display
284 SlideModel slide = mSlideshowModel.get(mPosition);
285 if (slide != null && slide.hasVideo()) {
346 SlideModel slide = mSlideshowModel.get(mPosition); local
348 if (slide == null) {
357 if (slide.hasText() && !TextUtils.isEmpty(slide.getText().getText())) {
364 if (slide.hasImage())
430 SlideModel slide = mSlideshowModel.get(mPosition); local
    [all...]
SlideshowEditActivity.java 118 Log.e(TAG, "Failed to initialize the slide-list.", e);
129 // Add slide.
231 // Selected one slide.
314 // Select the new slide.
346 Log.e(TAG, "Failed to initialize the slide-list.", e);
380 // Show slide number.
385 SlideModel slide = getItem(position); local
386 int dur = slide.getDuration() / 1000;
420 // Selected one slide.
AdaptableSlideViewInterface.java 21 * The view interface of a slide which elements can be resize.
AttachmentEditor.java 149 SlideModel slide = mSlideshow.get(0); local
150 if (slide.hasImage()) {
156 } else if (slide.hasVideo()) {
162 } else if (slide.hasAudio()) {
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
index.html 145 var slide = channelSlides.children[slideIndex];
148 channel < slideChannel(slide)) {
149 // Add a new slide.
157 channelSlides.insertBefore(newSlide, slide);
163 slide = newSlide;
164 } else if (!channel || channel > slideChannel(slide)) {
165 // Delete a removed slide.
167 // If the removed slide is the current slide, we have to pick a new
168 // current slide
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 96 for (SlideModel slide : mSlides) {
97 increaseMessageSize(slide.getSlideSize());
98 slide.setParent(this);
142 // Create slide models.
154 // Create media models for each slide.
166 * This is for slide duration value set.
167 * If mms server does not support slide duration.
187 * because the mmsc does not support the slide duration.
192 * If a slide has an image and an audio/video element
194 * The Image disappear before the slide play done. so have to matc
220 SlideModel slide = new SlideModel((int) (par.getDur() * 1000), mediaSet); local
453 SlideModel slide = (SlideModel) object; local
523 SlideModel slide = mSlides.remove(location); local
533 SlideModel slide = mSlides.get(location); local
    [all...]
SlideModel.java 73 * @param duration The duration of the slide.
77 * be added into the slide due to a slide cannot contain image
270 * Add a MediaModel to the slide. If the slide has already contained
274 * @param object A media object to be added into the slide.
277 * be added into the slide due to a slide cannot contain image
466 Log.v(TAG, "Start to play slide: " + this);
471 Log.v(TAG, "Stop playing slide: " + this)
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
SoftLandingInterpolator.java 30 private final DecelerateInterpolator slide; field in class:SoftLandingInterpolator
39 slide = new DecelerateInterpolator();
50 final float s = slide.getInterpolation((input - bottom) / upperRange) * (1f - mO) + mO;
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SlideshowDataAdapter.java 21 import com.android.gallery3d.app.SlideshowPage.Slide;
58 private final LinkedList<Slide> mImageQueue = new LinkedList<Slide>();
137 new Slide(item, mLoadIndex, bitmap));
159 private synchronized Slide innerNextBitmap() {
174 public Future<Slide> nextSlide(FutureListener<Slide> listener) {
175 return mThreadPool.submit(new Job<Slide>() {
177 public Slide run(JobContext jc) {
SlideshowPage.java 64 public Future<Slide> nextSlide(FutureListener<Slide> listener);
67 public static class Slide {
72 public Slide(MediaItem item, int index, Bitmap bitmap) {
83 private Slide mPendingSlide = null;
143 mModel.nextSlide(new FutureListener<Slide>() {
145 public void onFutureDone(Future<Slide> future) {
156 Slide slide = mPendingSlide; local
157 if (slide == null)
    [all...]
  /external/webkit/Source/WebCore/manual-tests/
transition-delay.html 25 #container.slide > .box {
47 <div id="container" onclick="this.className = 'slide'">
animate-duration.html 25 -webkit-animation-name: "slide";
40 @-webkit-keyframes slide {
  /external/chromium/chrome/browser/ui/gtk/
slide_animator_gtk.h 46 // |duration| is the duration of the slide in milliseconds, or 0 for default.
48 // velocity of the slide is constant over time, otherwise it goes a bit faster
62 // Slide open.
68 // Slide shut.
108 // The direction of the slide.
fullscreen_exit_bubble_gtk.h 42 // The widget that animates the slide-out of fullscreen exit bubble.
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeyboardStateSingleTouchTests.java 353 // Press and slide from shift key, enter alphabet shifted.
360 // Press and slide from "123?" key, enter symbols.
369 // Press and slide from shift key, remain alphabet shifted.
378 // Press and slide from "123?" key, enter symbols.
388 // Press and slide from "123?" key, enter symbols.
395 // Press and slide from shift key, enter alphabet shifted.
405 // Press and slide from shift key, enter alphabet shifted.
407 // Press and slide from shift key, enter alphabet shifted.
415 // Press and slide from "123?" key, enter symbols.
425 // Press and slide from shift key, remain alphabet shifted
    [all...]
  /packages/apps/Gallery/res/values-in/
strings.xml 46 <string name="slide_show" msgid="1965192737233824143">"Rangkai slide"</string>
70 <string name="pref_slideshow_category" msgid="9097962086335681667">"Setelan rangkai slide"</string>
85 <string name="pref_gallery_slideshow_interval_title" msgid="6534904787962619832">"Interval rangkai slide"</string>
86 <string name="pref_gallery_slideshow_interval_summary" msgid="25973922639324614">"Pilih berapa lama masing-masing slide ditampilkan"</string>
87 <string name="pref_gallery_slideshow_interval_dialogtitle" msgid="6775543119826248900">"Interval rangkai slide"</string>
93 <string name="pref_gallery_slideshow_transition_title" msgid="3235158556228218846">"Transisi rangkai slide"</string>
94 <string name="pref_gallery_slideshow_transition_summary" msgid="8294295294239125591">"Pilih efek yang digunakan saat berpindah antar-slide"</string>
95 <string name="pref_gallery_slideshow_transition_dialogtitle" msgid="5483406447721500371">"Transisi rangkai slide"</string>
102 <string name="pref_gallery_slideshow_repeat_title" msgid="6512135022461429738">"Ulangi rangkai slide"</string>
103 <string name="pref_gallery_slideshow_repeat_summary" msgid="8289230397431855268">"Putar rangkai slide lebih dari satu kali"</string
    [all...]
  /frameworks/base/docs/html/training/animation/
screen-slide.jd 33 automatically. Here's what a screen slide looks like that transitions from
46 Screen slide animation
52 and run the sample app and select the Screen Slide example. See the
106 through pages, and they display screen slide animations by default, so you don't need to create any. {@link android.support.v4.view.ViewPager}s use
201 <p>To display a different animation from the default screen slide animation, implement the
210 you can then create custom slide animations by determining which pages need to be transformed based on the
216 When a page is drawn just off the right side of the screen, its position value is <code>1</code>. If the user scrolls halfway between pages one and two, page one has a position of -0.5 and page two has a position of 0.5. Based on the position of the pages on the screen, you can create custom slide animations by setting page properties with methods such as {@link android.view.View#setAlpha setAlpha()}, {@link android.view.View#setTranslationX setTranslationX()}, or
272 // Modify the default slide transition to shrink the page as well
301 This page transformer uses the default slide animation for sliding pages
319 <p class="note"><strong>Note:</strong> During the depth animation, the default animation (a screen slide) stil
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
carousel.js 136 droid(slideName); // do this function when slide is clicked
141 var slideWidth = 144; // width of a slide including all margins, etc.
142 var slidesAtOnce = 3; // no. of slides to appear at once (requires odd number to have a centered slide)
154 // - determines the centering point of the slide strip
178 function slide(goal, id, go_left, cp) { function
286 slide(motionDistance, slideList, 0, currentStripPosition);
291 slide(motionDistance, slideList, 1, rightStripPosition);
  /external/chromium/chrome/browser/ui/views/
fullscreen_exit_bubble.h 45 // Height of region triggering slide-in
46 static const int kSlideInDurationMs; // Duration of slide-in animation
47 static const int kSlideOutDurationMs; // Duration of slide-out animation
  /device/samsung/toroplus/overlay/packages/apps/Mms/res/xml/
mms_config.xml 34 <!-- If true, The mms support slide duration.
35 If false, The mms does not support slide duration and we have to
  /external/chromium/chrome/browser/ui/cocoa/
table_row_nsimage_cache.mm 46 [icon_images_ insertPointer:NULL atIndex:start]; // Values slide up.
56 [icon_images_ removePointerAtIndex:start]; // Values slide down.
  /packages/apps/Mms/res/values/
strings.xml 109 <!-- Button text on edit slide screen indicating the user wants to finish editing that slide -->
112 <!-- Menu item in slideshow edit screen for moving the selected slide up in the order -->
114 <!-- Menu item in slideshow edit screen for moving the selected slide down in the order -->
116 <!-- Menu item in slideshow edit screen for removing the selected slide from the slideshow -->
117 <string name="remove_slide">Remove slide</string>
118 <!-- Menu item in slideshow edit screen for adding a new slide to the slideshow -->
119 <string name="add_slide">Add slide</string>
120 <!-- Text displayed below "Add slide" item in slideshow edit screen -->
121 <string name="add_slide_hint">Touch to create new slide.</string
    [all...]
  /packages/apps/Mms/src/com/android/mms/data/
WorkingMessage.java 133 // i.e. not SLIDESHOW, it will contain only one slide.
259 SlideModel slide = mSlideshow.get(0); local
260 if (slide.hasImage()) {
262 } else if (slide.hasVideo()) {
264 } else if (slide.hasAudio()) {
425 * @param append true if we should add the attachment to a new slide
439 // use slide[0] as a special case. The call to ensureSlideshow below makes sure there's
440 // a slide zero. In the case of an already attached slideshow, ensureSlideshow will do
448 // Make sure mSlideshow is set up and has a slide.
477 // because a replace that fails, removes the slide
552 SlideModel slide = new SlideModel(slideshow); local
569 SlideModel slide = mSlideshow.get(0); \/\/ get the new empty slide local
747 SlideModel slide = mSlideshow.get(0); local
    [all...]

Completed in 441 milliseconds

1 2 3 4 5 6 7 8 91011