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

1 2 3

  /external/chromium_org/chrome/browser/resources/user_manager/
user_manager_tutorial.css 6 .tutorial-slide {
22 .tutorial-slide.single-pod {
26 html[dir=rtl] .tutorial-slide.single-pod {
35 #slide-guests {
42 html[dir=rtl] #slide-guests {
46 #slide-friends,
47 #slide-not-you {
54 html[dir=rtl] #slide-friends,
55 html[dir=rtl] #slide-not-you {
59 #slide-not-you
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MmsThumbnailPresenter.java 45 SlideModel slide = ((SlideshowModel) mModel).get(0); local
46 if (slide != null) {
47 presentFirstSlide((SlideViewInterface) mView, slide);
51 private void presentFirstSlide(SlideViewInterface view, SlideModel slide) {
54 if (slide.hasImage()) {
55 presentImageThumbnail(view, slide.getImage());
56 } else if (slide.hasVideo()) {
57 presentVideoThumbnail(view, slide.getVideo());
58 } else if (slide.hasAudio()) {
59 presentAudioThumbnail(view, slide.getAudio())
109 SlideModel slide = ((SlideshowModel) mModel).get(0); local
    [all...]
SlideshowEditor.java 36 * An utility to edit contents of a slide.
56 * Add a new slide to the end of message.
58 * @return true if success, false if reach the max slide number.
66 * Add a new slide at the specified position in the message.
68 * @return true if success, false if reach the max slide number.
75 SlideModel slide = new SlideModel(mModel); local
80 slide.add(text);
82 mModel.add(position, slide);
123 * Add an existing slide at the specified position in the message.
125 * @return true if success, false if reach the max slide number
182 SlideModel slide = mModel.get(position); local
203 SlideModel slide = mModel.get(position); local
211 SlideModel slide = mModel.get(position); local
    [all...]
SlideEditorActivity.java 68 * This activity allows user to edit the contents of a slide.
163 // Confirm that we have at least 1 slide to display
285 SlideModel slide = mSlideshowModel.get(mPosition);
286 if (slide != null && slide.hasVideo()) {
347 SlideModel slide = mSlideshowModel.get(mPosition); local
349 if (slide == null) {
358 if (slide.hasText() && !TextUtils.isEmpty(slide.getText().getText())) {
365 if (slide.hasImage())
431 SlideModel slide = mSlideshowModel.get(mPosition); local
    [all...]
AttachmentEditor.java 150 SlideModel slide = mSlideshow.get(0); local
151 if (slide.hasImage()) {
157 } else if (slide.hasVideo()) {
163 } else if (slide.hasAudio()) {
MessageUtils.java 414 // Only one slide in the slide-show.
415 SlideModel slide = model.get(0); local
416 if (slide.hasVideo()) {
420 if (slide.hasAudio() && slide.hasImage()) {
424 if (slide.hasAudio()) {
428 if (slide.hasImage()) {
432 if (slide.hasText()) {
575 SlideModel slide = slideshow.get(0) local
    [all...]
MessageItem.java 345 SlideModel slide = mSlideshow == null ? null : mSlideshow.get(0); local
346 if ((slide != null) && slide.hasText()) {
347 TextModel tm = slide.getText();
SlideshowEditActivity.java 119 Log.e(TAG, "Failed to initialize the slide-list.", e);
130 // Add slide.
232 // Selected one slide.
315 // Select the new slide.
347 Log.e(TAG, "Failed to initialize the slide-list.", e);
381 // Show slide number.
386 SlideModel slide = getItem(position); local
387 int dur = slide.getDuration() / 1000;
421 // Selected one slide.
  /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...]
SmilHelper.java 302 for (SlideModel slide : slideshow) {
308 par.setDur(slide.getDuration() / 1000f);
310 addParElementEventListeners((EventTarget) par, slide);
313 for (MediaModel media : slide) {
410 EventTarget target, SlideModel slide) {
411 // To play the slide with SmilPlayer, we should add it
413 target.addEventListener(SMIL_SLIDE_START_EVENT, slide, false);
414 target.addEventListener(SMIL_SLIDE_END_EVENT, slide, false);
  /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;
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.h 165 lldb::addr_t slide) const;
172 lldb::addr_t slide; // The amount to slide all segments by if there is a global slide. member in struct:DynamicLoaderMacOSXDYLD::DYLDImageInfo
182 slide(0),
198 slide = 0;
212 && slide == rhs.slide
DynamicLoaderMacOSXDYLD.cpp 458 // We now know the slide amount, so go through all sections
474 const addr_t new_section_load_addr = info.segments[i].vmaddr + info.slide;
568 const addr_t old_section_load_addr = info.segments[i].vmaddr + info.slide;
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
AnimationManager.java 59 ObjectAnimator slide = ObjectAnimator.ofFloat(view, "translationX", 0f, slideDistance) local
61 slide.setStartDelay(AnimationManager.SHRINK_DURATION + AnimationManager.HOLD_DURATION);
98 slide); local
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
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/lldb/examples/python/
symbolication.py 213 self.slide = None
231 print 'slide = %i (0x%x)' % (self.slide, self.slide)
237 if self.slide != None:
238 s += ', slide = 0x%16.16x' % self.slide
270 return self.section_infos or self.slide != None
298 err = target.SetModuleLoadAddress(self.module, self.slide)
544 parser.add_option('-s', '--slide', type='int', metavar='slide', dest='slide', help='Specify the slide to use on the file specified (…)
    [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
549 SlideModel slide = new SlideModel(slideshow); local
566 SlideModel slide = mSlideshow.get(0); \/\/ get the new empty slide local
744 SlideModel slide = mSlideshow.get(0); local
    [all...]
  /frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
TransitionHelperKitkat.java 62 Slide slide = new Slide(); local
63 slide.setCallback(callback);
64 return slide;
  /external/chromium_org/tools/deep_memory_profiler/visualizer/static/third_party/jqTree/
tree.jquery.js 800 slide: true,
804 JqTreeWidget.prototype.toggle = function(node, slide) {
805 if (slide == null) {
806 slide = true;
809 return this.closeNode(node, slide);
811 return this.openNode(node, slide);
991 JqTreeWidget.prototype.openNode = function(node, slide) {
992 if (slide == null) {
993 slide = true;
995 return this._openNode(node, slide);
    [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/lldb/include/lldb/Expression/
DWARFExpression.h 221 /// @param[in] slide
222 /// This value should be a slide that is applied to any values
229 SetLocationListSlide (lldb::addr_t slide);
416 lldb::addr_t m_loclist_slide; ///< A value used to slide the location list offsets so that
  /external/chromium_org/v8/src/
platform-macos.cc 146 const uintptr_t slide = _dyld_get_image_vmaddr_slide(i); local
147 const uintptr_t start = reinterpret_cast<uintptr_t>(code_ptr) + slide;
  /external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
ItaniumABILanguageRuntime.cpp 233 int64_t slide = -2 * ((int64_t) target->GetArchitecture().GetAddressByteSize()); local
234 offset_to_top_address.Slide (slide);
  /external/lldb/include/lldb/Core/
RangeMap.h 76 Slide (BaseType slide)
78 base += slide;
299 Slide (BaseType slide)
303 pos->Slide (slide);
579 Slide (BaseType slide)
583 pos->Slide (slide)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/bookmarks/basic/
popup.js 98 show: 'slide', buttons: {

Completed in 887 milliseconds

1 2 3