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

1 2 3 4 5 6 7 8

  /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");
  /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/base/core/java/android/widget/
AbsSeekBar.java 73 Drawable thumb = a.getDrawable(com.android.internal.R.styleable.SeekBar_thumb); local
74 setThumb(thumb); // will guess mThumbOffset if thumb != null...
90 * Sets the thumb that will be drawn at the end of the progress meter within the SeekBar.
92 * If the thumb is a valid drawable (i.e. not null), half its width will be
93 * used as the new thumb offset (@see #setThumbOffset(int)).
95 * @param thumb Drawable representing the thumb
97 public void setThumb(Drawable thumb) {
102 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/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);
  /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)
elf-thumbfunc-reloc.s 1 @@ test st_value bit 0 of thumb function
  /external/llvm/test/MC/MachO/ARM/
thumb-bl-jbits.s 2 .thumb
10 .thumb
relax-thumb-ldr-literal.s 7 .thumb
thumb2-function-relative-load.s 6 .thumb
llvm-objdump-macho.s 2 .thumb
no-subsections-reloc.s 10 .thumb
static-movt-relocs.s 2 .thumb
  /system/extras/tests/memtest/
Android.mk 8 thumb.cpp
  /external/webkit/Source/WebKit/android/
RenderSkinMediaButton.h 64 const IntRect& thumb = IntRect());
RenderSkinMediaButton.cpp 94 bool drawBackground, const IntRect& thumb)
184 if (!thumb.isEmpty()) {
185 // Inset the track by half the width of the thumb, so the track
186 // does not appear to go beyond the space where the thumb can
188 SkScalar thumbHalfWidth = SkIntToScalar(thumb.width()/2);
191 if (thumb.x() > 0) {
193 // left of the thumb as having been played.
194 SkScalar alreadyPlayed = SkIntToScalar(thumb.center().x() + r.x());
  /frameworks/compile/linkloader/tests/images/
gen-testcases.sh 36 gen_test_cases thumb2 thumb-none-linux-gnueabi '-march=thumb -mattr=+thumb2'
37 gen_test_cases thumb2lc thumb-none-linux-gnueabi '-mattr=+thumb2,+neonfp,+vfp3 -arm-long-calls'
38 gen_test_cases thumb2lc-xoom thumb-none-linux-gnueabi '-mattr=+thumb2 -arm-long-calls'
  /packages/apps/Browser/src/com/android/browser/preferences/
InvertedContrastPreview.java 62 for (String thumb : THUMBS) {
63 if (TextUtils.isEmpty(thumb)) {
69 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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 163 int thumb = cx; local
166 if (selection + thumb > maximum) {
167 selection = maximum - thumb;
173 mScrollbar.setValues(selection, mScrollbar.getMinimum(), maximum, thumb, mScrollbar
  /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
  /ndk/tests/build/build-mode/jni/
Android.mk 4 # To check for thumb/arm build modes, either with the .arm extension
19 LOCAL_ARM_MODE := thumb
51 LOCAL_ARM_MODE := thumb
84 LOCAL_ARM_MODE := thumb

Completed in 752 milliseconds

1 2 3 4 5 6 7 8