Home
last modified time | relevance | path

Searched refs:getFloatingPointAttribute (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLMeterElement.cpp75 double value = getFloatingPointAttribute(valueAttr, 0); in value()
86 return getFloatingPointAttribute(minAttr, 0); in min()
96 return std::max(getFloatingPointAttribute(maxAttr, std::max(1.0, min())), min()); in max()
106 double low = getFloatingPointAttribute(lowAttr, min()); in low()
117 double high = getFloatingPointAttribute(highAttr, max()); in high()
128 double optimum = getFloatingPointAttribute(optimumAttr, (max() + min()) / 2); in optimum()
DHTMLProgressElement.cpp97 double value = getFloatingPointAttribute(valueAttr); in value()
113 double max = getFloatingPointAttribute(maxAttr); in max()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DElement.h128 …double getFloatingPointAttribute(const QualifiedName& attributeName, double fallbackValue = std::n…
DElement.cpp2652 double Element::getFloatingPointAttribute(const QualifiedName& attributeName, double fallbackValue)… in getFloatingPointAttribute() function in WebCore::Element