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

1 2 3 4 5 6 7 8 91011>>

  /external/javasqlite/src/main/java/SQLite/
ProgressHandler.java 4 * Callback interface for SQLite's user defined progress handler.
16 public boolean progress(); method in interface:ProgressHandler
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IEmailServiceCallback.aidl 23 * statuscode = 1, progress = 0: "starting"
24 * statuscode = 0, progress = n/a: "finished"
27 * statuscode = err, progress = n/a: "stopping due to error"
30 * statuscode = 1, progress = 0: "starting"
31 * statuscode = 1, progress = 30: "working"
32 * statuscode = 1, progress = 60: "working"
33 * statuscode = 0, progress = n/a: "finished"
39 * statusCode = 0 for OK, 1 for progress, other codes for error
40 * progress = 0 for "start", 1..100 for optional progress report
    [all...]
  /frameworks/base/media/java/android/media/videoeditor/
ExtractAudioWaveformProgressListener.java 29 * This method notifies the listener of the progress status of
33 * @param progress The progress in %. At the beginning of the operation,
36 public void onProgress(int progress);
  /external/chromium/chrome/browser/download/
download_status_updater_unittest.cc 84 float progress = -1; local
85 EXPECT_TRUE(updater_.GetProgress(&progress));
86 EXPECT_FLOAT_EQ(0, progress);
94 float progress = -1; local
95 EXPECT_TRUE(updater_.GetProgress(&progress));
96 EXPECT_FLOAT_EQ(0, progress);
105 float progress = -1; local
106 EXPECT_TRUE(updater_.GetProgress(&progress));
107 EXPECT_FLOAT_EQ(static_cast<float>(1) / 2, progress);
114 float progress = -1 local
126 float progress = -1; local
141 float progress = -1; local
150 float progress = -1; local
159 float progress = -1; local
    [all...]
