/gdk/samples/PhotoEditor/src/com/android/photoeditor/actions/ |
GrainAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
HighlightAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setHighlight(progress);
|
SaturationAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setSaturation(progress);
|
ShadowAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setShadow(progress);
|
SharpenAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setSharpen(progress);
|
SoftFocusAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setSoftFocus(progress);
|
VignetteAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
EmailAsyncTask.java | 39 public abstract class EmailAsyncTask<Params, Progress, Result> { 138 private final InnerTask<Params, Progress, Result> mInnerTask; 146 mInnerTask = new InnerTask<Params, Progress, Result>(this); 184 public final EmailAsyncTask<Params, Progress, Result> executeParallel(Params... params) { 193 public final EmailAsyncTask<Params, Progress, Result> executeSerial(Params... params) { 201 public final EmailAsyncTask<Params, Progress, Result> cancelPreviousAndExecuteParallel( 210 public final EmailAsyncTask<Params, Progress, Result> cancelPreviousAndExecuteSerial( 215 private final EmailAsyncTask<Params, Progress, Result> executeInternal(Executor executor,
|
/packages/apps/Gallery2/src/com/android/gallery3d/anim/ |
AlphaAnimation.java | 44 protected void onCalculate(float progress) { 46 + (mEndAlpha - mStartAlpha) * progress, 0f, 1f);
|
Animation.java | 34 // In step 3, onCalculate(float progress) is called so subclasses can calculate 35 // the value according to progress (progress is a value in [0,1]). 38 // can change the progress value. The interpolator can be set by 91 abstract protected void onCalculate(float progress);
|
/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/ |
ColorTemperatureAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
FaceTanAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
FaceliftAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
FillLightAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
FisheyeAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
GrainAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
HighlightAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
SaturationAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
ShadowAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
SharpenAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
VignetteAction.java | 43 public void onProgressChanged(float progress, boolean fromUser) { 45 filter.setScale(progress);
|
/packages/apps/Settings/src/com/android/settings/ |
ProgressCategoryBase.java | 29 * Turn on/off the progress indicator and text on the right. 30 * @param progressOn whether or not the progress should be displayed
|
/external/mesa3d/src/glsl/ |
opt_constant_folding.cpp | 43 this->progress = false; 56 bool progress; member in class:ir_constant_folding_visitor 81 this->progress = true; 106 this->progress = true; 146 return constant_folding.progress;
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/tasks/ |
IProgressUiProvider.java | 26 * (e.g. via an {@link ITaskMonitor}) and the progress state of the 27 * task (e.g. via a progress bar.) 44 * Sets the max value of the progress bar. 52 * Sets the current value of the progress bar. 58 * Returns the current value of the progress bar,
|
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/ |
AbsSeekBar.java | 35 * touch will form the progress value. Usually 0. 47 * progress. 89 * Sets the thumb that will be drawn at the end of the progress meter within the SeekBar. 112 // progress bar. 158 * Sets the amount of progress changed via the arrow keys. 168 * Returns the amount of progress changed via the arrow keys. 170 * By default, this will be a value that is derived from the max progress. 468 float progress = 0; 480 progress = mTouchProgressOffset; 484 progress += scale * max [all...] |