/external/clang/test/PCH/ |
objc_property.h | 5 float percentage; variable 11 @property float percentage; variable
|
/external/chromium_org/chrome/browser/ui/libgtk2ui/ |
unity_service.h | 19 void SetProgressFraction(float percentage);
|
unity_service.cc | 137 void SetProgressFraction(float percentage) { 140 entry_set_progress(chrome_entry, percentage); 142 percentage > 0.0 && percentage < 1.0);
|
/external/chromium_org/chrome/app/ |
image_pre_reader_win.h | 31 // 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);
|
image_pre_reader_win.cc | 93 // 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); [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
CrossfadeGeneratedImage.h | 39 static PassRefPtr<CrossfadeGeneratedImage> create(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize& size) 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/Source/core/svg/ |
SVGString.cpp | 32 void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase>, SVGElement*) 39 animationElement->animateDiscreteType<String>(percentage, fromString, toString, m_value);
|
SVGBoolean.cpp | 63 void SVGBoolean::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase>, SVGElement*) 69 animationElement->animateDiscreteType<bool>(percentage, fromBoolean, toBoolean, m_value);
|
SVGAnimatedColor.cpp | 61 void SVGColorProperty::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) 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);
|
SVGAnimationElement.h | 106 void animateDiscreteType(float percentage, const AnimatedType& fromType, const AnimatedType& toType, AnimatedType& animatedType) 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) 119 number = percentage < 0.5 ? fromNumber : toNumber; 121 number = (toNumber - fromNumber) * percentage + fromNumber;
|
SVGInteger.cpp | 75 void SVGInteger::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) 84 animationElement->animateAdditiveNumber(percentage, repeatCount, fromInteger->value(), toInteger->value(), toAtEndOfDurationInteger->value(), animatedFloat);
|
SVGRect.cpp | 128 void SVGRect::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) 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);
|
SVGIntegerOptionalInteger.cpp | 93 void SVGIntegerOptionalInteger::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) 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);
|
SVGNumberOptionalNumber.cpp | 90 void SVGNumberOptionalNumber::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) 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);
|
SVGAnimateMotionElement.h | 50 virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGSMILElement* resultElement) OVERRIDE; 65 // Note: we do not support percentage values for to/from coords as the spec implies we should (opera doesn't either)
|
SVGAnimatedColor.h | 54 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
|
/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
PercentageBarChart.java | 44 public final float percentage; field in class:PercentageBarChart.Entry 47 protected Entry(int order, float percentage, Paint paint) { 49 this.percentage = percentage; 89 if (e.percentage == 0.0f) { 92 entryWidth = Math.max(mMinTickWidth, width * e.percentage); 113 if (e.percentage == 0.0f) { 116 entryWidth = Math.max(mMinTickWidth, width * e.percentage); 144 * Adds a new slice to the percentage bar chart. Callers are responsible for 147 * @param percentage the total width tha [all...] |
UsageBarPreference.java | 31 * Creates a percentage bar chart inside a preference. 56 public void addEntry(int order, float percentage, int color) { 57 mEntries.add(PercentageBarChart.createEntry(order, percentage, color));
|
/external/chromium_org/chrome/browser/spellchecker/ |
spellcheck_host_metrics.cc | 57 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/ |
resource_manager_delegate.cc | 60 int percentage = ((total_memory - available_memory) * 100) / total_memory; 61 return percentage;
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
InterpolableValue.cpp | 59 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));
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/ |
PercentageBarChart.java | 38 final float percentage; field in class:PercentageBarChart.Entry 41 public Entry(int order, float percentage, int color) { 43 this.percentage = percentage; 62 dest.writeFloat(percentage); 119 if (e.percentage == 0.0f) { 123 final float entryWidth = Math.max(mMinTickWidth, mWidth * e.percentage);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
check-dom-results | 93 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/ |
rand.c | 94 unsigned int percentage, 100 if (percentage == 100) { 115 this_len = (segment * (100 - percentage)) / 100;
|
/external/chromium_org/media/base/android/ |
media_player_manager.h | 51 // Called when buffering has changed. Args: player ID, percentage 53 virtual void OnBufferingUpdate(int player_id, int percentage) = 0;
|