Searched refs:progress (Results 1 - 25 of 581) sorted by relevance

1234567891011>>

/external/javasqlite/src/main/java/SQLite/
H A DProgressHandler.java4 * Callback interface for SQLite's user defined progress handler.
16 public boolean progress(); method in interface:ProgressHandler
/external/mockito/src/org/mockito/internal/progress/
H A DIOngoingStubbing.java5 package org.mockito.internal.progress;
H A DSequenceNumber.java5 package org.mockito.internal.progress;
/external/chromium_org/chrome/browser/download/
H A Ddownload_status_updater_gtk.cc11 float progress = 0; local
13 GetProgress(&progress, &download_count);
15 unity::SetProgressFraction(progress);
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DAnimationUtilities.h37 inline int blend(int from, int to, double progress) argument
39 return lround(from + (to - from) * progress);
44 inline T blend(T from, T to, double progress) argument
47 return clampTo<T>(round(to > from ? from + (to - from) * progress : from - (from - to) * progress));
50 inline double blend(double from, double to, double progress) argument
52 return from + (to - from) * progress;
55 inline float blend(float from, float to, double progress) argument
57 return static_cast<float>(from + (to - from) * progress);
60 inline LayoutUnit blend(LayoutUnit from, LayoutUnit to, double progress) argument
65 blend(const IntPoint& from, const IntPoint& to, double progress) argument
[all...]
/external/chromium/chrome/browser/download/
H A Ddownload_status_updater_unittest.cc84 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 local
126 float progress = -1; local
141 float progress = -1; local
150 float progress = -1; local
159 float progress = -1; local
[all...]
H A Ddownload_status_updater.cc30 float progress = 0; local
31 bool progress_known = GetProgress(&progress);
35 progress);
38 bool DownloadStatusUpdater::GetProgress(float* progress) { argument
39 *progress = 0;
52 *progress = static_cast<float>(received_bytes) / total_bytes;
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_noise.cpp36 lower_noise_visitor() : progress(false)
55 this->progress = true;
59 bool progress; member in class:lower_noise_visitor
70 return v.progress;
H A Dopt_dead_code.cpp48 bool progress = false; local
83 progress = true;
110 progress = true;
119 return progress;
132 bool progress = false; local
147 progress = true;
152 return progress;
H A Dopt_noop_swizzle.cpp44 this->progress = false;
48 bool progress; member in class:__anon13417::ir_noop_swizzle_visitor
73 this->progress = true;
83 return v.progress;
/external/mesa3d/src/glsl/
H A Dlower_noise.cpp36 lower_noise_visitor() : progress(false)
55 this->progress = true;
59 bool progress; member in class:lower_noise_visitor
70 return v.progress;
H A Dopt_dead_code.cpp48 bool progress = false; local
83 progress = true;
110 progress = true;
119 return progress;
132 bool progress = false; local
147 progress = true;
152 return progress;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShadowData.cpp38 ShadowData ShadowData::blend(const ShadowData& from, double progress) const
43 return ShadowData(WebCore::blend(from.location(), location(), progress),
44 clampTo<int>(WebCore::blend(from.blur(), blur(), progress), 0),
45 WebCore::blend(from.spread(), spread(), progress),
47 WebCore::blend(from.color(), color(), progress));
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DSkewTransformOperation.cpp29 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
35 return SkewTransformOperation::create(WebCore::blend(m_angleX, 0.0, progress), WebCore::blend(m_angleY, 0.0, progress), m_type);
40 return SkewTransformOperation::create(WebCore::blend(fromAngleX, m_angleX, progress), WebCore::blend(fromAngleY, m_angleY, progress), m_type);
H A DInterpolatedTransformOperation.h42 static PassRefPtr<InterpolatedTransformOperation> create(const TransformOperations& from, const TransformOperations& to, double progress) argument
44 return adoptRef(new InterpolatedTransformOperation(from, to, progress));
55 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
62 InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, double progress) argument
65 , progress(progress)
70 double progress; member in class:WebCore::InterpolatedTransformOperation
H A DScaleTransformOperation.cpp29 PassRefPtr<TransformOperation> ScaleTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
35 return ScaleTransformOperation::create(WebCore::blend(m_x, 1.0, progress),
36 WebCore::blend(m_y, 1.0, progress),
37 WebCore::blend(m_z, 1.0, progress), m_type);
43 return ScaleTransformOperation::create(WebCore::blend(fromX, m_x, progress),
44 WebCore::blend(fromY, m_y, progress),
45 WebCore::blend(fromZ, m_z, progress), m_type);
H A DTranslateTransformOperation.cpp27 PassRefPtr<TransformOperation> TranslateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
34 return TranslateTransformOperation::create(zeroLength.blend(m_x, progress, ValueRangeAll), zeroLength.blend(m_y, progress, ValueRangeAll), zeroLength.blend(m_z, progress, ValueRangeAll), m_type);
40 return TranslateTransformOperation::create(m_x.blend(fromX, progress, ValueRangeAll), m_y.blend(fromY, progress, ValueRangeAll), m_z.blend(fromZ, progress, ValueRangeAll), m_type);
H A DInterpolatedTransformOperation.cpp43 return progress == t->progress && from == t->from && to == t->to;
53 toTransform.blend(fromTransform, progress);
57 PassRefPtr<TransformOperation> InterpolatedTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
69 return InterpolatedTransformOperation::create(thisOperations, fromOperations, progress);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilterOperation.cpp34 PassRefPtr<FilterOperation> FilterOperation::blend(const FilterOperation* from, const FilterOperation* to, double progress) argument
38 return to->blend(from, progress);
39 return from->blend(0, 1 - progress);
42 PassRefPtr<FilterOperation> BasicColorMatrixFilterOperation::blend(const FilterOperation* from, double progress) const
64 double result = WebCore::blend(fromAmount, m_amount, progress);
81 PassRefPtr<FilterOperation> BasicComponentTransferFilterOperation::blend(const FilterOperation* from, double progress) const
103 double result = WebCore::blend(fromAmount, m_amount, progress);
119 PassRefPtr<FilterOperation> BlurFilterOperation::blend(const FilterOperation* from, double progress) const
123 return BlurFilterOperation::create(m_stdDeviation.blend(Length(lengthType), progress, ValueRangeNonNegative));
126 return BlurFilterOperation::create(m_stdDeviation.blend(fromOp->m_stdDeviation, progress, ValueRangeNonNegativ
[all...]
/external/libmtp/examples/
H A Dpathutils.h25 int progress (const uint64_t, const uint64_t, void const * const);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowProgressBar.java11 private int progress; field in class:ShadowProgressBar
29 if (progress > max) {
30 progress = max;
40 public void setProgress(int progress) { argument
41 if (!isIndeterminate()) this.progress = Math.min(max, progress);
46 return isIndeterminate ? 0 : progress;
71 if (!isIndeterminate()) setProgress(progress + diff);
H A DShadowSeekBar.java24 public void setProgress(int progress) { argument
25 super.setProgress(progress);
27 listener.onProgressChanged( realSeekBar, progress, true);
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
H A Ddownload.py32 def ShowKnownProgress(progress):
33 '''Returns a progress function based on a known file size'''
34 if progress == 0:
36 elif progress == -1:
39 new_dots = progress * 50 / file_size - dots[0]
54 progress_func: [optional] A function used to report download progress. If
55 provided, progress_func is called with progress=0 at the
56 beginning of the download, periodically with progress>0
58 progress=-1 at the end or if the download was aborted.
63 # Use a no-op progress functio
[all...]
/external/chromium/chrome/browser/ui/cocoa/
H A Ddock_icon.h18 // 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/lzma/C/
H A DXzEnc.h17 ICompressProgress *progress);

Completed in 692 milliseconds

1234567891011>>