Searched refs:progress (Results 1 - 25 of 654) 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/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/e2fsprogs/lib/ext2fs/
H A Dprogress.c2 * progress.c - Numeric progress meter
31 struct ext2fs_numeric_progress_struct * progress,
36 * progress-related messages, whereas the SKIP_PROGRESS
48 memset(progress, 0, sizeof(*progress));
50 progress->skip_progress++;
56 progress->max = max;
57 progress->log_max = int_log10(max);
67 struct ext2fs_numeric_progress_struct * progress,
30 ext2fs_numeric_progress_init(ext2_filsys fs, struct ext2fs_numeric_progress_struct * progress, const char *label, __u64 max) argument
66 ext2fs_numeric_progress_update(ext2_filsys fs, struct ext2fs_numeric_progress_struct * progress, __u64 val) argument
86 ext2fs_numeric_progress_close(ext2_filsys fs, struct ext2fs_numeric_progress_struct * progress, const char *message) argument
[all...]
/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:__anon14271::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(blink::blend(from.location(), location(), progress),
44 clampTo(blink::blend(from.blur(), blur(), progress), 0.0f),
45 blink::blend(from.spread(), spread(), progress),
47 blink::blend(from.color(), color(), progress));
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
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 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);
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 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 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), blink::blend(0., m_z, progress), m_type);
40 return TranslateTransformOperation::create(m_x.blend(fromX, progress, ValueRangeAll), m_y.blend(fromY, progress, ValueRangeAll), blink::blend(fromZ, m_z, progress), m_type);
/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/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/animation/
H A DInterpolableValue.cpp12 PassOwnPtrWillBeRawPtr<InterpolableValue> InterpolableNumber::interpolate(const InterpolableValue &to, const double progress) const
15 if (!progress)
17 if (progress == 1)
19 return create(m_value * (1 - progress) + toNumber.m_value * progress);
22 PassOwnPtrWillBeRawPtr<InterpolableValue> InterpolableBool::interpolate(const InterpolableValue &to, const double progress) const
24 if (progress < 0.5) {
30 PassOwnPtrWillBeRawPtr<InterpolableValue> InterpolableList::interpolate(const InterpolableValue &to, const double progress) const
35 if (!progress) {
38 if (progress
[all...]
/external/chromium_org/third_party/libjpeg_turbo/
H A Djdtrans.c56 /* 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;
134 /* Initialize progress monitoring. */
135 if (cinfo->progress !
[all...]
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jdtrans.c57 /* Call progress monitor hook if present */
58 if (cinfo->progress != NULL)
59 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
66 /* Advance progress counter if appropriate */
67 if (cinfo->progress != NULL &&
69 if (++cinfo->progress->pass_counter >= cinfo->progress->pass_limit) {
71 cinfo->progress->pass_limit += (long) cinfo->total_iMCU_rows;
126 /* Initialize progress monitoring. */
127 if (cinfo->progress !
[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_org/third_party/WebKit/Source/devtools/front_end/audits/
H A DAuditCategory.js56 * @param {!WebInspector.Progress} progress
58 run: function(target, requests, ruleResultCallback, categoryDoneCallback, progress)

Completed in 5824 milliseconds

1234567891011>>