Searched defs:percentage (Results 1 - 25 of 57) sorted by relevance

123

/external/clang/test/PCH/
H A Dobjc_property.h5 float percentage; variable
11 @property float percentage; variable
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGBoolean.cpp63 void SVGBoolean::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase>, SVGElement*) argument
69 animationElement->animateDiscreteType<bool>(percentage, fromBoolean, toBoolean, m_value);
H A DSVGString.cpp32 void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase>, SVGElement*) argument
39 animationElement->animateDiscreteType<String>(percentage, fromString, toString, m_value);
H A DSVGEnumeration.cpp112 void SVGEnumerationBase::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase>, SVGElement*) argument
118 animationElement->animateDiscreteType<unsigned short>(percentage, fromEnumeration, toEnumeration, m_value);
H A DSVGInteger.cpp75 void SVGInteger::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) argument
84 animationElement->animateAdditiveNumber(percentage, repeatCount, fromInteger->value(), toInteger->value(), toAtEndOfDurationInteger->value(), animatedFloat);
H A DSVGNumber.cpp99 void SVGNumber::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) argument
107 animationElement->animateAdditiveNumber(percentage, repeatCount, fromNumber->value(), toNumber->value(), toAtEndOfDurationNumber->value(), m_value);
H A DSVGNumberOptionalNumber.cpp90 void SVGNumberOptionalNumber::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) argument
100 animationElement->animateAdditiveNumber(percentage, repeatCount, fromNumber->firstNumber()->value(), toNumber->firstNumber()->value(), toAtEndOfDurationNumber->firstNumber()->value(), x);
101 animationElement->animateAdditiveNumber(percentage, repeatCount, fromNumber->secondNumber()->value(), toNumber->secondNumber()->value(), toAtEndOfDurationNumber->secondNumber()->value(), y);
H A DSVGAnimatedColor.cpp61 void SVGColorProperty::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) argument
77 animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.red(), toColor.red(), toAtEndOfDurationColor.red(), animatedRed);
80 animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.green(), toColor.green(), toAtEndOfDurationColor.green(), animatedGreen);
83 animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.blue(), toColor.blue(), toAtEndOfDurationColor.blue(), animatedBlue);
86 animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.alpha(), toColor.alpha(), toAtEndOfDurationColor.alpha(), animatedAlpha);
H A DSVGIntegerOptionalInteger.cpp93 void SVGIntegerOptionalInteger::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) argument
103 animationElement->animateAdditiveNumber(percentage, repeatCount, fromInteger->firstInteger()->value(), toInteger->firstInteger()->value(), toAtEndOfDurationInteger->firstInteger()->value(), x);
104 animationElement->animateAdditiveNumber(percentage, repeatCount, fromInteger->secondInteger()->value(), toInteger->secondInteger()->value(), toAtEndOfDurationInteger->secondInteger()->value(), y);
H A DSVGPoint.cpp125 void SVGPoint::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) argument
H A DSVGRect.cpp128 void SVGRect::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) argument
139 animationElement->animateAdditiveNumber(percentage, repeatCount, fromRect->x(), toRect->x(), toAtEndOfDurationRect->x(), animatedX);
140 animationElement->animateAdditiveNumber(percentage, repeatCount, fromRect->y(), toRect->y(), toAtEndOfDurationRect->y(), animatedY);
141 animationElement->animateAdditiveNumber(percentage, repeatCount, fromRect->width(), toRect->width(), toAtEndOfDurationRect->width(), animatedWidth);
142 animationElement->animateAdditiveNumber(percentage, repeatCount, fromRect->height(), toRect->height(), toAtEndOfDurationRect->height(), animatedHeight);
H A DSVGAngle.cpp73 void SVGMarkerOrientEnumeration::calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) argument
374 void SVGAngle::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) argument
391 if (percentage < 0.5f) {
403 if (percentage >= 0.5f) {
427 animationElement->animateAdditiveNumber(percentage, repeatCount, fromAngle->value(), toAngle->value(), toAtEndOfDurationAngle->value(), animatedValue);
H A DSVGAnimateElement.cpp65 void SVGAnimateElement::calculateAnimatedValue(float percentage, unsigned repeatCount, SVGSMILElement* resultElement) argument
72 ASSERT(percentage >= 0 && percentage <= 1);
85 percentage = 1;
88 percentage = percentage < 0.5 ? 0 : 1;
95 m_animator->calculateAnimatedValue(percentage, repeatCount, m_fromProperty.get(), m_toProperty.get(), toAtEndOfDurationProperty, resultAnimationElement->m_animatedProperty.get());
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DCrossfadeGeneratedImage.h39 static PassRefPtr<CrossfadeGeneratedImage> create(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize& size) argument
41 return adoptRef(new CrossfadeGeneratedImage(fromImage, toImage, percentage, crossfadeSize, size));
58 CrossfadeGeneratedImage(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize&);
H A DCrossfadeGeneratedImage.cpp35 CrossfadeGeneratedImage::CrossfadeGeneratedImage(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize& size) argument
38 , m_percentage(percentage)
/external/chromium_org/chrome/browser/spellchecker/
H A Dspellcheck_host_metrics.cc57 int percentage = (100 * misspelled_word_count_) / spellchecked_word_count_; local
58 UMA_HISTOGRAM_PERCENTAGE("SpellCheck.MisspellRatio", percentage);
101 int percentage = (100 * replaced_word_count_) / misspelled_word_count_; local
102 UMA_HISTOGRAM_PERCENTAGE("SpellCheck.ReplaceRatio", percentage);
106 int percentage = (100 * replaced_word_count_) / suggestion_show_count_; local
107 UMA_HISTOGRAM_PERCENTAGE("SpellCheck.SuggestionHitRatio", percentage);
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dunity_service.cc137 void SetProgressFraction(float percentage) { argument
140 entry_set_progress(chrome_entry, percentage);
142 percentage > 0.0 && percentage < 1.0);
/external/fio/lib/
H A Drand.c94 unsigned int percentage,
100 if (percentage == 100) {
115 this_len = (segment * (100 - percentage)) / 100;
93 fill_random_buf_percentage(struct frand_state *fs, void *buf, unsigned int percentage, unsigned int segment, unsigned int len) argument
/external/chromium_org/base/process/
H A Dprocess_metrics_openbsd.cc129 double percentage = static_cast<double>((cpu * 100.0) / FSCALE); local
131 return percentage;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCrossfadeValue.cpp110 float percentage = m_percentageValue->getFloatValue(); local
111 float inversePercentage = 1 - percentage;
128 return IntSize(fromImageSize.width() * inversePercentage + toImageSize.width() * percentage,
129 fromImageSize.height() * inversePercentage + toImageSize.height() * percentage);
/external/chromium_org/v8/src/
H A Doptimizing-compiler-thread.cc205 double percentage = time_spent_compiling_.PercentOf(time_spent_total_); local
206 PrintF(" ** Compiler thread did %.2f%% useful work\n", percentage);
/external/expat/tests/
H A Dminicheck.c151 double percentage = ((double) passed) / runner->nchecks; local
152 int display = (int) (percentage * 100);
/external/chromium_org/chrome/app/
H A Dimage_pre_reader_win.cc93 // Return a |percentage| of the number of initialized bytes in the given
96 // This returns a percentage of the lesser of the size of the raw data in
108 size_t percentage) {
110 DCHECK_GT(percentage, 0u);
111 DCHECK_LE(percentage, kOneHundredPercent);
119 size_t length = (initialized_length * percentage) / kOneHundredPercent;
124 // Helper function to read through a |percentage| of the given |section|
130 size_t percentage,
135 DCHECK_LE(percentage, kOneHundredPercent);
139 size_t bytes_to_read = GetPercentageOfSectionLength(section, percentage);
107 GetPercentageOfSectionLength(const IMAGE_SECTION_HEADER* section, size_t percentage) argument
128 ReadThroughSection(HANDLE file_handle, const IMAGE_SECTION_HEADER* section, size_t percentage, void* temp_buffer, size_t temp_buffer_size) argument
191 PartialPreReadImageOnDisk(const wchar_t* file_path, size_t percentage, size_t max_chunk_size) argument
276 PartialPreReadImageInMemory(const wchar_t* file_path, size_t percentage) argument
399 PartialPreReadImage(const wchar_t* file_path, size_t percentage, size_t max_chunk_size) argument
[all...]
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_histograms.cc321 int percentage = static_cast<int>(fraction * 100); local
322 if (percentage < 0 || percentage > 100)
325 origin, UMA_HISTOGRAM_PERCENTAGE(name, percentage));
/external/chromium_org/extensions/browser/api/web_request/
H A Dweb_request_time_tracker.cc23 // much". This is given in percentage of total request time that was spent
172 double percentage = local
176 static_cast<int>(100*percentage));
179 log.request_duration.InMilliseconds() << " = " << percentage;
183 if (percentage > kThresholdExcessiveDelay) {
194 } else if (percentage > kThresholdModerateDelay) {

Completed in 451 milliseconds

123