Searched defs:progress (Results 1 - 25 of 320) sorted by relevance

1234567891011>>

/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/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/PerformanceTests/Dromaeo/resources/
H A Ddromaeorunner.js26 case "dromaeo:progress":
27 DRT.progress(event.data);
40 progress: function(message) {
38 progress: function(message) { method
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
H A DMatrix3DTransformOperation.cpp35 PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
52 toT.blend(fromT, progress);
H A DMatrixTransformOperation.cpp31 PassRefPtr<TransformOperation> MatrixTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
48 toT.blend(fromT, progress);
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 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 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);
/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_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;
H A Dopt_swizzle_swizzle.cpp41 progress = false;
46 bool progress; member in class:__anon12595::ir_swizzle_swizzle_visitor
81 this->progress = true;
96 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_noop_swizzle.cpp44 this->progress = false;
48 bool progress; member in class:__anon22954::ir_noop_swizzle_visitor
73 this->progress = true;
83 return v.progress;
H A Dopt_swizzle_swizzle.cpp41 progress = false;
46 bool progress; member in class:__anon22957::ir_swizzle_swizzle_visitor
81 this->progress = true;
96 return v.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/lzma/CPP/7zip/Common/
H A DProgressUtils.cpp13 void CLocalProgress::Init(IProgress *progress, bool inSizeIsMain) argument
16 _progress = progress;
/external/chromium/chrome/browser/download/
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/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
/external/chromium_org/content/renderer/
H A Dload_progress_tracker.cc42 double progress) {
49 progress_ = progress;
51 // We send the progress change to the browser immediately for the first and
54 // sure to immediately send progress report if enough time has passed.
57 if (progress == 1.0 || last_time_progress_sent_.is_null() ||
60 // If there is a pending task to send progress, it is now obsolete.
63 if (progress == 1.0)
41 DidChangeLoadProgress(WebKit::WebFrame* frame, double progress) argument
/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/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
H A DCustomFilterOperation.cpp56 PassRefPtr<FilterOperation> CustomFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
72 m_parameters.blend(fromOp->m_parameters, progress, animatedParameters);
H A DCustomFilterParameterList.cpp71 double progress, CustomFilterParameterList& resultList) const
81 resultList.append(paramTo->blend(paramFrom, progress));
70 blend(const CustomFilterParameterList& fromList, double progress, CustomFilterParameterList& resultList) const argument
H A DValidatedCustomFilterOperation.cpp55 PassRefPtr<FilterOperation> ValidatedCustomFilterOperation::blend(const FilterOperation*, double progress, bool blendToPassthrough) argument
57 UNUSED_PARAM(progress);

Completed in 451 milliseconds

1234567891011>>