HomeSort by relevance Sort by last modified time
    Searched refs:clampValue (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeNumericFieldElement.h 56 int clampValue(int) const;
67 int clampValue(int value) const { return m_range.clampValue(value); }
DateTimeNumericFieldElement.cpp 40 int DateTimeNumericFieldElement::Range::clampValue(int value) const
177 m_value = m_hardLimits.clampValue(value);
DateTimeFieldElements.cpp 192 value = Range(0, 23).clampValue(value) % 12;
235 value = Range(0, 24).clampValue(value) % 12;
271 value = Range(0, 23).clampValue(value);
318 value = Range(0, 24).clampValue(value);
SliderThumbElement.cpp 57 return stepRange.proportionFromValue(stepRange.clampValue(oldValue));
295 Decimal value = stepRange.clampValue(stepRange.valueFromProportion(fraction));
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
StepRange.h 75 Decimal clampValue(const Decimal& value) const;
87 return clampValue((m_minimum + m_maximum) / 2);
StepRange.cpp 83 Decimal StepRange::clampValue(const Decimal& value) const
RangeInputType.cpp 223 newValue = stepRange.clampValue(newValue);
303 return serializeForNumberType(stepRange.clampValue(proposedNumericValue));
InputType.cpp 395 Decimal candidate1 = stepRange.clampValue(numericValue);
  /external/chromium_org/third_party/WebKit/Source/wtf/
ArrayBuffer.h 76 static inline int clampValue(int x, int left, int right);
83 int ArrayBuffer::clampValue(int x, int left, int right)
173 return clampValue(index, 0, currentLength);
  /external/deqp/framework/common/
tcuFloatFormat.hpp 74 Interval clampValue (double d) const;
tcuFloatFormat.cpp 155 Interval FloatFormat::clampValue (double d) const
192 ret |= clampValue(round(tmp.lo(), true)) | clampValue(round(tmp.hi(), false));
  /external/chromium_org/third_party/WebKit/Source/platform/
DecimalTest.cpp 69 Decimal clampValue(Decimal value) const
99 value = stepRange.clampValue(value);
110 value = stepRange.clampValue(value);
    [all...]

Completed in 129 milliseconds