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

1 2 3 4 5 6 7

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ConsoleModel.js 142 msg.repeatCount = msg.repeatCount + msg.repeatDelta;
151 msgCopy.repeatCount = (count - prevRepeatCount) || 1;
152 msgCopy.repeatDelta = msgCopy.repeatCount;
167 * @param {number=} repeatCount
169 WebInspector.ConsoleMessage = function(source, level, url, line, column, repeatCount)
178 repeatCount = repeatCount || 1;
179 this.repeatCount = repeatCount;
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAnimation.java 22 private int repeatCount;
78 public void setRepeatCount(int repeatCount) {
79 this.repeatCount = repeatCount;
84 return repeatCount;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTransformDistance.h 37 static SVGTransform addSVGTransforms(const SVGTransform&, const SVGTransform&, unsigned repeatCount = 1);
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.h 46 virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*);
SVGPathBlender.h 39 bool addAnimatedPath(SVGPathSource*, SVGPathSource*, SVGPathConsumer*, unsigned repeatCount);
SVGTransformDistance.cpp 111 SVGTransform SVGTransformDistance::addSVGTransforms(const SVGTransform& first, const SVGTransform& second, unsigned repeatCount)
123 transform.setRotate(first.angle() + second.angle() * repeatCount, first.rotationCenter().x() + second.rotationCenter().x() * repeatCount, first.rotationCenter().y() + second.rotationCenter().y() * repeatCount);
127 float dx = first.translate().x() + second.translate().x() * repeatCount;
128 float dy = first.translate().y() + second.translate().y() * repeatCount;
134 scale.scale(repeatCount);
140 transform.setSkewX(first.angle() + second.angle() * repeatCount);
143 transform.setSkewY(first.angle() + second.angle() * repeatCount);
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*);
  /external/sonivox/arm-fm-22k/lib_src/
eas_rtttldata.h 59 EAS_U8 repeatCount; /* repeat counter */
eas_imelodydata.h 60 EAS_I16 repeatCount; /* repeat counter */
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_rtttldata.h 59 EAS_U8 repeatCount; /* repeat counter */
eas_imelodydata.h 60 EAS_I16 repeatCount; /* repeat counter */
  /external/sonivox/arm-wt-22k/lib_src/
eas_rtttldata.h 59 EAS_U8 repeatCount; /* repeat counter */
eas_tcdata.h 56 EAS_I8 repeatCount; /* note repeat counter */
eas_imelodydata.h 61 EAS_I16 repeatCount; /* repeat counter */
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 103 * are repeatCount = 1, and mirror = false.
105 public void setRepeatMirror(float repeatCount, boolean mirror) {
106 if (repeatCount >= 0) {
107 nativeSetRepeatMirror(native_instance, repeatCount, mirror);
160 private static native void nativeSetRepeatMirror(int native_instance, float repeatCount, boolean mirror);
  /cts/tests/tests/media/src/android/media/cts/
JetPlayerTest.java 93 int repeatCount = 0;
96 assertTrue(mJetPlayer.queueJetSegmentMuteArray(segmentNum, libNum, repeatCount, transpose,
105 assertTrue(mJetPlayer.queueJetSegmentMuteArray(segmentNum, libNum, repeatCount, transpose,
118 int repeatCount = 1;
121 mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
124 repeatCount = 1;
126 mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
130 mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
211 public void onJetUserIdUpdate(JetPlayer player, int userId, int repeatCount) {
  /frameworks/base/core/jni/android/graphics/
Interpolator.cpp 49 static void Interpolator_setRepeatMirror(JNIEnv* env, jobject clazz, SkInterpolator* interp, float repeatCount, jboolean mirror)
51 if (repeatCount > 32000)
52 repeatCount = 32000;
54 interp->setRepeatCount(SkFloatToScalar(repeatCount));
  /external/chromium_org/third_party/skia/include/utils/
SkInterpolator.h 50 @param repeatCount Multiplies the total time by this scalar.
52 void setRepeatCount(SkScalar repeatCount) { fRepeat = repeatCount; }
  /external/skia/include/utils/
SkInterpolator.h 50 @param repeatCount Multiplies the total time by this scalar.
52 void setRepeatCount(SkScalar repeatCount) { fRepeat = repeatCount; }

Completed in 571 milliseconds

1 2 3 4 5 6 7