Searched refs:progress (Results 1 - 25 of 549) 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/third_party/WebKit/Source/core/platform/animation/
H A DAnimationUtilities.h35 inline int blend(int from, int to, double progress) argument
37 return lround(from + (to - from) * progress);
40 inline unsigned blend(unsigned from, unsigned to, double progress) argument
42 return lround(to > from ? from + (to - from) * progress : from - (from - to) * progress);
45 inline double blend(double from, double to, double progress) argument
47 return from + (to - from) * progress;
50 inline float blend(float from, float to, double progress) argument
52 return static_cast<float>(from + (to - from) * progress);
55 inline LayoutUnit blend(LayoutUnit from, LayoutUnit to, double progress) argument
60 blend(const IntPoint& from, const IntPoint& to, double progress) argument
[all...]
/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/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:__anon12592::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/platform/graphics/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));
56 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
58 InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, double progress) argument
61 , progress(progress)
66 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), zeroLength.blend(m_y, progress), zeroLength.blend(m_z, progress), m_type);
40 return TranslateTransformOperation::create(m_x.blend(fromX, progress), m_y.blend(fromY, progress), m_z.blend(fromZ, progress), m_type);
H A DInterpolatedTransformOperation.cpp43 return progress == t->progress && from == t->from && to == t->to;
53 toTransform.blend(fromTransform, progress);
58 PassRefPtr<TransformOperation> InterpolatedTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
70 return InterpolatedTransformOperation::create(thisOperations, fromOperations, progress);
H A DTransformOperations.cpp68 TransformOperations TransformOperations::blendByMatchingOperations(const TransformOperations& from, const double& progress) const
78 RefPtr<TransformOperation> blendedOperation = toOperation ? toOperation->blend(fromOperation.get(), progress) : (fromOperation ? fromOperation->blend(0, progress, true) : 0);
83 if (progress > 0.5)
93 TransformOperations TransformOperations::blendByUsingMatrixInterpolation(const TransformOperations& from, double progress) const
96 result.operations().append(InterpolatedTransformOperation::create(from, *this, progress));
100 TransformOperations TransformOperations::blend(const TransformOperations& from, double progress) const
106 return blendByMatchingOperations(from, progress);
108 return blendByUsingMatrixInterpolation(from, progress);
/external/libmtp/examples/
H A Dpathutils.h25 int progress (const uint64_t, const uint64_t, void const * const);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
H A DFilterOperation.cpp34 PassRefPtr<FilterOperation> BasicColorMatrixFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
40 return BasicColorMatrixFilterOperation::create(WebCore::blend(m_amount, passthroughAmount(), progress), m_type);
44 return BasicColorMatrixFilterOperation::create(WebCore::blend(fromAmount, m_amount, progress), m_type);
62 PassRefPtr<FilterOperation> BasicComponentTransferFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
68 return BasicComponentTransferFilterOperation::create(WebCore::blend(m_amount, passthroughAmount(), progress), m_type);
72 return BasicComponentTransferFilterOperation::create(WebCore::blend(fromAmount, m_amount, progress), m_type);
92 PassRefPtr<FilterOperation> GammaFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
99 WebCore::blend(m_amplitude, 1.0, progress),
100 WebCore::blend(m_exponent, 1.0, progress),
101 WebCore::blend(m_offset, 0.0, progress), m_typ
113 blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
128 blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
[all...]
/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/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/
H A DTestShellTabObserver.java17 * Called when the load progress of a {@link TestShellTab} has changed.
19 * @param progress The new progress amount (from 0 to 100).
21 public void onLoadProgressChanged(TestShellTab tab, int progress); argument

Completed in 5557 milliseconds

1234567891011>>