HomeSort by relevance Sort by last modified time
    Searched refs:mThumb (Results 1 - 6 of 6) sorted by null

  /hardware/ti/omap4xxx/camera/inc/
Encoder_libjpeg.h 137 mType(type), mThumb(NULL) {
151 mThumb = new Encoder_libjpeg(mThumbnailInput, NULL, NULL, mType, NULL, NULL, NULL);
152 mThumb->run();
162 if(mThumb.get()) {
164 mThumb->join();
165 mThumb.clear();
166 mThumb = NULL;
180 if (mThumb.get()) {
181 mThumb->cancel();
201 sp<Encoder_libjpeg> mThumb;
    [all...]
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 33 private Drawable mThumb;
102 if (mThumb != null && thumb != mThumb) {
103 mThumb.setCallback(null);
118 (thumb.getIntrinsicWidth() != mThumb.getIntrinsicWidth()
119 || thumb.getIntrinsicHeight() != mThumb.getIntrinsicHeight())) {
123 mThumb = thumb;
143 return mThumb;
199 return who == mThumb || super.verifyDrawable(who);
205 if (mThumb != null) mThumb.jumpToCurrentState()
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
AbsSeekBar.java 30 private Drawable mThumb;
101 if (mThumb != null && thumb != mThumb) {
102 mThumb.setCallback(null);
121 (thumb.getIntrinsicWidth() != mThumb.getIntrinsicWidth()
122 || thumb.getIntrinsicHeight() != mThumb.getIntrinsicHeight())) {
126 mThumb = thumb;
192 return who == mThumb || super.verifyDrawable(who);
198 if (mThumb != null) mThumb.jumpToCurrentState()
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ZoomControl.java 38 private final Drawable mThumb;
67 mThumb = context.getResources().getDrawable(R.drawable.zoom_thumb_selector);
88 mThumb.setState(isPressed() ? PRESSED_WINDOW_FOCUSED_STATE_SET : ENABLED_STATE_SET);
125 final int halfWidth = mThumb.getIntrinsicWidth() / 2;
126 final int halfHeight = mThumb.getIntrinsicHeight() / 2;
127 mThumb.setBounds(mThumbX - halfWidth, mThumbY - halfHeight, mThumbX + halfWidth,
129 mThumb.setAlpha(isEnabled() ? 255 : 100);
130 mThumb.draw(canvas);
  /packages/apps/Camera/src/com/android/camera/ui/
RotateImageView.java 140 private Bitmap mThumb;
148 mThumb = null;
160 mThumb = ThumbnailUtils.extractThumbnail(
165 mThumbs[1] = new BitmapDrawable(getContext().getResources(), mThumb);
169 mThumbs[1] = new BitmapDrawable(getContext().getResources(), mThumb);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
RotateImageView.java 138 private Bitmap mThumb;
146 mThumb = null;
158 mThumb = ThumbnailUtils.extractThumbnail(
163 mThumbs[1] = new BitmapDrawable(getContext().getResources(), mThumb);
167 mThumbs[1] = new BitmapDrawable(getContext().getResources(), mThumb);

Completed in 89 milliseconds