/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | HTMLParserIdioms.cpp | 92 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()
|
D | HTMLParserIdioms.h | 55 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/ |
D | ColorInputType.cpp | 105 String ColorInputType::fallbackValue() const in fallbackValue() function in WebCore::ColorInputType 113 return fallbackValue(); in sanitizeValue()
|
D | BaseCheckableInputType.h | 51 virtual String fallbackValue() const OVERRIDE;
|
D | RangeInputType.cpp | 72 …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
|
D | BaseCheckableInputType.cpp | 94 String BaseCheckableInputType::fallbackValue() const in fallbackValue() function in WebCore::BaseCheckableInputType
|
D | ColorInputType.h | 58 virtual String fallbackValue() const OVERRIDE;
|
D | RangeInputType.h | 67 virtual String fallbackValue() const OVERRIDE;
|
D | InputType.h | 116 …virtual String fallbackValue() const; // Checked last, if both internal storage and value attribut…
|
D | InputType.cpp | 546 String InputType::fallbackValue() const in fallbackValue() function in WebCore::InputType
|
/external/chromium_org/third_party/icu/source/common/ |
D | locmap.c | 939 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/ |
D | locmap.c | 1040 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/ |
D | math_util.h | 146 float fallbackValue);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | Element.h | 112 …double getFloatingPointAttribute(const QualifiedName& attributeName, double fallbackValue = std::n…
|
D | Element.cpp | 2863 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/ |
D | HTMLInputElement.cpp | 949 return m_inputType->fallbackValue(); in value()
|