Searched refs:percentage (Results 1 - 25 of 113) sorted by relevance

12345

/external/clang/test/PCH/
H A Dobjc_property.h5 float percentage; variable
11 @property float percentage; variable
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dunity_service.h19 void SetProgressFraction(float percentage);
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/chromium_org/chrome/app/
H A Dimage_pre_reader_win.h31 // Loads the file passed in as PE Image and touches a percentage of the
38 // The percentage of the file to be read is an integral value between 0 and
41 // for each section, in order, the given percentage of the blocks in that
43 // example: if percentage is 30 and there is a .text section and a .data
56 size_t percentage,
63 size_t percentage,
70 size_t percentage);
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/third_party/WebKit/Source/core/svg/
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 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 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 DSVGAnimationElement.h106 void animateDiscreteType(float percentage, const AnimatedType& fromType, const AnimatedType& toType, AnimatedType& animatedType) argument
108 if ((animationMode() == FromToAnimation && percentage > 0.5) || animationMode() == ToAnimation || percentage == 1) {
115 void animateAdditiveNumber(float percentage, unsigned repeatCount, float fromNumber, float toNumber, float toAtEndOfDurationNumber, float& animatedNumber) argument
119 number = percentage < 0.5 ? fromNumber : toNumber;
121 number = (toNumber - fromNumber) * percentage + fromNumber;
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 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 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 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 DSVGNumberList.h59 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
H A DSVGPointList.cpp132 void SVGPointList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) argument
142 if (!adjustFromToListValues(fromList, toList, percentage, animationElement->animationMode()))
157 animationElement->animateAdditiveNumber(percentage, repeatCount, effectiveFrom.x(), effectiveTo.x(), effectiveToAtEnd.x(), animatedX);
158 animationElement->animateAdditiveNumber(percentage, repeatCount, effectiveFrom.y(), effectiveTo.y(), effectiveToAtEnd.y(), animatedY);
H A DSVGPointList.h59 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
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);
/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/athena/resource_manager/delegate/
H A Dresource_manager_delegate.cc60 int percentage = ((total_memory - available_memory) * 100) / total_memory;
61 return percentage;
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DInterpolableValue.cpp59 PassOwnPtrWillBeRawPtr<InterpolableValue> InterpolableAnimatableValue::interpolate(const InterpolableValue &other, const double percentage) const
62 if (!percentage)
64 if (percentage == 1)
66 return create(AnimatableValue::interpolate(m_value.get(), otherValue.m_value.get(), percentage));
/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&);
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dcheck-dom-results93 my $percentage = (sprintf "%.1f", ($successCount * 100.0 / $count));
95 if ($percentage == 100) {
98 print "${name}: ${successCount} out of ${count} tests succeeded (${percentage}%)";
/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
H A Drand.h25 extern unsigned long fill_random_buf_percentage(struct frand_state *, void *buf, unsigned int percentage, unsigned int segment, unsigned int len);
/external/chromium_org/media/base/android/
H A Dmedia_player_manager.h51 // Called when buffering has changed. Args: player ID, percentage
53 virtual void OnBufferingUpdate(int player_id, int percentage) = 0;

Completed in 4898 milliseconds

12345