/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 | 132 void SetProgressFraction(float percentage) { 135 entry_set_progress(chrome_entry, percentage); 137 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/chrome/browser/ui/gtk/ |
unity_service.h | 21 void SetProgressFraction(float percentage);
|
unity_service.cc | 130 void SetProgressFraction(float percentage) { 133 entry_set_progress(chrome_entry, percentage); 135 percentage > 0.0 && percentage < 1.0);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
CrossfadeGeneratedImage.h | 41 static PassRefPtr<CrossfadeGeneratedImage> create(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize& size) 43 return adoptRef(new CrossfadeGeneratedImage(fromImage, toImage, percentage, crossfadeSize, size)); 60 CrossfadeGeneratedImage(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize&);
|
/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...] |
/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/third_party/WebKit/Source/core/svg/ |
SVGAnimatedRect.cpp | 74 void SVGAnimatedRectAnimator::calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType* from, SVGAnimatedType* to, SVGAnimatedType* toAtEndOfDuration, SVGAnimatedType* animated) 88 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromRect.x(), toRect.x(), toAtEndOfDurationRect.x(), animatedX); 89 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromRect.y(), toRect.y(), toAtEndOfDurationRect.y(), animatedY); 90 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromRect.width(), toRect.width(), toAtEndOfDurationRect.width(), animatedWidth); 91 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromRect.height(), toRect.height(), toAtEndOfDurationRect.height(), animatedHeight);
|
SVGAnimatedColor.h | 42 virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*);
|
SVGAnimatedInteger.cpp | 74 void SVGAnimatedIntegerAnimator::calculateAnimatedInteger(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, int fromInteger, int toInteger, int toAtEndOfDurationInteger, int& animatedInteger) 77 animationElement->animateAdditiveNumber(percentage, repeatCount, fromInteger, toInteger, toAtEndOfDurationInteger, animatedNumber); 81 void SVGAnimatedIntegerAnimator::calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType* from, SVGAnimatedType* to, SVGAnimatedType* toAtEndOfDuration, SVGAnimatedType* animated) 91 calculateAnimatedInteger(m_animationElement, percentage, repeatCount, fromInteger, toInteger, toAtEndOfDurationInteger, animatedInteger);
|
SVGAnimatedIntegerOptionalInteger.h | 42 virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*);
|
SVGAnimatedNumberOptionalNumber.h | 42 virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*);
|
SVGAnimatedPath.h | 42 virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*);
|
SVGAnimatedPointList.cpp | 82 void SVGAnimatedPointListAnimator::calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType* from, SVGAnimatedType* to, SVGAnimatedType* toAtEndOfDuration, SVGAnimatedType* animated) 90 if (!m_animationElement->adjustFromToListValues<SVGPointList>(fromPointList, toPointList, animatedPointList, percentage)) 105 m_animationElement->animateAdditiveNumber(percentage, repeatCount, effectiveFrom.x(), toPointList[i].x(), effectiveToAtEnd.x(), animatedX); 106 m_animationElement->animateAdditiveNumber(percentage, repeatCount, effectiveFrom.y(), toPointList[i].y(), effectiveToAtEnd.y(), animatedY);
|
SVGAnimatedPointList.h | 46 virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*);
|
SVGAnimatedBoolean.cpp | 70 void SVGAnimatedBooleanAnimator::calculateAnimatedValue(float percentage, unsigned, SVGAnimatedType* from, SVGAnimatedType* to, SVGAnimatedType*, SVGAnimatedType* animated) 79 m_animationElement->animateDiscreteType<bool>(percentage, fromBoolean, toBoolean, animatedBoolean);
|
SVGAnimatedInteger.h | 48 static void calculateAnimatedInteger(SVGAnimationElement*, float percentage, unsigned repeatCount, int fromInteger, int toInteger, int toAtEndOfDurationInteger, int& animatedInteger); 58 virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*);
|
SVGAnimatedPreserveAspectRatio.cpp | 70 void SVGAnimatedPreserveAspectRatioAnimator::calculateAnimatedValue(float percentage, unsigned, SVGAnimatedType* from, SVGAnimatedType* to, SVGAnimatedType*, SVGAnimatedType* animated) 79 m_animationElement->animateDiscreteType<SVGPreserveAspectRatio>(percentage, fromPreserveAspectRatio, toPreserveAspectRatio, animatedPreserveAspectRatio);
|
SVGAnimationElement.h | 111 bool adjustFromToListValues(const AnimatedType& fromList, const AnimatedType& toList, AnimatedType& animatedList, float percentage, bool resizeAnimatedListIfNeeded = true) 121 if (percentage < 0.5) { 138 void animateDiscreteType(float percentage, const AnimatedType& fromType, const AnimatedType& toType, AnimatedType& animatedType) 140 if ((animationMode() == FromToAnimation && percentage > 0.5) || animationMode() == ToAnimation || percentage == 1) { 147 void animateAdditiveNumber(float percentage, unsigned repeatCount, float fromNumber, float toNumber, float toAtEndOfDurationNumber, float& animatedNumber) 151 number = percentage < 0.5 ? fromNumber : toNumber; 153 number = (toNumber - fromNumber) * percentage + fromNumber;
|
/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/chromium_org/media/cast/test/transport/ |
transport.h | 39 void SetSendSidePacketLoss(int percentage);
|
/external/chromium_org/v8/src/ |
runtime-profiler.cc | 111 int* percentage) { 120 *percentage = *ic_total_count > 0 134 int typeinfo, total, percentage; local 135 GetICCounts(function->shared()->code(), &typeinfo, &total, &percentage); 136 PrintF(", ICs with typeinfo: %d/%d (%d%%)", typeinfo, total, percentage); 329 int typeinfo, total, percentage; local 330 GetICCounts(shared_code, &typeinfo, &total, &percentage); 331 if (percentage >= FLAG_type_info_threshold) { 343 typeinfo, total, percentage);
|