fromString 104 Source/core/html/parser/HTMLParserIdioms.cpp const Decimal value = Decimal::fromString(string); fromString 109 Source/core/svg/SVGAnimateElement.cpp bool SVGAnimateElement::calculateFromAndToValues(const String& fromString, const String& toString) fromString 115 Source/core/svg/SVGAnimateElement.cpp determinePropertyValueTypes(fromString, toString); fromString 116 Source/core/svg/SVGAnimateElement.cpp ensureAnimator()->calculateFromAndToValues(m_fromProperty, m_toProperty, fromString, toString); fromString 121 Source/core/svg/SVGAnimateElement.cpp bool SVGAnimateElement::calculateFromAndByValues(const String& fromString, const String& byString) fromString 136 Source/core/svg/SVGAnimateElement.cpp determinePropertyValueTypes(fromString, byString); fromString 137 Source/core/svg/SVGAnimateElement.cpp ensureAnimator()->calculateFromAndByValues(m_fromProperty, m_toProperty, fromString, byString); fromString 361 Source/core/svg/SVGAnimateElement.cpp float SVGAnimateElement::calculateDistance(const String& fromString, const String& toString) fromString 368 Source/core/svg/SVGAnimateElement.cpp return ensureAnimator()->calculateDistance(fromString, toString); fromString 47 Source/core/svg/SVGAnimateElement.h virtual bool calculateFromAndToValues(const String& fromString, const String& toString) OVERRIDE FINAL; fromString 48 Source/core/svg/SVGAnimateElement.h virtual bool calculateFromAndByValues(const String& fromString, const String& byString) OVERRIDE FINAL; fromString 51 Source/core/svg/SVGAnimateElement.h virtual float calculateDistance(const String& fromString, const String& toString) OVERRIDE FINAL; fromString 222 Source/core/svg/SVGAnimateMotionElement.cpp bool SVGAnimateMotionElement::calculateFromAndToValues(const String& fromString, const String& toString) fromString 225 Source/core/svg/SVGAnimateMotionElement.cpp parsePoint(fromString, m_fromPoint); fromString 230 Source/core/svg/SVGAnimateMotionElement.cpp bool SVGAnimateMotionElement::calculateFromAndByValues(const String& fromString, const String& byString) fromString 235 Source/core/svg/SVGAnimateMotionElement.cpp parsePoint(fromString, m_fromPoint); fromString 328 Source/core/svg/SVGAnimateMotionElement.cpp float SVGAnimateMotionElement::calculateDistance(const String& fromString, const String& toString) fromString 332 Source/core/svg/SVGAnimateMotionElement.cpp if (!parsePoint(fromString, from)) fromString 50 Source/core/svg/SVGAnimateMotionElement.h virtual bool calculateFromAndToValues(const String& fromString, const String& toString) OVERRIDE; fromString 51 Source/core/svg/SVGAnimateMotionElement.h virtual bool calculateFromAndByValues(const String& fromString, const String& byString) OVERRIDE; fromString 54 Source/core/svg/SVGAnimateMotionElement.h virtual float calculateDistance(const String& fromString, const String& toString) OVERRIDE; fromString 143 Source/core/svg/SVGAnimatedTypeAnimator.cpp void SVGAnimatedTypeAnimator::calculateFromAndToValues(RefPtr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& toString) fromString 145 Source/core/svg/SVGAnimatedTypeAnimator.cpp from = constructFromString(fromString); fromString 149 Source/core/svg/SVGAnimatedTypeAnimator.cpp void SVGAnimatedTypeAnimator::calculateFromAndByValues(RefPtr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& byString) fromString 151 Source/core/svg/SVGAnimatedTypeAnimator.cpp from = constructFromString(fromString); fromString 255 Source/core/svg/SVGAnimatedTypeAnimator.cpp float SVGAnimatedTypeAnimator::calculateDistance(const String& fromString, const String& toString) fromString 259 Source/core/svg/SVGAnimatedTypeAnimator.cpp RefPtr<SVGPropertyBase> fromValue = createPropertyForAnimation(fromString); fromString 53 Source/core/svg/SVGAnimatedTypeAnimator.h float calculateDistance(const String& fromString, const String& toString); fromString 55 Source/core/svg/SVGAnimatedTypeAnimator.h void calculateFromAndToValues(RefPtr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& toString); fromString 56 Source/core/svg/SVGAnimatedTypeAnimator.h void calculateFromAndByValues(RefPtr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& byString); fromString 182 Source/core/svg/SVGAnimationElement.h virtual bool calculateFromAndToValues(const String& fromString, const String& toString) = 0; fromString 183 Source/core/svg/SVGAnimationElement.h virtual bool calculateFromAndByValues(const String& fromString, const String& byString) = 0; fromString 36 Source/core/svg/SVGString.cpp String fromString = toSVGString(from)->m_value; fromString 39 Source/core/svg/SVGString.cpp animationElement->animateDiscreteType<String>(percentage, fromString, toString, m_value); fromString 685 Source/platform/Decimal.cpp return fromString(String::numberToStringECMAScript(doubleValue)); fromString 153 Source/platform/Decimal.h static Decimal fromString(const String&); fromString 90 Source/platform/DecimalTest.cpp return Decimal::fromString(string); fromString 95 Source/platform/DecimalTest.cpp DecimalStepRange stepRange(fromString(minimum), fromString(maximum), fromString(step)); fromString 96 Source/platform/DecimalTest.cpp Decimal value = fromString(valueString); fromString 106 Source/platform/DecimalTest.cpp DecimalStepRange stepRange(fromString(minimum), fromString(maximum), fromString(step)); fromString 107 Source/platform/DecimalTest.cpp Decimal value = fromString(valueString); fromString 647 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 0, Positive), fromString("0")); fromString 648 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 0, Negative), fromString("-0")); fromString 649 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(1), fromString("1")); fromString 650 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 0, Negative), fromString("-1")); fromString 651 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(1), fromString("01")); fromString 652 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(3, 0, Positive), fromString("+3")); fromString 653 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 3, Positive), fromString("0E3")); fromString 654 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(5, -1, Positive), fromString(".5")); fromString 655 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(100, 0, Positive), fromString("100")); fromString 656 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(100, 0, Negative), fromString("-100")); fromString 657 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, -2, Positive), fromString("1.23")); fromString 658 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, -2, Negative), fromString("-1.23")); fromString 659 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, 8, Positive), fromString("1.23E10")); fromString 660 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, 8, Negative), fromString("-1.23E10")); fromString 661 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, 8, Positive), fromString("1.23E+10")); fromString 662 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, 8, Negative), fromString("-1.23E+10")); fromString 663 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, -12, Positive), fromString("1.23E-10")); fromString 664 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, -12, Negative), fromString("-1.23E-10")); fromString 665 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(5, -7, Positive), fromString("0.0000005")); fromString 666 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, 0, Positive), fromString("0e9999")); fromString 667 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(123, -3, Positive), fromString("0.123")); fromString 668 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(0, -2, Positive), fromString("00.00")); fromString 669 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1, 2, Positive), fromString("1E2")); fromString 670 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Positive), fromString("1E20000")); fromString 671 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::zero(Positive), fromString("1E-20000")); fromString 672 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(1000, 1023, Positive), fromString("1E1026")); fromString 673 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::zero(Positive), fromString("1E-1026")); fromString 674 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::infinity(Positive), fromString("1234567890E1036")); fromString 678 Source/platform/DecimalTest.cpp EXPECT_EQ(encode(leadingDigitsOf2PowerOf1024, 292, Positive), fromString("179769313486231590772930519078902473361797697894230657273430081157732675805500963132708477322407536021120113879871393357658789768814416622492847430639474124377767893424865485276302219601246094119453082952085005768838150682342462881473913110540827237163350510684586298239947245938479716304835356329624224137216")); fromString 684 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString(" 123 ")); fromString 685 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("1,234")); fromString 691 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("INF")); fromString 692 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("Infinity")); fromString 693 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("infinity")); fromString 694 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("+Infinity")); fromString 695 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("+infinity")); fromString 696 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("-Infinity")); fromString 697 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("-infinity")); fromString 698 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("NaN")); fromString 699 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("nan")); fromString 700 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("+NaN")); fromString 701 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("+nan")); fromString 702 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("-NaN")); fromString 703 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("-nan")); fromString 708 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("x")); fromString 709 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("0.")); fromString 710 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("1x")); fromString 712 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("1Ex")); fromString 713 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("1E2x")); fromString 714 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal::nan(), fromString("1E+x")); fromString 967 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(25), (Decimal(5) / fromString("0.200")).round()); fromString 971 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(3), (Decimal(1) / fromString("0.3")).round()); fromString 972 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(10), (Decimal(1) / fromString("0.1")).round()); fromString 973 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(5), (Decimal(1) / fromString("0.2")).round()); fromString 974 Source/platform/DecimalTest.cpp EXPECT_EQ(Decimal(10), (fromString("10.2") / 1).round()); fromString 94 Source/web/ServiceWorkerGlobalScopeProxy.cpp WebSerializedScriptValue value = WebSerializedScriptValue::fromString(message); fromString 634 Source/web/tests/WebFrameTest.cpp WebSerializedScriptValue data(WebSerializedScriptValue::fromString("foo")); fromString 60 public/web/WebSerializedScriptValue.h BLINK_EXPORT static WebSerializedScriptValue fromString(const WebString&);