Home
last modified time | relevance | path

Searched refs:fallbackValue (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLParserIdioms.cpp92 Decimal parseToDecimalForNumberType(const String& string, const Decimal& fallbackValue) in parseToDecimalForNumberType() argument
99 return fallbackValue; in parseToDecimalForNumberType()
103 return fallbackValue; in parseToDecimalForNumberType()
110 return fallbackValue; in parseToDecimalForNumberType()
116 double parseToDoubleForNumberType(const String& string, double fallbackValue) in parseToDoubleForNumberType() argument
123 return fallbackValue; in parseToDoubleForNumberType()
128 return fallbackValue; in parseToDoubleForNumberType()
132 return fallbackValue; in parseToDoubleForNumberType()
137 return fallbackValue; in parseToDoubleForNumberType()
DHTMLParserIdioms.h55 Decimal parseToDecimalForNumberType(const String&, const Decimal& fallbackValue = Decimal::nan());
56 double parseToDoubleForNumberType(const String&, double fallbackValue = std::numeric_limits<double>…
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DColorInputType.cpp105 String ColorInputType::fallbackValue() const in fallbackValue() function in WebCore::ColorInputType
113 return fallbackValue(); in sanitizeValue()
DBaseCheckableInputType.h51 virtual String fallbackValue() const OVERRIDE;
DRangeInputType.cpp72 …l ensureMaximum(const Decimal& proposedValue, const Decimal& minimum, const Decimal& fallbackValue) in ensureMaximum() argument
74 return proposedValue >= minimum ? proposedValue : std::max(minimum, fallbackValue); in ensureMaximum()
300 String RangeInputType::fallbackValue() const in fallbackValue() function in WebCore::RangeInputType
DBaseCheckableInputType.cpp94 String BaseCheckableInputType::fallbackValue() const in fallbackValue() function in WebCore::BaseCheckableInputType
DColorInputType.h58 virtual String fallbackValue() const OVERRIDE;
DRangeInputType.h67 virtual String fallbackValue() const OVERRIDE;
DInputType.h116 …virtual String fallbackValue() const; // Checked last, if both internal storage and value attribut…
DInputType.cpp546 String InputType::fallbackValue() const in fallbackValue() function in WebCore::InputType
/external/chromium_org/third_party/icu/source/common/
Dlocmap.c939 uint32_t fallbackValue = (uint32_t)-1; in uprv_convertToLCID() local
981 fallbackValue = value; in uprv_convertToLCID()
985 if (fallbackValue != (uint32_t)-1) { in uprv_convertToLCID()
987 return fallbackValue; in uprv_convertToLCID()
/external/icu4c/common/
Dlocmap.c1040 uint32_t fallbackValue = (uint32_t)-1; in uprv_convertToLCID() local
1082 fallbackValue = value; in uprv_convertToLCID()
1086 if (fallbackValue != (uint32_t)-1) { in uprv_convertToLCID()
1088 return fallbackValue; in uprv_convertToLCID()
/external/chromium_org/cc/base/
Dmath_util.h146 float fallbackValue);
/external/chromium_org/third_party/WebKit/Source/core/dom/
DElement.h112 …double getFloatingPointAttribute(const QualifiedName& attributeName, double fallbackValue = std::n…
DElement.cpp2863 double Element::getFloatingPointAttribute(const QualifiedName& attributeName, double fallbackValue)… in getFloatingPointAttribute()
2865 return parseToDoubleForNumberType(getAttribute(attributeName), fallbackValue); in getFloatingPointAttribute()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLInputElement.cpp949 return m_inputType->fallbackValue(); in value()