Searched refs:thumb (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DAbsSeekBar.java73 Drawable thumb = a.getDrawable(com.android.internal.R.styleable.SeekBar_thumb);
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) { argument
102 if (mThumb != null && thumb !
286 setThumbPos(int w, Drawable thumb, float scale, int gap) argument
[all...]
H A DScrollBarDrawable.java127 // avoid the tiny thumb
132 // avoid the too-big thumb
176 final Drawable thumb = mVerticalThumb;
177 if (changed) thumb.setBounds(thumbRect);
178 thumb.draw(canvas);
180 final Drawable thumb = mHorizontalThumb;
181 if (changed) thumb.setBounds(thumbRect);
182 thumb.draw(canvas);
186 public void setVerticalThumbDrawable(Drawable thumb) { argument
187 if (thumb !
196 setHorizontalThumbDrawable(Drawable thumb) argument
[all...]
H A DSwitch.java46 * options. The user may drag the "thumb" back and forth to choose the selected option,
50 * controls the text on the thumb. Similarly, the
54 * the related seSwitchTypeface() methods control that of the thumb.
352 * @param pixels Horizontal padding for switch thumb text in pixels
364 * @return Horizontal padding for switch thumb text in pixels
407 * Set the drawable used for the switch "thumb" - the piece that the user
410 * @param thumb Thumb drawable
414 public void setThumbDrawable(Drawable thumb) { argument
415 mThumbDrawable = thumb;
420 * Set the drawable used for the switch "thumb"
[all...]
/frameworks/compile/linkloader/tests/images/
H A Dgen-testcases.sh36 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'
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DToggleSlider.java88 Drawable thumb;
92 thumb = res.getDrawable(
97 thumb = res.getDrawable(
102 mSlider.setThumb(thumb);
/frameworks/base/core/java/android/app/
H A DLauncherActivity.java302 final Bitmap thumb = Bitmap.createBitmap(mIconWidth, mIconHeight, c);
304 canvas.setBitmap(thumb);
316 icon = new BitmapDrawable(getResources(), thumb);
320 final Bitmap thumb = Bitmap.createBitmap(mIconWidth, mIconHeight, c);
322 canvas.setBitmap(thumb);
329 icon = new BitmapDrawable(getResources(), thumb);
/frameworks/base/core/java/android/provider/
H A DMediaStore.java745 * The mini thumb id.
839 Bitmap thumb = Bitmap.createBitmap(source, 0, 0,
847 values.put(Images.Thumbnails.HEIGHT, thumb.getHeight());
848 values.put(Images.Thumbnails.WIDTH, thumb.getWidth());
855 thumb.compress(Bitmap.CompressFormat.JPEG, 100, thumbOut);
857 return thumb;
1922 * The mini thumb id.
/frameworks/av/media/mtp/
H A DMtpServer.cpp753 void* thumb = mDatabase->getThumbnail(handle, thumbSize); local
754 if (thumb) {
758 mData.writeData(mFD, thumb, thumbSize);
759 free(thumb);
843 mData.getUInt16(); // thumb format
844 mData.getUInt32(); // thumb compressed size
845 mData.getUInt32(); // thumb pix width
846 mData.getUInt32(); // thumb pix height
/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java63 * This type of keyboard is generally designed for thumb typing.
71 * This type of keyboard is generally designed for thumb typing.
86 * This type of keyboard is generally designed for thumb typing.
652 * Toggled behavior is useful for small profile keyboards designed for thumb typing.
H A DView.java3968 Drawable thumb = a.getDrawable(R.styleable.View_scrollbarThumbHorizontal);
3969 if (thumb != null) {
3970 scrollabilityCache.scrollBar.setHorizontalThumbDrawable(thumb);
3982 thumb = a.getDrawable(R.styleable.View_scrollbarThumbVertical);
3983 if (thumb != null) {
3984 scrollabilityCache.scrollBar.setVerticalThumbDrawable(thumb);
3998 if (thumb != null) {
3999 thumb.setLayoutDirection(layoutDirection);
11201 * <p>Compute the horizontal offset of the horizontal scrollbar's thumb
11203 * of the thumb withi
[all...]
/frameworks/compile/libbcc/lib/AndroidBitcode/
H A DABCCompilerDriver.cpp234 case llvm::Triple::thumb: {
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp1672 // Match x86_64-*, i[3-9]86-*, powerpc-*, powerpc64-*, arm-*, thumb-*,
1692 else if (Arch == Triple::arm || Arch == Triple::thumb)
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp1689 // Match x86_64-*, i[3-9]86-*, powerpc-*, powerpc64-*, arm-*, thumb-*,
1709 else if (Arch == Triple::arm || Arch == Triple::thumb)
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java3332 boolean enter, boolean thumb, boolean scaleUp) {
3354 if (thumb) {
3331 createThumbnailAnimationLocked(int transit, boolean enter, boolean thumb, boolean scaleUp) argument

Completed in 212 milliseconds