HomeSort by relevance Sort by last modified time
    Searched refs:animtedType (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedBoolean.cpp 35 OwnPtr<SVGAnimatedType> animtedType = SVGAnimatedType::createBoolean(new bool);
36 animtedType->boolean() = (string == "true"); // wat?
37 return animtedType.release();
SVGAnimatedInteger.cpp 36 OwnPtr<SVGAnimatedType> animtedType = SVGAnimatedType::createInteger(new int);
37 animtedType->integer() = string.toIntStrict();
38 return animtedType.release();
SVGAnimatedIntegerOptionalInteger.cpp 37 OwnPtr<SVGAnimatedType> animtedType = SVGAnimatedType::createIntegerOptionalInteger(new pair<int, int>);
38 pair<int, int>& animatedInteger = animtedType->integerOptionalInteger();
48 return animtedType.release();
SVGAnimatedNumber.cpp 38 OwnPtr<SVGAnimatedType> animtedType = SVGAnimatedType::createNumber(new float);
39 float& animatedNumber = animtedType->number();
42 return animtedType.release();
SVGAnimatedNumberList.cpp 36 OwnPtr<SVGAnimatedType> animtedType = SVGAnimatedType::createNumberList(new SVGNumberList);
37 animtedType->numberList().parse(string);
38 return animtedType.release();
SVGAnimatedNumberOptionalNumber.cpp 39 OwnPtr<SVGAnimatedType> animtedType = SVGAnimatedType::createNumberOptionalNumber(new pair<float, float>);
40 pair<float, float>& animatedNumber = animtedType->numberOptionalNumber();
45 return animtedType.release();
SVGAnimatedPointList.cpp 37 OwnPtr<SVGAnimatedType> animtedType = SVGAnimatedType::createPointList(new SVGPointList);
38 pointsListFromSVGData(animtedType->pointList(), string);
39 return animtedType.release();
SVGAnimatedColor.cpp 38 OwnPtr<SVGAnimatedType> animtedType = SVGAnimatedType::createColor(new Color);
39 animtedType->color() = string.isEmpty() ? Color() : SVGColor::colorFromRGBColorString(string);
40 return animtedType.release();

Completed in 838 milliseconds