Searched refs:progress (Results 126 - 150 of 246) sorted by relevance

12345678910

/external/jpeg/
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 Dcdjpeg.h76 * about these passes, but we'd like them to be counted by the progress
77 * monitor. We use an expanded progress monitor object to hold the
147 cd_progress_ptr progress));
/external/libvpx/examples/includes/geshi/geshi/
H A Dprogress.php3 * progress.php
/external/qemu/distrib/jpeg-6b/
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 Dcdjpeg.h76 * about these passes, but we'd like them to be counted by the progress
77 * monitor. We use an expanded progress monitor object to hold the
147 cd_progress_ptr progress));
/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
/external/webkit/Source/WebCore/fileapi/
H A DFileReader.h100 DEFINE_ATTRIBUTE_EVENT_LISTENER(progress);
/external/webkit/Source/WebCore/loader/
H A DPingLoader.cpp97 unsigned long identifier = frame->page()->progress()->createUniqueIdentifier();
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DTranslateTransformOperation.h73 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
H A DAffineTransform.h120 void blend(const AffineTransform& from, double progress);
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqgraphicswkview.h61 Q_SIGNAL void loadProgress(int progress);
H A Dqwkpage.h129 Q_SIGNAL void loadProgress(int progress);
/external/chromium/chrome/browser/chromeos/login/
H A Dupdate_view.cc36 // Y offset for the progress bar.
130 void UpdateView::SetProgress(int progress) { argument
131 progress_bar_->SetProgress(progress);
/external/e2fsprogs/e2fsck/
H A De2fsck.c221 if (ctx->progress)
222 (void) (ctx->progress)(ctx, 0, 0, 0);
H A Dpass3.c95 if (ctx->progress)
96 if ((ctx->progress)(ctx, 3, 0, maxdirs))
103 if (ctx->progress && (ctx->progress)(ctx, 3, count++, maxdirs))
/external/v8/tools/
H A Dtest-wrapper-gypbuild.py71 result.add_option("-p", "--progress",
72 help="The style of progress indicator (verbose, dots, color, mono)",
162 if options.progress != 'mono':
163 result += ['--progress=' + options.progress]
/external/webkit/Source/WebCore/svg/
H A DSVGPathParserFactory.cpp235 bool SVGPathParserFactory::buildAnimatedSVGPathByteStream(SVGPathByteStream* fromStream, SVGPathByteStream* toStream, OwnPtr<SVGPathByteStream>& result, float progress) argument
248 bool ok = blender->blendAnimatedPath(progress, fromSource.get(), toSource.get(), builder);
/external/webkit/Source/WebCore/css/
H A DCSSGradientValue.cpp87 static inline int blend(int from, int to, float progress) argument
89 return int(from + (to - from) * progress);
92 static inline Color blend(const Color& from, const Color& to, float progress) argument
95 return Color(blend(from.red(), to.red(), progress),
96 blend(from.green(), to.green(), progress),
97 blend(from.blue(), to.blue(), progress),
98 blend(from.alpha(), to.alpha(), progress));
/external/chromium/chrome/browser/ui/webui/options/
H A Dabout_page_handler.cc357 int progress = static_cast<int>(status.download_progress * 100.0); local
358 if (progress != progress_) {
359 progress_ = progress;
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dprinting.py44 PRINT_DEFAULT = ("misc,one-line-progress,one-line-summary,unexpected,"
46 PRINT_EVERYTHING = ("actual,config,expected,misc,one-line-progress,"
60 detailed-progress option, see below for the full list )
69 detailed-progress print one dot per test completed
70 one-line-progress print a one-line progress bar
75 this is specified it will override the '*-progress'
90 - 'detailed-progress' can only be used if running in a single thread
93 'one-line-progress' will be used instead.
94 - If both 'detailed-progress' an
[all...]
/external/webkit/Source/WebCore/dom/
H A DEventNames.h149 macro(progress) \
/external/webkit/Source/WebCore/rendering/
H A DRenderThemeChromiumSkia.cpp568 double progress = renderProgress->animationProgress(); local
569 if (progress < 0.5)
570 return IntRect(rect.x() + progress * 2 * movableWidth, rect.y(), valueWidth, rect.height());
571 return IntRect(rect.x() + (1.0 - progress) * 2 * movableWidth, rect.y(), valueWidth, rect.height());
/external/webkit/Source/WebCore/svg/animation/
H A DSVGSMILElement.h93 void progress(SMILTime elapsed, SVGSMILElement* resultsElement);
/external/webkit/Source/WebKit/qt/Api/
H A Dqgraphicswebview.h119 void loadProgress(int progress);
H A Dqwebview.h123 void loadProgress(int progress);

Completed in 508 milliseconds

12345678910