Searched defs:progress (Results 1 - 25 of 358) 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/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/platform/transforms/
H A DMatrix3DTransformOperation.cpp33 PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
50 toT.blend(fromT, progress);
H A DMatrixTransformOperation.cpp29 PassRefPtr<TransformOperation> MatrixTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
46 toT.blend(fromT, progress);
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));
58 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false) OVERRIDE;
65 InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, double progress) argument
68 , progress(progress)
73 double progress; member in class:blink::InterpolatedTransformOperation
H A DSkewTransformOperation.cpp29 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
35 return SkewTransformOperation::create(blink::blend(m_angleX, 0.0, progress), blink::blend(m_angleY, 0.0, progress), m_type);
40 return SkewTransformOperation::create(blink::blend(fromAngleX, m_angleX, progress), blink::blend(fromAngleY, m_angleY, progress), 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);
H A DPerspectiveTransformOperation.cpp34 PassRefPtr<TransformOperation> PerspectiveTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
40 double p = blink::blend(m_p, 1., progress); // FIXME: this seems wrong. https://bugs.webkit.org/show_bug.cgi?id=52700
50 toT.blend(fromT, progress);
H A DScaleTransformOperation.cpp29 PassRefPtr<TransformOperation> ScaleTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
35 return ScaleTransformOperation::create(blink::blend(m_x, 1.0, progress),
36 blink::blend(m_y, 1.0, progress),
37 blink::blend(m_z, 1.0, progress), m_type);
43 return ScaleTransformOperation::create(blink::blend(fromX, m_x, progress),
44 blink::blend(fromY, m_y, progress),
45 blink::blend(fromZ, m_z, 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:__anon14271::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:__anon14274::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:__anon27682::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:__anon27685::ir_swizzle_swizzle_visitor
81 this->progress = true;
96 return v.progress;
/external/chromium_org/chrome/browser/download/
H A Ddownload_status_updater_win.cc22 float progress) {
23 // Taskbar progress bar is only supported on Win7.
41 // Iterate through all the browser windows, and draw the progress bar.
48 if (download_count == 0 || progress == 1.0f)
53 taskbar->SetProgressValue(frame, static_cast<int>(progress * 100), 100);
62 // Always update overall progress.
63 float progress = 0; local
65 bool progress_known = GetProgress(&progress, &download_count);
66 UpdateTaskbarProgressBar(download_count, progress_known, progress);
20 UpdateTaskbarProgressBar(int download_count, bool progress_known, float progress) argument
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DAnimationUtilities.h38 inline int blend(int from, int to, double progress) argument
40 return lround(from + (to - from) * progress);
45 inline T blend(T from, T to, double progress) argument
48 return clampTo<T>(round(to > from ? from + (to - from) * progress : from - (from - to) * progress));
51 inline double blend(double from, double to, double progress) argument
53 return from + (to - from) * progress;
56 inline float blend(float from, float to, double progress) argument
58 return static_cast<float>(from + (to - from) * progress);
61 inline LayoutUnit blend(LayoutUnit from, LayoutUnit to, double progress) argument
66 blend(const IntPoint& from, const IntPoint& to, double progress) argument
71 blend(const FloatPoint& from, const FloatPoint& to, double progress) argument
[all...]
/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 = blink::blend(fromAmount, m_amount, progress);
81 PassRefPtr<FilterOperation> BasicComponentTransferFilterOperation::blend(const FilterOperation* from, double progress) const
103 double result = blink::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/chromium_org/third_party/skia/tests/
H A DPathOpsOpCubicThreadedTest.cpp17 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? local
18 if (progress) {
28 if (progress) {
56 if (progress) {
H A DPathOpsOpRectThreadedTest.cpp22 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? local
23 if (progress) {
32 if (progress) {
63 if (progress) {
/external/lzma/CPP/7zip/Common/
H A DProgressUtils.cpp13 void CLocalProgress::Init(IProgress *progress, bool inSizeIsMain) argument
16 _progress = progress;
/external/skia/tests/
H A DPathOpsOpCubicThreadedTest.cpp17 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? local
18 if (progress) {
28 if (progress) {
56 if (progress) {
/external/chromium_org/cc/animation/
H A Dscrollbar_animation_controller_linear_fade.cc35 void ScrollbarAnimationControllerLinearFade::RunAnimationFrame(float progress) { argument
36 ApplyOpacityToScrollbars(1.f - progress);
37 if (progress == 1.f)

Completed in 434 milliseconds

1234567891011>>