HomeSort by relevance Sort by last modified time
    Searched full:slide (Results 1 - 25 of 378) 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...]
  /frameworks/base/tests/TransitionTests/res/transition/
login_slider_transition.xml 2 <slide>
7 </slide>
19 slider.addTransition(new Slide(R.id.retype, R.id.retypeEdit));
  /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...]
  /external/chromium_org/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...]
  /external/chromium_org/ui/base/animation/
throb_animation.h 12 // A subclass of SlideAnimation that can continually slide. All of the Animation
28 // Sets the duration of the slide animation when throbbing.
31 // Overridden to reset to the slide duration.
37 // Overridden to maintain the slide duration.
52 // Duration of the slide animation.
55 // Duration of the slide animation when throbbing.
slide_animation.h 13 // Slide Animation
62 // Sets the time a slide will take. Note that this isn't actually
64 // the slide is considered.
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 97 for (SlideModel slide : mSlides) {
98 increaseMessageSize(slide.getSlideSize());
99 slide.setParent(this);
143 // Create slide models.
155 // Create media models for each slide.
167 * This is for slide duration value set.
168 * If mms server does not support slide duration.
188 * because the mmsc does not support the slide duration.
193 * If a slide has an image and an audio/video element
195 * The Image disappear before the slide play done. so have to matc
223 SlideModel slide = new SlideModel((int) (par.getDur() * 1000), mediaSet); local
456 SlideModel slide = (SlideModel) object; local
526 SlideModel slide = mSlides.remove(location); local
536 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...]
  /external/chromium_org/content/browser/web_contents/aura/
window_slider.h 36 // Creates a layer to slide on top of the window-layer with the scroll
41 // Called when the slide is complete. Note that at the end of a completed
42 // slide, the window-layer may have been transformed. The callback here
46 // Called when the slide is aborted. Note that when the slide is aborted,
56 // control the layer-slide. The lifetime of the slider is managed by the
79 // Resets any in-progress slide.
108 // can also delete itself when a slide gesture is completed. This does not
  /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/chromium_org/chrome/browser/ui/views/frame/
top_container_view.h 16 // order to slide in and out over the web contents. It informs the immersive
17 // mode controller when its children lose focus to trigger a slide out.
  /external/chromium_org/third_party/WebKit/ManualTests/
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.
  /external/chromium_org/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.
  /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...]
  /device/lge/hammerhead/overlay/packages/apps/Mms/res/xml-mcc310-mnc010/
mms_config.xml 32 <!-- If true, The mms support slide duration.
33 If false, The mms does not support slide duration and we have to
  /device/lge/hammerhead/overlay/packages/apps/Mms/res/xml-mcc310-mnc120/
mms_config.xml 32 <!-- If true, The mms support slide duration.
33 If false, The mms does not support slide duration and we have to
  /device/lge/hammerhead/overlay/packages/apps/Mms/res/xml-mcc311-mnc490/
mms_config.xml 32 <!-- If true, The mms support slide duration.
33 If false, The mms does not support slide duration and we have to
  /device/lge/hammerhead/overlay/packages/apps/Mms/res/xml-mcc311-mnc870/
mms_config.xml 32 <!-- If true, The mms support slide duration.
33 If false, The mms does not support slide duration and we have to

Completed in 497 milliseconds

1 2 3 4 5 6 7 8 91011>>