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

12

/external/webkit/WebCore/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.cpp27 PassRefPtr<TransformOperation> ScaleTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
33 return ScaleTransformOperation::create(m_x + (1. - m_x) * progress,
34 m_y + (1. - m_y) * progress,
35 m_z + (1. - m_z) * progress, m_type);
41 return ScaleTransformOperation::create(fromX + (m_x - fromX) * progress,
42 fromY + (m_y - fromY) * progress,
43 fromZ + (m_z - fromZ) * progress, m_type);
H A DSkewTransformOperation.cpp27 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
33 return SkewTransformOperation::create(m_angleX - m_angleX * progress, m_angleY - m_angleY * progress, m_type);
38 return SkewTransformOperation::create(fromAngleX + (m_angleX - fromAngleX) * progress, fromAngleY + (m_angleY - fromAngleY) * progress, m_type);
H A DTranslateTransformOperation.cpp27 PassRefPtr<TransformOperation> TranslateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
33 return TranslateTransformOperation::create(Length(m_x.type()).blend(m_x, progress),
34 Length(m_y.type()).blend(m_y, progress),
35 Length(m_z.type()).blend(m_z, progress), m_type);
41 return TranslateTransformOperation::create(m_x.blend(fromX, progress), m_y.blend(fromY, progress), m_z.blend(fromZ, progress), m_type);
H A DPerspectiveTransformOperation.cpp35 PassRefPtr<TransformOperation> PerspectiveTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
41 return PerspectiveTransformOperation::create(m_p + (1. - m_p) * progress);
51 toT.blend(fromT, progress);
H A DRotateTransformOperation.cpp32 PassRefPtr<TransformOperation> RotateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
38 return RotateTransformOperation::create(m_x, m_y, m_z, m_angle - m_angle * progress, m_type);
50 fromAngle + (m_angle - fromAngle) * progress, m_type);
69 toT.blend(fromT, progress);
/external/webkit/WebCore/html/
H A DHTMLDataGridCellElement.cpp84 float HTMLDataGridCellElement::progress() const function in class:WebCore::HTMLDataGridCellElement
89 void HTMLDataGridCellElement::setProgress(float progress) argument
91 setAttribute(progressAttr, String::number(progress));
/external/webkit/WebKitTools/QtLauncher/
H A Dlocationedit.cpp38 void LocationEdit::setProgress(int progress) argument
41 m_progress = progress;
/external/jpeg/
H A Dcdjpeg.c62 * Optional progress monitor: display a percent-done figure on stderr.
70 cd_progress_ptr prog = (cd_progress_ptr) cinfo->progress;
89 start_progress_monitor (j_common_ptr cinfo, cd_progress_ptr progress) argument
91 /* Enable progress display, unless trace output is on */
93 progress->pub.progress_monitor = progress_monitor;
94 progress->completed_extra_passes = 0;
95 progress->total_extra_passes = 0;
96 progress->percent_done = -1;
97 cinfo->progress = &progress
[all...]
H A Dwrrle.c83 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local
139 if (progress != NULL) {
140 progress->total_extra_passes++; /* count file writing as separate pass */
182 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local
215 if (progress != NULL) {
216 progress->pub.pass_limit = cinfo->output_height;
217 progress->pub.pass_counter = 0;
218 (*progress
[all...]
H A Dcjpeg.c466 struct cdjpeg_progress_mgr progress; local
560 start_progress_monitor((j_common_ptr) &cinfo, &progress);
H A Djpegtran.c340 struct cdjpeg_progress_mgr progress; local
430 start_progress_monitor((j_common_ptr) &dstinfo, &progress);
H A Drdrle.c86 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local
170 if (progress != NULL) {
172 progress->total_extra_passes++;
250 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local
263 if (progress != NULL) {
264 progress->pub.pass_limit = cinfo->image_height;
265 progress->pub.pass_counter = 0;
266 (*progress
[all...]
H A Ddjpeg.c429 struct cdjpeg_progress_mgr progress; local
525 start_progress_monitor((j_common_ptr) &cinfo, &progress);
592 progress.pub.completed_passes = progress.pub.total_passes;
H A Drdbmp.c195 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local
199 if (progress != NULL) {
200 progress->pub.pass_counter = (long) row;
201 progress->pub.pass_limit = (long) cinfo->image_height;
202 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo);
215 if (progress != NULL)
216 progress->completed_extra_passes++;
388 if (cinfo->progress != NULL) {
389 cd_progress_ptr progress local
[all...]
H A Drdtarga.c304 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local
308 if (progress != NULL) {
309 progress->pub.pass_counter = (long) row;
310 progress->pub.pass_limit = (long) cinfo->image_height;
311 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo);
317 if (progress != NULL)
318 progress->completed_extra_passes++;
427 if (cinfo->progress != NULL) {
428 cd_progress_ptr progress local
[all...]
H A Dwrbmp.c352 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local
362 if (progress != NULL) {
363 progress->pub.pass_counter = (long) (cinfo->output_height - row);
364 progress->pub.pass_limit = (long) cinfo->output_height;
365 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo);
375 if (progress != NULL)
376 progress->completed_extra_passes++;
429 if (cinfo->progress != NULL) {
430 cd_progress_ptr progress local
[all...]
/external/skia/src/views/
H A DSkProgressBarView.cpp22 //this implies that if a new max and progress are set, max must be set first
64 if (dom.findS32(node, "progress", &temp))
95 void SkProgressBarView::setProgress(int progress) argument
97 fProgress = progress;
100 e.setS32("newProgress", progress);
/external/webkit/WebCore/svg/
H A DSVGPathSegList.cpp147 static inline float blendFunc(float from, float to, float progress) argument
149 return (to - from) * progress + from;
153 class::create(blendFunc(static_cast<class*>(from)->attr1(), static_cast<class*>(to)->attr1(), progress))
156 class::create(blendFunc(static_cast<class*>(from)->attr1(), static_cast<class*>(to)->attr1(), progress), \
157 blendFunc(static_cast<class*>(from)->attr2(), static_cast<class*>(to)->attr2(), progress))
160 class::create(blendFunc(static_cast<class*>(from)->attr1(), static_cast<class*>(to)->attr1(), progress), \
161 blendFunc(static_cast<class*>(from)->attr2(), static_cast<class*>(to)->attr2(), progress), \
162 blendFunc(static_cast<class*>(from)->attr3(), static_cast<class*>(to)->attr3(), progress), \
163 blendFunc(static_cast<class*>(from)->attr4(), static_cast<class*>(to)->attr4(), progress))
166 class::create(blendFunc(static_cast<class*>(from)->attr1(), static_cast<class*>(to)->attr1(), progress), \
182 createAnimated(const SVGPathSegList* fromList, const SVGPathSegList* toList, float progress) argument
[all...]
/external/webkit/WebKit/qt/tests/qwebview/
H A Dtst_qwebview.cpp183 void loading(int progress) argument
185 if (progress >= 20 && progress < 90) {
/external/e2fsprogs/resize/
H A Dresize2fs.h68 * For the simple progress meter
106 * For the progress meter
108 errcode_t (*progress)(ext2_resize_t rfs, int pass, member in struct:ext2_resize_struct
126 errcode_t (*progress)(ext2_resize_t rfs,
H A Dmain.c48 ext2_sim_progmeter progress; local
52 progress = (ext2_sim_progmeter) rfs->prog_data;
56 if (progress)
57 ext2fs_progress_close(progress);
58 progress = 0;
80 retval = ext2fs_progress_init(&progress, label, 30,
83 progress = 0;
84 rfs->prog_data = (void *) progress;
86 if (progress)
87 ext2fs_progress_update(progress, cu
[all...]
/external/stlport/test/unit/cppunit/
H A Dfile_reporter.h65 // Error might be called several times between 2 progress calls, we shouldn't however consider
75 virtual void progress(const char *in_className, const char *in_shortTestName, bool ignored, bool explicitTest) { function in class:FileReporter
H A Dcppunit_mini.h38 virtual void progress( const char * /*in_className*/, const char * /*in_testName*/, bool /*ignored*/, bool /* explicit */) {} function in class:Reporter
86 virtual void progress(const char *in_className, const char *in_functionName, bool ignored, bool explicitTest) { function in class:TestCase
89 m_reporter->progress(in_className, in_functionName, ignored, explicitTest);
155 progress(className, #X, ignoring || !shouldRun, !ignoring && Y); \
174 progress(className, #X, ignoring || !shouldRun, !ignoring && Y); \

Completed in 694 milliseconds

12