/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | HTMLParserIdioms.cpp | 96 Decimal parseToDecimalForNumberType(const String& string, const Decimal& fallbackValue) in parseToDecimalForNumberType() argument 102 return fallbackValue; in parseToDecimalForNumberType() 106 return fallbackValue; in parseToDecimalForNumberType() 111 return fallbackValue; in parseToDecimalForNumberType() 117 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() 136 return fallbackValue; in parseToDoubleForNumberType()
|
D | HTMLParserIdioms.h | 54 Decimal parseToDecimalForNumberType(const String&, const Decimal& fallbackValue = Decimal::nan()); 55 double parseToDoubleForNumberType(const String&, double fallbackValue = std::numeric_limits<double>…
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | ColorInputType.cpp | 103 String ColorInputType::fallbackValue() const in fallbackValue() function in blink::ColorInputType 111 return fallbackValue(); in sanitizeValue()
|
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() 290 String RangeInputType::fallbackValue() const in fallbackValue() function in blink::RangeInputType
|
D | BaseCheckableInputType.h | 51 virtual String fallbackValue() const OVERRIDE FINAL;
|
D | BaseCheckableInputType.cpp | 94 String BaseCheckableInputType::fallbackValue() const in fallbackValue() function in blink::BaseCheckableInputType
|
D | ColorInputType.h | 61 virtual String fallbackValue() const OVERRIDE;
|
D | RangeInputType.h | 66 virtual String fallbackValue() const OVERRIDE;
|
D | InputType.h | 94 …virtual String fallbackValue() const; // Checked last, if both internal storage and value attribut…
|
D | InputType.cpp | 515 String InputType::fallbackValue() const in fallbackValue() function in blink::InputType
|
/external/icu/icu4c/source/common/ |
D | locmap.c | 1083 uint32_t fallbackValue = (uint32_t)-1; in uprv_convertToLCID() local 1125 fallbackValue = value; in uprv_convertToLCID() 1129 if (fallbackValue != (uint32_t)-1) { in uprv_convertToLCID() 1131 return fallbackValue; in uprv_convertToLCID()
|
/external/chromium_org/third_party/icu/source/common/ |
D | locmap.c | 1088 uint32_t fallbackValue = (uint32_t)-1; in uprv_convertToLCID() local 1130 fallbackValue = value; in uprv_convertToLCID() 1134 if (fallbackValue != (uint32_t)-1) { in uprv_convertToLCID() 1136 return fallbackValue; in uprv_convertToLCID()
|
/external/chromium_org/cc/base/ |
D | math_util.h | 174 float fallbackValue);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | Element.h | 115 …double getFloatingPointAttribute(const QualifiedName& attributeName, double fallbackValue = std::n…
|
D | Element.cpp | 2625 double Element::getFloatingPointAttribute(const QualifiedName& attributeName, double fallbackValue)… in getFloatingPointAttribute() 2627 return parseToDoubleForNumberType(getAttribute(attributeName), fallbackValue); in getFloatingPointAttribute()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLInputElement.cpp | 933 return m_inputType->fallbackValue(); in value()
|