HomeSort by relevance Sort by last modified time
    Searched refs:percentage (Results 1 - 25 of 27) 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}%)";
run-webkit-tests 242 --tolerance t Ignore image differences less than this percentage (default: $tolerance)
    [all...]
  /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;
String.cpp 313 bool String::percentage(int& result) const function in class:WebCore::String
  /external/opencore/android/
playerdriver.cpp 106 // @param[out] percentage On return contains the amout of buffering.
111 int *percentage)
119 LOGE("Invalid percentage buffer size %d (expected %d)", size, sizeof(int));
125 oscl_memcpy(percentage, buffer, sizeof(int));
128 if (*percentage < 0 || *percentage > 100)
130 LOGE("Invalid percentage value %d", *percentage);
1343 int percentage; local
    [all...]
  /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));
  /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...]
  /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 ' +
  /frameworks/base/media/libstagefright/
AwesomePlayer.cpp 451 double percentage = (double)cachedDurationUs / durationUs; local
452 notifyListener_l(MEDIA_BUFFERING_UPDATE, percentage * 100.0);
    [all...]
  /external/v8/benchmarks/
base.js 136 // showing progress as a percentage.
  /external/zlib/contrib/delphi/
ZLib.pas 72 CompressionRate returns the on-the-fly percentage by which the original
  /external/blktrace/btt/doc/
btt.tex 191 shows the percentage of time spent in each of the phases of an
260 percentage, the better the underlying subsystems can handle them.)
    [all...]

Completed in 789 milliseconds

1 2