fallbackValue    2693 Source/core/dom/Element.cpp double Element::getFloatingPointAttribute(const QualifiedName& attributeName, double fallbackValue) const
fallbackValue    2695 Source/core/dom/Element.cpp     return parseToDoubleForNumberType(getAttribute(attributeName), fallbackValue);
fallbackValue     126 Source/core/dom/Element.h     double getFloatingPointAttribute(const QualifiedName& attributeName, double fallbackValue = std::numeric_limits<double>::quiet_NaN()) const;
fallbackValue     947 Source/core/html/HTMLInputElement.cpp     return m_inputType->fallbackValue();
fallbackValue      51 Source/core/html/forms/BaseCheckableInputType.h     virtual String fallbackValue() const OVERRIDE FINAL;
fallbackValue     113 Source/core/html/forms/ColorInputType.cpp         return fallbackValue();
fallbackValue      58 Source/core/html/forms/ColorInputType.h     virtual String fallbackValue() const OVERRIDE;
fallbackValue     114 Source/core/html/forms/InputType.h     virtual String fallbackValue() const; // Checked last, if both internal storage and value attribute are missing.
fallbackValue      72 Source/core/html/forms/RangeInputType.cpp static Decimal ensureMaximum(const Decimal& proposedValue, const Decimal& minimum, const Decimal& fallbackValue)
fallbackValue      74 Source/core/html/forms/RangeInputType.cpp     return proposedValue >= minimum ? proposedValue : std::max(minimum, fallbackValue);
fallbackValue      67 Source/core/html/forms/RangeInputType.h     virtual String fallbackValue() const OVERRIDE;
fallbackValue      96 Source/core/html/parser/HTMLParserIdioms.cpp Decimal parseToDecimalForNumberType(const String& string, const Decimal& fallbackValue)
fallbackValue     102 Source/core/html/parser/HTMLParserIdioms.cpp         return fallbackValue;
fallbackValue     106 Source/core/html/parser/HTMLParserIdioms.cpp         return fallbackValue;
fallbackValue     111 Source/core/html/parser/HTMLParserIdioms.cpp         return fallbackValue;
fallbackValue     117 Source/core/html/parser/HTMLParserIdioms.cpp double parseToDoubleForNumberType(const String& string, double fallbackValue)
fallbackValue     123 Source/core/html/parser/HTMLParserIdioms.cpp         return fallbackValue;
fallbackValue     128 Source/core/html/parser/HTMLParserIdioms.cpp         return fallbackValue;
fallbackValue     132 Source/core/html/parser/HTMLParserIdioms.cpp         return fallbackValue;
fallbackValue     136 Source/core/html/parser/HTMLParserIdioms.cpp         return fallbackValue;
fallbackValue      59 Source/core/html/parser/HTMLParserIdioms.h Decimal parseToDecimalForNumberType(const String&, const Decimal& fallbackValue = Decimal::nan());
fallbackValue      60 Source/core/html/parser/HTMLParserIdioms.h double parseToDoubleForNumberType(const String&, double fallbackValue = std::numeric_limits<double>::quiet_NaN());