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

1 2 3 4 5 6

  /external/webkit/Source/WebCore/rendering/
RenderSlider.cpp 110 RenderBox* thumb = toRenderBox(thumbElement->renderer()); local
112 thumbRect.setWidth(thumb->style()->width().calcMinValue(contentWidth()));
113 thumbRect.setHeight(thumb->style()->height().calcMinValue(contentHeight()));
133 RenderBox* thumb = thumbElement ? toRenderBox(thumbElement->renderer()) : 0; local
137 if (thumb) {
138 // Allow the theme to set the size of the thumb.
139 if (thumb->style()->hasAppearance()) {
141 theme()->adjustSliderThumbSize(thumb);
144 baseSize.expand(thumb->style()->width().calcMinValue(0), thumb->style()->height().calcMinValue(0))
    [all...]
  /external/llvm/lib/Target/ARM/TargetInfo/
ARMTargetInfo.cpp 21 RegisterTarget<Triple::thumb, /*HasJIT=*/true>
22 Y(TheThumbTarget, "thumb", "Thumb");
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 70 Drawable thumb = a.getDrawable(com.android.internal.R.styleable.SeekBar_thumb); local
71 setThumb(thumb); // will guess mThumbOffset if thumb != null...
87 * Sets the thumb that will be drawn at the end of the progress meter within the SeekBar.
89 * If the thumb is a valid drawable (i.e. not null), half its width will be
90 * used as the new thumb offset (@see #setThumbOffset(int)).
92 * @param thumb Drawable representing the thumb
94 public void setThumb(Drawable thumb) {
99 if (mThumb != null && thumb != mThumb)
    [all...]
ScrollBarDrawable.java 127 // avoid the tiny thumb
132 // avoid the too-big thumb
176 final Drawable thumb = mVerticalThumb; local
177 if (changed) thumb.setBounds(thumbRect);
178 thumb.draw(canvas);
180 final Drawable thumb = mHorizontalThumb; local
181 if (changed) thumb.setBounds(thumbRect);
182 thumb.draw(canvas);
186 public void setVerticalThumbDrawable(Drawable thumb) {
187 if (thumb != null)
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
AbsSeekBar.java 66 Drawable thumb = a.getDrawable(com.android.internal.R.styleable.SeekBar_thumb); local
67 setThumb(thumb); // will guess mThumbOffset if thumb != null...
81 * Sets the thumb that will be drawn at the end of the progress meter within the SeekBar.
83 * If the thumb is a valid drawable (i.e. not null), half its width will be
84 * used as the new thumb offset (@see #setThumbOffset(int)).
86 * @param thumb Drawable representing the thumb
88 public void setThumb(Drawable thumb) {
93 if (mThumb != null && thumb != mThumb)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
AbstractSeekBar.java 31 * Seek-bar base that implements a draggable thumb that fits seek-bar height.
43 // Scale the thumb to fit seek-bar height.
45 Drawable thumb = res.getDrawable(R.drawable.photoeditor_seekbar_thumb); local
47 // Set the left/right padding to half width of the thumb drawn.
48 int scaledWidth = thumb.getIntrinsicWidth() * h / thumb.getIntrinsicHeight();
54 thumb.setBounds(0, 0, bitmap.getWidth(), bitmap.getHeight());
55 thumb.draw(canvas);
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapter.java 62 ImageView thumb = (ImageView) view.findViewById(R.id.thumb); local
68 thumb.setImageResource(R.drawable.thumb_bookmark_widget_folder_holo);
69 thumb.setScaleType(ScaleType.FIT_END);
70 thumb.setBackgroundDrawable(null);
78 thumb.setScaleType(ScaleType.CENTER_CROP);
80 thumb.setImageResource(R.drawable.browser_thumbnail);
82 thumb.setImageBitmap(thumbBitmap);
84 thumb.setBackgroundResource(R.drawable.border_thumb_bookmarks_widget_holo);
  /external/llvm/test/MC/ARM/
elf-thumbfunc.s 1 @@ test st_value bit 0 of thumb function
14 @@ make sure foo is thumb function: bit 0 = 1 (st_value)
neont2-reverse-encoding.s 1 @ RUN: llvm-mc -mcpu=cortex-a8 -triple thumb-unknown-unknown -show-encoding < %s | FileCheck %s
neont2-table-encoding.s 1 @ RUN: llvm-mc -mcpu=cortex-a8 -triple thumb-unknown-unknown -show-encoding < %s | FileCheck %s
  /system/extras/tests/memtest/
Android.mk 8 thumb.cpp
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 150 int thumb = cx; local
153 if (selection + thumb > maximum) {
154 selection = maximum - thumb;
160 mScrollbar.setValues(selection, mScrollbar.getMinimum(), maximum, thumb, mScrollbar
  /packages/apps/Browser/src/com/android/browser/preferences/
InvertedContrastPreview.java 61 for (String thumb : THUMBS) {
62 if (TextUtils.isEmpty(thumb)) {
68 builder.append(thumb);
  /external/webkit/Source/WebCore/accessibility/
AccessibilitySlider.cpp 94 AccessibilitySliderThumb* thumb = static_cast<AccessibilitySliderThumb*>(cache->getOrCreate(SliderThumbRole)); local
95 thumb->setParentObject(this);
99 if (thumb->accessibilityIsIgnored())
100 cache->remove(thumb->axObjectID());
102 m_children.append(thumb);
  /external/webkit/Source/WebCore/platform/wx/
ScrollbarThemeWx.h 52 virtual void splitTrack(Scrollbar*, const IntRect& track, IntRect& startTrack, IntRect& thumb, IntRect& endTrack);
  /hardware/ti/omap3/dspbridge/libbridge/
Android.mk 20 LOCAL_CFLAGS += -pipe -fomit-frame-pointer -Wall -Wno-trigraphs -Werror-implicit-function-declaration -fno-strict-aliasing -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -msoft-float -Uarm -DMODULE -D__LINUX_ARM_ARCH__=7 -fno-common -DLINUX -DOMAP_3430 -fpic
  /external/webkit/Source/WebKit/android/
RenderSkinMediaButton.cpp 185 IntRect thumb = slider->thumbRect(); local
186 // Inset the track by half the width of the thumb, so the track
187 // does not appear to go beyond the space where the thumb can
189 SkScalar thumbHalfWidth = SkIntToScalar(thumb.width()/2);
192 if (thumb.x() > 0) {
194 // left of the thumb as having been played.
195 SkScalar alreadyPlayed = SkIntToScalar(thumb.center().x() + r.x());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
ToggleSlider.java 79 Drawable thumb; local
83 thumb = res.getDrawable(
88 thumb = res.getDrawable(
93 mSlider.setThumb(thumb);
  /build/core/combo/arch/arm/
armv4t.mk 4 # Supporting armv4 (without thumb) does not make much sense since
  /external/webkit/Source/WebCore/html/
RangeInputType.cpp 156 if (SliderThumbElement* thumb = shadowSliderThumb())
157 thumb->dragFrom(event->absoluteLocation());
205 if (SliderThumbElement* thumb = shadowSliderThumb()) {
210 thumb->dragFrom(curPoint);
  /external/webkit/Source/WebCore/platform/
ScrollbarThemeComposite.h 56 virtual void splitTrack(Scrollbar*, const IntRect& track, IntRect& startTrack, IntRect& thumb, IntRect& endTrack);
  /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);
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetService.java 245 views.setImageViewResource(R.id.thumb, R.drawable.thumb_bookmark_widget_folder_back_holo);
247 views.setImageViewResource(R.id.thumb, R.drawable.thumb_bookmark_widget_folder_holo);
250 views.setDrawableParameters(R.id.thumb, true, 0, -1, null, -1);
257 views.setDrawableParameters(R.id.thumb, true, 255, -1, null, -1);
261 views.setImageViewBitmap(R.id.thumb, thumbnail);
263 views.setImageViewResource(R.id.thumb,
  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 385 final Bitmap thumb = Bitmap.createBitmap(mIconWidth, mIconHeight, c); local
387 canvas.setBitmap(thumb);
400 icon = new BitmapDrawable(thumb);
405 final Bitmap thumb = Bitmap.createBitmap(mIconWidth, mIconHeight, c); local
407 canvas.setBitmap(thumb);
415 icon = new BitmapDrawable(thumb);
  /external/bzip2/
Android.mk 19 # than the thumb one...

Completed in 573 milliseconds

1 2 3 4 5 6