HomeSort by relevance Sort by last modified time
    Searched defs:thumb (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/chromium_org/third_party/libvpx/source/libvpx/build/make/
thumb.pm 12 package thumb; package
65 # for switching from arm to thumb (and only in armv7), but not
66 # from thumb to arm.
  /external/libvpx/libvpx/build/make/
thumb.pm 12 package thumb; package
65 # for switching from arm to thumb (and only in armv7), but not
66 # from thumb to arm.
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
thumb.pm 12 package thumb; package
65 # for switching from arm to thumb (and only in armv7), but not
66 # from thumb to arm.
  /external/libexif/contrib/examples/
thumbnail.c 39 FILE *thumb; local
46 thumb = fopen(thumb_name, "wb");
47 if (thumb) {
49 fwrite(ed->data, 1, ed->size, thumb);
50 fclose(thumb);
  /external/glide/library/src/main/java/com/bumptech/glide/request/
ThumbnailRequestCoordinator.java 9 private Request thumb; field in class:ThumbnailRequestCoordinator
11 public void setRequests(Request full, Request thumb) {
13 this.thumb = thumb;
28 return full.isComplete() || thumb.isComplete();
33 if (!thumb.isRunning()) {
34 thumb.run();
44 thumb.clear();
65 thumb.recycle();
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXSlider.cpp 88 AXSliderThumb* thumb = static_cast<AXSliderThumb*>(cache->getOrCreate(SliderThumbRole)); local
89 thumb->setParent(this);
93 if (thumb->accessibilityIsIgnored())
94 cache->remove(thumb->axObjectID());
96 m_children.append(thumb);
  /external/libmtp/examples/
thumb.c 2 * \file thumb.c
38 printf("Usage: thumb -i <fileid/trackid> <imagefile>\n");
107 LIBMTP_filesampledata_t *thumb = LIBMTP_new_filesampledata_t(); local
110 thumb->data = malloc(sizeof(uint16_t) * filesize);
112 thumb->data[i] = imagedata[i];
115 thumb->size = filesize;
116 thumb->filetype = LIBMTP_FILETYPE_JPEG;
118 ret = LIBMTP_Send_Representative_Sample(device,id,thumb);
126 LIBMTP_destroy_filesampledata_t(thumb);
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
AbsSeekBar.java 72 Drawable thumb = a.getDrawable(com.android.internal.R.styleable.SeekBar_thumb); local
73 setThumb(thumb); // will guess mThumbOffset if thumb != null...
89 * Sets the thumb that will be drawn at the end of the progress meter within the SeekBar.
91 * If the thumb is a valid drawable (i.e. not null), half its width will be
92 * used as the new thumb offset (@see #setThumbOffset(int)).
94 * @param thumb Drawable representing the thumb
96 public void setThumb(Drawable thumb) {
101 if (mThumb != null && thumb != mThumb)
    [all...]
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/
Press.java 38 // average width of an adult thumb is 25 mm (1 inch).
39 THUMB {
42 float thumb[] = {25f, 25f}; local
43 return thumb;
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarThemeGeometryNative.cpp 148 IntRect thumb; local
150 m_theme->splitTrack(&client, track, startTrack, thumb, endTrack);
153 webThumb = thumb;
  /external/chromium_org/ui/views/controls/scrollbar/
kennedy_scroll_bar.cc 86 BaseScrollBarThumb* thumb = GetThumb(); local
88 thumb_bounds.set_x(thumb->x());
89 thumb_bounds.set_width(thumb->width());
91 thumb_bounds.set_y(thumb->y());
92 thumb_bounds.set_height(thumb->height());
94 thumb->SetBoundsRect(thumb_bounds);
overlay_scroll_bar.cc 47 // This is necessary, otherwise the thumb will be rendered below the views if
147 BaseScrollBarThumb* thumb = GetThumb(); local
149 thumb_bounds.set_x(thumb->x());
150 thumb_bounds.set_width(thumb->width());
152 thumb_bounds.set_y(thumb->y());
153 thumb_bounds.set_height(thumb->height());
155 thumb->SetBoundsRect(thumb_bounds);
native_scroll_bar_views.cc 51 // Wrapper for the scroll thumb
356 BaseScrollBarThumb* thumb = GetThumb(); local
361 bounds.set_height(thumb->GetPreferredSize().height());
365 bounds.set_width(thumb->GetPreferredSize().width());
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapter.java 85 ImageView thumb = (ImageView) view.findViewById(R.id.thumb); local
91 thumb.setImageResource(R.drawable.thumb_bookmark_widget_folder_holo);
92 thumb.setScaleType(ScaleType.FIT_END);
93 thumb.setBackground(null);
95 thumb.setScaleType(ScaleType.CENTER_CROP);
97 thumb.setImageResource(R.drawable.browser_thumbnail);
99 thumb.setImageDrawable(item.thumbnail);
101 thumb.setBackgroundResource(R.drawable.border_thumb_bookmarks_widget_holo);
PieControl.java 321 ImageView thumb = (ImageView) view.findViewById(R.id.thumb); local
326 thumb.setImageBitmap(b);
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 97 final Drawable thumb = a.getDrawable(com.android.internal.R.styleable.SeekBar_thumb); local
98 setThumb(thumb);
111 // Guess thumb offset if thumb != null, but allow layout to override.
130 * Sets the thumb that will be drawn at the end of the progress meter within the SeekBar.
132 * If the thumb is a valid drawable (i.e. not null), half its width will be
133 * used as the new thumb offset (@see #setThumbOffset(int)).
135 * @param thumb Drawable representing the thumb
137 public void setThumb(Drawable thumb) {
    [all...]
ScrollBarDrawable.java 127 // avoid the tiny thumb
132 // avoid the too-big thumb
177 final Drawable thumb = mVerticalThumb; local
178 if (changed) thumb.setBounds(thumbRect);
179 thumb.draw(canvas);
183 final Drawable thumb = mHorizontalThumb; local
184 if (changed) thumb.setBounds(thumbRect);
185 thumb.draw(canvas);
190 public void setVerticalThumbDrawable(Drawable thumb) {
191 if (thumb != null)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
AbsSeekBarTest.java 220 assertEquals("Thumb tint inflated correctly",
222 assertEquals("Thumb tint mode inflated correctly",
225 MockDrawable thumb = new MockDrawable(); local
228 view.setThumb(thumb);
229 assertFalse("No thumb tint applied by default", thumb.hasCalledSetTint());
232 assertTrue("Thumb tint applied when setThumbTintList() called after setThumb()",
233 thumb.hasCalledSetTint());
235 thumb.reset();
237 view.setThumb(thumb);
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
LiveWallpaperListAdapter.java 173 Drawable thumb = info.loadThumbnail(packageManager); local
176 LiveWallpaperTile wallpaper = new LiveWallpaperTile(thumb, info, launchIntent);
SavedWallpaperImages.java 52 public SavedWallpaperTile(int dbId, File target, Drawable thumb) {
53 super(target, thumb);
90 Bitmap thumb = BitmapFactory.decodeFile(file.getAbsolutePath()); local
91 if (thumb != null) {
94 new BitmapDrawable(thumb)));
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperListAdapter.java 192 Drawable thumb = info.loadThumbnail(packageManager); local
193 if (thumb == null) {
220 thumb = new BitmapDrawable(res, thumbnail);
222 wallpaper.thumbnail = thumb;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 179 int thumb = cx; local
182 if (selection + thumb > maximum) {
183 selection = maximum - thumb;
189 mScrollbar.setValues(selection, mScrollbar.getMinimum(), maximum, thumb, mScrollbar
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
SliderThumbElement.cpp 159 RenderBox* thumb = thumbElement ? thumbElement->renderBox() : 0; local
163 // Force a layout to reset the position of the thumb so the code below doesn't move the thumb to the wrong place.
164 // FIXME: Make a custom Render class for the track and move the thumb positioning code there.
172 if (!thumb || !track)
177 availableExtent -= isVertical ? thumb->height() : thumb->width();
179 LayoutPoint thumbLocation = thumb->location();
181 thumbLocation.setY(thumbLocation.y() + track->contentHeight() - thumb->height() - offset);
186 thumb->setLocation(thumbLocation)
    [all...]
  /frameworks/av/media/mtp/
MtpServer.cpp 770 void* thumb = mDatabase->getThumbnail(handle, thumbSize); local
771 if (thumb) {
775 mData.writeData(mFD, thumb, thumbSize);
776 free(thumb);
860 mData.getUInt16(); // thumb format
861 mData.getUInt32(); // thumb compressed size
862 mData.getUInt32(); // thumb pix width
863 mData.getUInt32(); // thumb pix height
    [all...]
  /frameworks/base/core/java/android/app/
LauncherActivity.java 302 final Bitmap thumb = Bitmap.createBitmap(mIconWidth, mIconHeight, c); local
304 canvas.setBitmap(thumb);
316 icon = new BitmapDrawable(getResources(), thumb);
320 final Bitmap thumb = Bitmap.createBitmap(mIconWidth, mIconHeight, c); local
322 canvas.setBitmap(thumb);
329 icon = new BitmapDrawable(getResources(), thumb);

Completed in 1095 milliseconds

1 2 3 4