download_status_updater.cc 30 float progress = 0; local
31 bool progress_known = GetProgress(&progress);
35 progress);
38 bool DownloadStatusUpdater::GetProgress(float* progress) {
39 *progress = 0;
52 *progress = static_cast<float>(received_bytes) / total_bytes;
  /external/mesa3d/src/glsl/
lower_noise.cpp 36 lower_noise_visitor() : progress(false)
55 this->progress = true;
59 bool progress; member in class:lower_noise_visitor
70 return v.progress;
opt_dead_code.cpp 48 bool progress = false; local
84 progress = true;
104 progress = true;
113 return progress;
126 bool progress = false; local
136 progress = true;
141 return progress;
opt_noop_swizzle.cpp 42 this->progress = false;
46 bool progress; member in class:ir_noop_swizzle_visitor
69 this->progress = true;
79 return v.progress;
opt_redundant_jumps.cpp 35 this->progress = false;
41 bool progress; member in class:redundant_jumps_visitor
72 this->progress = true;
97 this->progress = true;
110 return v.progress;
  /external/webkit/Source/WebCore/platform/graphics/transforms/
SkewTransformOperation.cpp 27 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
33 return SkewTransformOperation::create(m_angleX - m_angleX * progress, m_angleY - m_angleY * progress, m_type);
38 return SkewTransformOperation::create(fromAngleX + (m_angleX - fromAngleX) * progress, fromAngleY + (m_angleY - fromAngleY) * progress, m_type);
ScaleTransformOperation.cpp 27 PassRefPtr<TransformOperation> ScaleTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
33 return ScaleTransformOperation::create(m_x + (1. - m_x) * progress,
34 m_y + (1. - m_y) * progress,
35 m_z + (1. - m_z) * progress, m_type);
41 return ScaleTransformOperation::create(fromX + (m_x - fromX) * progress,
42 fromY + (m_y - fromY) * progress,
43 fromZ + (m_z - fromZ) * progress, m_type);
TranslateTransformOperation.cpp 28 PassRefPtr<TransformOperation> TranslateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
34 return TranslateTransformOperation::create(Length(m_x.type()).blend(m_x, narrowPrecisionToFloat(progress)),
35 Length(m_y.type()).blend(m_y, narrowPrecisionToFloat(progress)),
36 Length(m_z.type()).blend(m_z, narrowPrecisionToFloat(progress)), m_type);
42 return TranslateTransformOperation::create(m_x.blend(fromX, narrowPrecisionToFloat(progress)), m_y.blend(fromY, narrowPrecisionToFloat(progress)), m_z.blend(fromZ, narrowPrecisionToFloat(progress)), m_type);
Matrix3DTransformOperation.cpp 35 PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
52 toT.blend(fromT, progress);
  /packages/apps/Email/src/com/android/email/
ControllerResultUiThreadWrapper.java 62 final long messageId, final long attachmentId, final int progress) {
71 progress);
78 final long messageId, final int progress) {
82 mWrappee.loadMessageForViewCallback(result, accountId, messageId, progress);
89 final long messageId, final int progress) {
93 mWrappee.sendMailCallback(result, accountId, messageId, progress);
100 final long mailboxId, final int progress, final long tag) {
104 mWrappee.serviceCheckMailCallback(result, accountId, mailboxId, progress, tag);
111 final long mailboxId, final int progress, final int numNewMessages,
116 mWrappee.updateMailboxCallback(result, accountId, mailboxId, progress,
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
FloatAnimation.java 33 protected void onCalculate(float progress) {
34 mCurrent = mFrom + (mTo - mFrom) * progress;
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
ScaleSeekBar.java 33 void onProgressChanged(float progress, boolean fromUser);
46 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
47 listener.onProgressChanged((float) progress / getMax(), fromUser);
60 public void setProgress(float progress) {
61 setProgress((int) (progress * getMax()));
  /external/chromium/chrome/browser/ui/cocoa/
dock_icon.h 18 // Download progress ///////////////////////////////////////////////////////////
20 // Indicates how many downloads are in progress.
23 // Indicates whether the progress indicator should be in an indeterminate state
27 // Indicates the amount of progress made of the download. Ranges from [0..1].
28 - (void)setProgress:(float)progress;
  /external/webkit/Source/WebCore/html/
HTMLDataGridCellElement.idl 38 attribute float progress; // For progress cells, a value from 0-1.0 indicating the state of progress.
  /external/jpeg/
jdtrans.c 56 /* Call progress monitor hook if present */
57 if (cinfo->progress != NULL)
58 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
65 /* Advance progress counter if appropriate */
66 if (cinfo->progress != NULL &&
68 if (++cinfo->progress->pass_counter >= cinfo->progress->pass_limit) {
70 cinfo->progress->pass_limit += (long) cinfo->total_iMCU_rows;
107 /* Call progress monitor hook if present */
108 if (cinfo->progress != NULL
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
RotatingButton.java 51 public void onProgressChanged(SeekBar seekBar, int progress,
53 rotatingButton.setTranslationX((float)progress);
66 public void onProgressChanged(SeekBar seekBar, int progress,
68 rotatingButton.setTranslationY((float)progress);
82 public void onProgressChanged(SeekBar seekBar, int progress,
84 rotatingButton.setScaleX((float)progress/10f);
98 public void onProgressChanged(SeekBar seekBar, int progress,
100 rotatingButton.setScaleY((float)progress/10f);
113 public void onProgressChanged(SeekBar seekBar, int progress,
116 rotatingButton.setRotationX((float)progress);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
FlingScroller.java 107 public void computeScrollOffset(float progress) {
108 progress = Math.min(progress, 1);
109 float f = 1 - progress;
113 mCurrV = getV(progress);
126 private double getV(float progress) {
129 Math.pow(1 - progress, DECELERATED_FACTOR - 1) / mDuration;
  /external/webkit/Source/WebCore/platform/graphics/android/
AndroidAnimation.cpp 108 double progress = elapsedTime(time); local
117 if (m_iterationCount > 0 && progress > dur) {
120 // first time past duration, continue with progress 1.0 so the
129 double fractionalTime = progress / m_duration;
141 double AndroidAnimation::applyTimingFunction(float from, float to, double progress,
144 double fractionalTime = progress;
179 float progress; local
180 if (!checkIterationsAndProgress(time, &progress)
184 if (progress < 0) {
190 // we still want to be evaluated until we get progress >
    [all...]
AndroidAnimation.h 46 void pickValues(double progress, int* start, int* end);
48 double applyTimingFunction(float from, float to, double progress,
51 virtual void applyForProgress(LayerAndroid* layer, float progress) = 0;
84 virtual void applyForProgress(LayerAndroid* layer, float progress);
97 virtual void applyForProgress(LayerAndroid* layer, float progress);
  /external/webkit/Source/WebCore/svg/
SVGPointList.cpp 48 float inline adjustAnimatedValue(float from, float to, float progress)
50 return (to - from) * progress + from;
53 bool SVGPointList::createAnimated(const SVGPointList& fromList, const SVGPointList& toList, SVGPointList& resultList, float progress)
61 FloatPoint segment = FloatPoint(adjustAnimatedValue(from.x(), to.x(), progress),
62 adjustAnimatedValue(from.y(), to.y(), progress));
  /frameworks/base/core/java/android/preference/
SeekBarPreference.java 107 public void setProgress(int progress) {
108 setProgress(progress, true);
111 private void setProgress(int progress, boolean notifyChanged) {
112 if (progress > mMax) {
113 progress = mMax;
115 if (progress < 0) {
116 progress = 0;
118 if (progress != mProgress) {
119 mProgress = progress;
120 persistInt(progress);
136 int progress = seekBar.getProgress(); local
211 int progress; field in class:SeekBarPreference.SavedState
    [all...]

Completed in 356 milliseconds

1 2 3 4 5 6 7 8 91011>>