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

1 2

  /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...]
  /frameworks/base/core/java/android/transition/
Slide.java 39 public class Slide extends Visibility {
40 private static final String TAG = "Slide";
43 private static final String PROPNAME_SCREEN_POSITION = "android:slide:screenPosition";
102 * slide edge direction.
104 public Slide() {
109 * Constructor using the provided slide edge direction.
111 public Slide(int slideEdge) {
115 public Slide(Context context, AttributeSet attrs) {
117 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.Slide);
165 throw new IllegalArgumentException("Invalid slide direction")
    [all...]
TransitionInflater.java 148 } else if ("slide".equals(name)) {
149 transition = new Slide(mContext, attrs);
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
LoginActivity.java 26 import android.transition.Slide;
55 // Custom transitions in/out of NewUser screen - slide in the 2nd password UI
57 slider.addTransition(new Slide().addTarget(R.id.retype).addTarget(R.id.retypeEdit));
  /external/lldb/source/Core/
Section.cpp 275 Section::Slide (addr_t slide_amount, bool slide_children)
285 m_children.Slide (slide_amount, slide_children);
534 SectionList::Slide (addr_t slide_amount, bool slide_children)
540 if ((*pos)->Slide(slide_amount, slide_children))
  /external/lldb/include/lldb/Core/
Section.h 92 Slide (lldb::addr_t slide_amount, bool slide_children);
246 Slide (lldb::addr_t slide_amount, bool slide_children);
Address.h 39 /// when/if the addresses slide when the images are loaded/unloaded
476 Slide (int64_t offset)
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...]
  /frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
Slide.java 37 * Slide distance toward/from a edge. The direction and distance are determined by
40 class Slide extends Visibility {
41 private static final String TAG = "Slide";
63 * default slide direction.
78 float getGone(float slide, View view);
139 public Slide() {
157 throw new IllegalArgumentException("Invalid slide direction");
TransitionHelperKitkat.java 62 Slide slide = new Slide(); local
63 slide.setCallback(callback);
64 return slide;
  /external/lldb/source/API/
SBFunction.cpp 187 addr->Slide (byte_size);
SBSymbol.cpp 186 addr->Slide (m_opaque_ptr->GetByteSize());
SBBlock.cpp 238 sb_addr.ref().Slide(range.GetByteSize());
  /external/lldb/source/Breakpoint/
BreakpointResolverFileLine.cpp 186 prologue_addr.Slide(prologue_byte_size);
  /external/lldb/source/Symbol/
Symbol.cpp 316 addr.Slide (m_type_data);
336 // Slide addr up to the next line address.
337 addr.Slide (sc_temp.line_entry.range.GetByteSize());
Block.cpp 361 range.GetBaseAddress().Slide(vm_range.GetRangeBase ());
379 addr.Slide(m_ranges.GetEntryRef(0).GetRangeBase ());
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
image_view.js 63 * the slide-in/slide-out transition.
384 } else if ((effect && effect.constructor.name === 'Slide') &&
386 // Only show thumbnails if there is no effect or the effect is Slide.
642 * Replaces the displayed image, possibly with slide-in animation.
966 * Slide effect.
972 ImageView.Effect.Slide = function Slide(direction, opt_slow) {
984 ImageView.Effect.Slide.prototype = { __proto__: ImageView.Effect.prototype };
987 * @return {ImageView.Effect.Slide} Reverse Slide effect
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
image_view.js 63 * the slide-in/slide-out transition.
384 } else if ((effect && effect.constructor.name === 'Slide') &&
386 // Only show thumbnails if there is no effect or the effect is Slide.
642 * Replaces the displayed image, possibly with slide-in animation.
966 * Slide effect.
972 ImageView.Effect.Slide = function Slide(direction, opt_slow) {
984 ImageView.Effect.Slide.prototype = { __proto__: ImageView.Effect.prototype };
987 * @return {ImageView.Effect.Slide} Reverse Slide effect
    [all...]
  /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/source/Target/
ThreadPlanStepInRange.cpp 229 func_start_address.Slide (bytes_to_skip);
StackFrameList.cpp 354 curr_frame_address.Slide(-1);
    [all...]
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 
  /external/lldb/source/Plugins/Disassembler/llvm/
DisassemblerLLVMC.cpp 728 inst_addr.Slide(inst_size);
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/photo/
ribbon.js 8 * Scrollable thumbnail ribbon at the bottom of the Gallery in the Slide mode.
204 box.setAttribute('vanishing', 'slide');
224 startBox.setAttribute('vanishing', 'slide');

Completed in 517 milliseconds

1 2