OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clampValue
(Results
1 - 13
of
13
) 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
152
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
219
newValue = stepRange.
clampValue
(newValue);
299
return serializeForNumberType(stepRange.
clampValue
(proposedNumericValue));
InputType.cpp
390
Decimal candidate1 = stepRange.
clampValue
(numericValue);
/external/chromium_org/third_party/WebKit/Source/wtf/
ArrayBuffer.h
75
static inline int
clampValue
(int x, int left, int right);
82
int ArrayBuffer::
clampValue
(int x, int left, int right)
172
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/core/rendering/
RenderSliderContainer.cpp
55
return stepRange.proportionFromValue(stepRange.
clampValue
(oldValue));
/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 2085 milliseconds