HomeSort by relevance Sort by last modified time
    Searched refs:percentage (Results 1 - 25 of 32) sorted by null

1 2

  /external/webkit/WebCore/svg/
SVGAnimateElement.cpp 88 void SVGAnimateElement::calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement* resultElement)
90 ASSERT(percentage >= 0.f && percentage <= 1.f);
93 percentage = 1.f;
106 double number = (m_toNumber - m_fromNumber) * percentage + m_fromNumber;
120 Color color = ColorDistance(m_fromColor, m_toColor).scaledDistance(percentage).addToColorAndClamp(m_fromColor);
130 if (percentage == 0)
132 else if (percentage == 1.f)
136 results->m_animatedPath = SVGPathSegList::createAnimated(m_fromPath.get(), m_toPath.get(), percentage);
141 results->m_animatedPath = ((animationMode == FromToAnimation && percentage > 0.5f) || animationMode == ToAnimation || percentage == 1.0f)
    [all...]
SVGAnimateTransformElement.h 48 virtual void calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement* resultElement);
SVGAnimateElement.h 42 virtual void calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement* resultElement);
SVGAnimateMotionElement.h 45 virtual void calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement* resultElement);
60 // Note: we do not support percentage values for to/from coords as the spec implies we should (opera doesn't either)
SVGAnimateMotionElement.cpp 174 void SVGAnimateMotionElement::calculateAnimatedValue(float percentage, unsigned, SVGSMILElement*)
191 float positionOnPath = path.length() * percentage;
207 transform->translate(diff.width() * percentage + m_fromPoint.x(), diff.height() * percentage + m_fromPoint.y());
SVGAnimationElement.h 98 virtual void calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement* resultElement) = 0;
SVGAnimateTransformElement.cpp 106 void SVGAnimateTransformElement::calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement* resultElement)
121 SVGTransform transform = SVGTransformDistance(m_fromTransform, m_toTransform).scaledDistance(percentage).addToSVGTransform(m_fromTransform);
  /external/webkit/WebKitTools/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}%)";
  /frameworks/base/core/java/android/net/
IConnectivityManager.aidl 76 void reportInetCondition(int networkType, int percentage);
ConnectivityManager.java 559 * @param percentage The quality of the connection 0 is bad, 100 is good
562 public void reportInetCondition(int networkType, int percentage) {
564 mService.reportInetCondition(networkType, percentage);
  /external/expat/tests/
minicheck.c 151 double percentage = ((double) passed) / runner->nchecks; local
152 int display = (int) (percentage * 100);
  /external/webkit/WebCore/platform/text/
AtomicString.h 100 bool percentage(int& p) const { return m_string.percentage(p); } function in class:WebCore::AtomicString
PlatformString.h 191 bool percentage(int& percentage) const;
  /external/chromium/base/
process_util_linux.cc 442 // We have the number of jiffies in the time period. Convert to percentage.
445 int percentage = 100 * (cpu - last_cpu_) / local
451 return percentage;
histogram.cc 351 double percentage = past / scaled_sum; local
352 StringAppendF(output, " {%3.1f%%}", percentage);
  /external/webkit/SunSpider/resources/
sunspider-compare-results.js 305 var percentage = 100 * diff / mean1;
307 var probablySame = (percentage < 0.1) && !statisticallySignificant;
  /packages/apps/Email/src/org/apache/james/mime4j/codec/
EncoderUtil.java 623 int percentage = qEncoded * 100 / bytes.length; local
624 return percentage > 30 ? Encoding.B : Encoding.Q;
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageDetail.java 113 private double mNoCoverage; // Percentage of time that there was no coverage
145 final int percentage = intent.getIntExtra(EXTRA_PERCENT, 1); local
180 .setText(String.format("%d%%", percentage));
  /frameworks/base/media/libstagefright/
AwesomePlayer.cpp 584 int percentage = 100.0 * (double)cachedDurationUs / mDurationUs; local
585 if (percentage > 100) {
586 percentage = 100;
589 notifyListener_l(MEDIA_BUFFERING_UPDATE, percentage);
    [all...]
  /external/jdiff/src/jdiff/
APIComparator.java 137 Double percentage = new Double(differs); local
138 int approxPercentage = percentage.intValue();
140 System.out.println(" Approximately " + percentage + "% difference between the APIs");
    [all...]
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java     [all...]
  /external/chromium/third_party/icu/source/test/perf/collationperf/
CollPerf.pl 175 is repeated 1000 times. The percentage values in the final column are the most
  /external/icu4c/test/perf/collationperf/
CollPerf.pl 175 is repeated 1000 times. The percentage values in the final column are the most
  /external/v8/tools/
tickprocessor.py 409 # Print the unknown ticks percentage if they are not ignored.
436 percentage = ticks_count * 100.0 / self.total_number_of_ticks
439 'total' : percentage,
443 # If ignoring unaccounted ticks don't include these in percentage
tickprocessor.js 408 // Print the unknown ticks percentage if they are not ignored.
486 print(' Note: percentage shows a share of a particular caller in the ' +

Completed in 1303 milliseconds

1 2